-- MySQL dump 10.16  Distrib 10.2.12-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: journe69_wp839
-- ------------------------------------------------------
-- Server version	10.2.12-MariaDB-log

/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2854 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://kautzchiro.journeysoup.com','yes'),(2,'home','http://kautzchiro.journeysoup.com','yes'),(3,'blogname','Kautz Chiropractic','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@kautzchiro.journeysoup.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:8:{i:0;s:35:\"call-now-button/call-now-button.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";i:3;s:29:\"pdf-embedder/pdf_embedder.php\";i:4;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:5;s:39:\"so-widgets-bundle/so-widgets-bundle.php\";i:6;s:33:\"sydney-toolbox/sydney-toolbox.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:84:\"/home/journe69/kautzchiro.com/wp-content/plugins/call-now-button/call-now-button.php\";i:1;s:0:\"\";}','no'),(40,'template','sydney','yes'),(41,'stylesheet','sydney','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','43764','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','12','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','43764','yes'),(94,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:12:\"categories-2\";i:3;s:6:\"meta-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:1:{i:0;s:27:\"weblizar_facebook_likebox-2\";}s:8:\"footer-3\";a:1:{i:0;s:10:\"nav_menu-2\";}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:2:{i:2;a:1:{s:8:\"nav_menu\";i:2;}s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:7:{i:1555133802;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:1555141002;a:3:{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;}}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;}}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:1555141194;a:2:{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:1555148206;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:1555149094;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:1555165166;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(120,'smm_version','1.3.1','yes'),(121,'disable_smm','0','yes'),(306,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(2049,'rewrite_rules','a:206:{s:11:\"services/?$\";s:28:\"index.php?post_type=services\";s:41:\"services/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:36:\"services/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=services&feed=$matches[1]\";s:28:\"services/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=services&paged=$matches[1]\";s:12:\"employees/?$\";s:29:\"index.php?post_type=employees\";s:42:\"employees/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=employees&feed=$matches[1]\";s:37:\"employees/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=employees&feed=$matches[1]\";s:29:\"employees/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=employees&paged=$matches[1]\";s:15:\"testimonials/?$\";s:32:\"index.php?post_type=testimonials\";s:45:\"testimonials/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:40:\"testimonials/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=testimonials&feed=$matches[1]\";s:32:\"testimonials/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=testimonials&paged=$matches[1]\";s:10:\"clients/?$\";s:27:\"index.php?post_type=clients\";s:40:\"clients/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=clients&feed=$matches[1]\";s:35:\"clients/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=clients&feed=$matches[1]\";s:27:\"clients/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=clients&paged=$matches[1]\";s:11:\"projects/?$\";s:28:\"index.php?post_type=projects\";s:41:\"projects/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:36:\"projects/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=projects&feed=$matches[1]\";s:28:\"projects/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=projects&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";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: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:36:\"services/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"services/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"services/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"services/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"services/([^/]+)/embed/?$\";s:41:\"index.php?services=$matches[1]&embed=true\";s:29:\"services/([^/]+)/trackback/?$\";s:35:\"index.php?services=$matches[1]&tb=1\";s:49:\"services/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:44:\"services/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?services=$matches[1]&feed=$matches[2]\";s:37:\"services/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&paged=$matches[2]\";s:44:\"services/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?services=$matches[1]&cpage=$matches[2]\";s:33:\"services/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?services=$matches[1]&page=$matches[2]\";s:25:\"services/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"services/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"services/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"services/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"employees/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"employees/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"employees/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"employees/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"employees/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"employees/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"employees/([^/]+)/embed/?$\";s:42:\"index.php?employees=$matches[1]&embed=true\";s:30:\"employees/([^/]+)/trackback/?$\";s:36:\"index.php?employees=$matches[1]&tb=1\";s:50:\"employees/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?employees=$matches[1]&feed=$matches[2]\";s:45:\"employees/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?employees=$matches[1]&feed=$matches[2]\";s:38:\"employees/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?employees=$matches[1]&paged=$matches[2]\";s:45:\"employees/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?employees=$matches[1]&cpage=$matches[2]\";s:34:\"employees/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?employees=$matches[1]&page=$matches[2]\";s:26:\"employees/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"employees/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"employees/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"employees/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"employees/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"employees/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:53:\"testimonials/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:48:\"testimonials/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?testimonials=$matches[1]&feed=$matches[2]\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"clients/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"clients/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"clients/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"clients/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"clients/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"clients/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"clients/([^/]+)/embed/?$\";s:40:\"index.php?clients=$matches[1]&embed=true\";s:28:\"clients/([^/]+)/trackback/?$\";s:34:\"index.php?clients=$matches[1]&tb=1\";s:48:\"clients/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?clients=$matches[1]&feed=$matches[2]\";s:43:\"clients/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?clients=$matches[1]&feed=$matches[2]\";s:36:\"clients/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&paged=$matches[2]\";s:43:\"clients/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&cpage=$matches[2]\";s:32:\"clients/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?clients=$matches[1]&page=$matches[2]\";s:24:\"clients/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"clients/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"clients/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"clients/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"clients/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"clients/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"projects/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"projects/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"projects/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"projects/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"projects/([^/]+)/embed/?$\";s:41:\"index.php?projects=$matches[1]&embed=true\";s:29:\"projects/([^/]+)/trackback/?$\";s:35:\"index.php?projects=$matches[1]&tb=1\";s:49:\"projects/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:44:\"projects/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?projects=$matches[1]&feed=$matches[2]\";s:37:\"projects/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&paged=$matches[2]\";s:44:\"projects/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?projects=$matches[1]&cpage=$matches[2]\";s:33:\"projects/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?projects=$matches[1]&page=$matches[2]\";s:25:\"projects/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"projects/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"projects/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"projects/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";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=12&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\";}','yes'),(275,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(271,'elementor_version','2.4.4','yes'),(276,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(278,'widget_sydney_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(279,'_elementor_installed_time','1547631816','yes'),(280,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}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:10:\"categories\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:554:{i:0;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:10;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:13;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"449\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:20;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:22;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:27;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:29;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:32;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:34;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"497\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:37;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:39;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:48;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:51;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"484\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:56;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:59;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"502\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:64;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"469\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:66;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"467\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:69;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"466\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:71;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:74;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:76;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:78;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:80;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"468\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:82;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:84;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:86;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:88;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:92;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:94;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:97;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"528\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:103;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"456\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:105;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:124;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:128;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"450\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:130;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:134;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:136;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:138;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"476\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"480\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:278;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:279;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:280;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:281;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:282;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"494\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:293;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"470\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:295;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"485\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:297;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:301;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:305;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:307;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1547726151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:310;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:314;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"451\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:317;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"543\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:319;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"507\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:322;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:327;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:329;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:340;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"478\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:342;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:344;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:348;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"554\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:351;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"461\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:353;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:355;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:358;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:360;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:362;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:364;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"513\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:366;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:368;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:369;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"524\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:372;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:3:\"540\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:374;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"514\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:377;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"463\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:390;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:393;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:394;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:396;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"482\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:399;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:402;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:403;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"498\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:404;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"493\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:405;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"471\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:406;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:407;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"509\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:409;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:416;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:428;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:430;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"552\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:435;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:436;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:437;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:440;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"488\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:442;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:443;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:445;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:446;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:449;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:451;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:452;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:455;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"546\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:456;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:457;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:459;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:460;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:462;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:463;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:464;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"517\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:465;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:466;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"490\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:467;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"547\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:470;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:472;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"544\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:473;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:474;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:475;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:476;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:477;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:479;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:480;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:481;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:482;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"505\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:484;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:485;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:486;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"518\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:487;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:488;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:489;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:491;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:492;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:493;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:494;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:495;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:496;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:497;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:498;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:499;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:500;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"521\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:502;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:504;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:506;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"520\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:508;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:510;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:511;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:514;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:515;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:517;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:519;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:520;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:522;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:523;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:525;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:526;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:529;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:531;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:533;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:534;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:536;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:544;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:545;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:546;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:547;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:548;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:549;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:552;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(119,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1547631195;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(122,'wpforms_shareasale_id','1587694','yes'),(126,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(128,'do_activate','0','yes'),(138,'_amn_wpforms-lite_last_checked','1547596800','yes'),(141,'wpforms_review','a:2:{s:4:\"time\";i:1547624395;s:9:\"dismissed\";b:0;}','yes'),(1132,'widget_sow-button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1133,'widget_sow-google-map','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1134,'widget_sow-image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1135,'widget_sow-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1136,'widget_sow-post-carousel','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1137,'widget_sow-editor','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1138,'siteorigin_widget_bundle_version','1.14.1','yes'),(1139,'siteorigin_widgets_old_widgets','/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/accordion/accordion.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/button/button.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/cta/cta.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/contact/contact.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/editor/editor.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/features/features.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/google-map/google-map.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/headline/headline.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/hero/hero.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/icon/icon.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/image/image.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/image-grid/image-grid.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/slider/slider.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/layout-slider/layout-slider.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/post-carousel.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/price-table/price-table.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/simple-masonry/simple-masonry.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/social-media-buttons/social-media-buttons.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/tabs/tabs.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/taxonomy/taxonomy.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/testimonial/testimonial.php,/home/journe69/kautzchiro.com/wp-content/plugins/so-widgets-bundle/widgets/video/video.php','yes'),(1975,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1555097822;s:15:\"version_checked\";s:5:\"5.0.4\";s:12:\"translations\";a:0:{}}','no'),(628,'siteorigin_panels_settings','a:0:{}','yes'),(629,'siteorigin_panels_initial_version','2.10.0','no'),(630,'siteorigin_panels_active_version','2.10.0','yes'),(631,'widget_siteorigin-panels-post-content','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(632,'widget_siteorigin-panels-postloop','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(633,'widget_siteorigin-panels-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(634,'widget_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(635,'widget_fp_social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2479,'_transient_is_multi_author','0','yes'),(2637,'_transient_sydney_categories','1','yes'),(947,'pdfemb_poweredby','1','no'),(1978,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:32:\"admin@kautzchiro.journeysoup.com\";s:7:\"version\";s:5:\"5.0.4\";s:9:\"timestamp\";i:1552463743;}','no'),(2843,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1555097823;s:7:\"checked\";a:4:{s:6:\"sydney\";s:4:\"1.53\";s:14:\"twentynineteen\";s:3:\"1.2\";s:15:\"twentyseventeen\";s:3:\"2.0\";s:13:\"twentysixteen\";s:3:\"1.8\";}s:8:\"response\";a:4:{s:6:\"sydney\";a:4:{s:5:\"theme\";s:6:\"sydney\";s:11:\"new_version\";s:4:\"1.54\";s:3:\"url\";s:36:\"https://wordpress.org/themes/sydney/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sydney.1.54.zip\";}s:14:\"twentynineteen\";a:4:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.3.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.9.zip\";}}s:12:\"translations\";a:0:{}}','no'),(2844,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1555097823;s:7:\"checked\";a:8:{s:35:\"call-now-button/call-now-button.php\";s:5:\"0.3.5\";s:23:\"elementor/elementor.php\";s:5:\"2.4.4\";s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";s:5:\"2.7.9\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:6:\"2.10.0\";s:29:\"pdf-embedder/pdf_embedder.php\";s:3:\"4.0\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:6:\"1.14.1\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:4:\"1.05\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"10.0\";}s:8:\"response\";a:5:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{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:6:\"2.5.13\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.2.5.13.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}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:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/facebook-by-weblizar\";s:4:\"slug\";s:20:\"facebook-by-weblizar\";s:6:\"plugin\";s:45:\"facebook-by-weblizar/facebook-by-weblizar.php\";s:11:\"new_version\";s:5:\"2.8.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/facebook-by-weblizar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/facebook-by-weblizar.2.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/facebook-by-weblizar/assets/icon-256x256.png?rev=1836057\";s:2:\"1x\";s:73:\"https://ps.w.org/facebook-by-weblizar/assets/icon-128x128.png?rev=1836057\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/facebook-by-weblizar/assets/banner-772x250.png?rev=1819618\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/siteorigin-panels\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:6:\"2.10.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.10.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-256x256.png?rev=1044755\";s:2:\"1x\";s:70:\"https://ps.w.org/siteorigin-panels/assets/icon-128x128.png?rev=1044755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/siteorigin-panels/assets/banner-772x250.jpg?rev=1044755\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"so-widgets-bundle/so-widgets-bundle.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/so-widgets-bundle\";s:4:\"slug\";s:17:\"so-widgets-bundle\";s:6:\"plugin\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:11:\"new_version\";s:6:\"1.15.4\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/so-widgets-bundle/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/so-widgets-bundle.1.15.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-256x256.png?rev=1044942\";s:2:\"1x\";s:70:\"https://ps.w.org/so-widgets-bundle/assets/icon-128x128.png?rev=1044942\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/so-widgets-bundle/assets/banner-772x250.jpg?rev=1044942\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:6:\"10.1.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.10.1.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:35:\"call-now-button/call-now-button.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/call-now-button\";s:4:\"slug\";s:15:\"call-now-button\";s:6:\"plugin\";s:35:\"call-now-button/call-now-button.php\";s:11:\"new_version\";s:5:\"0.3.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/call-now-button/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/call-now-button.0.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/call-now-button/assets/icon-256x256.png?rev=1793650\";s:2:\"1x\";s:68:\"https://ps.w.org/call-now-button/assets/icon-128x128.png?rev=1793650\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/call-now-button/assets/banner-1544x500.jpg?rev=1793650\";s:2:\"1x\";s:70:\"https://ps.w.org/call-now-button/assets/banner-772x250.jpg?rev=1793650\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"pdf-embedder/pdf_embedder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/pdf-embedder\";s:4:\"slug\";s:12:\"pdf-embedder\";s:6:\"plugin\";s:29:\"pdf-embedder/pdf_embedder.php\";s:11:\"new_version\";s:3:\"4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/pdf-embedder/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/pdf-embedder.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-256x256.png?rev=1072588\";s:2:\"1x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-128x128.png?rev=1072588\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/pdf-embedder/assets/banner-1544x500.png?rev=1629344\";s:2:\"1x\";s:67:\"https://ps.w.org/pdf-embedder/assets/banner-772x250.png?rev=1629344\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"sydney-toolbox/sydney-toolbox.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/sydney-toolbox\";s:4:\"slug\";s:14:\"sydney-toolbox\";s:6:\"plugin\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:11:\"new_version\";s:4:\"1.05\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sydney-toolbox/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/sydney-toolbox.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/sydney-toolbox.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}}}','no'),(818,'cnb','a:11:{s:6:\"active\";s:1:\"1\";s:6:\"number\";s:12:\"563-289-3242\";s:4:\"text\";s:0:\"\";s:5:\"color\";s:7:\"#6ec1e4\";s:10:\"appearance\";s:4:\"left\";s:8:\"tracking\";s:1:\"0\";s:4:\"show\";s:0:\"\";s:5:\"limit\";s:7:\"include\";s:4:\"zoom\";s:1:\"1\";s:7:\"z-index\";s:2:\"10\";s:7:\"version\";s:5:\"0.3.5\";}','yes'),(819,'elementor_safe_mode_allowed_plugins','a:1:{s:9:\"elementor\";s:23:\"elementor/elementor.php\";}','yes'),(820,'elementor_safe_mode_created_mu_dir','1','yes'),(821,'elementor_safe_mode','yes','yes'),(822,'theme_mods_elementor-safe','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(615,'_elementor_global_css','a:5:{s:4:\"time\";i:1548414440;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(709,'widget_sydney_video_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(710,'widget_sydney_action','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(711,'widget_sydney_clients','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(712,'widget_sydney_employees','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(713,'widget_sydney_facts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(714,'widget_sydney_latest_news','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(715,'widget_sydney_portfolio','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(716,'widget_sydney_services_type_a','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(717,'widget_sydney_services_type_b','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(718,'widget_sydney_skills','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(719,'widget_sydney_testimonials','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2041,'_transient_timeout_wpseo_link_table_inaccessible','1584109166','no'),(2042,'_transient_wpseo_link_table_inaccessible','0','no'),(2043,'_transient_timeout_wpseo_meta_table_inaccessible','1584109166','no'),(2044,'_transient_wpseo_meta_table_inaccessible','0','no'),(2037,'wpseo','a:20:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:4:\"10.0\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:13:\"smallBusiness\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1552573165;s:13:\"myyoast-oauth\";a:2:{s:6:\"config\";a:2:{s:8:\"clientId\";N;s:6:\"secret\";N;}s:13:\"access_tokens\";a:0:{}}}','yes'),(2038,'wpseo_titles','a:123:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:18:\"Kautz Chiropractic\";s:17:\"company_or_person\";s:7:\"company\";s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:26:\"showdate-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:14:\"title-services\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-services\";s:0:\"\";s:16:\"noindex-services\";b:0;s:17:\"showdate-services\";b:0;s:27:\"display-metabox-pt-services\";b:1;s:27:\"post_types-services-maintax\";i:0;s:24:\"title-ptarchive-services\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-ptarchive-services\";s:0:\"\";s:26:\"bctitle-ptarchive-services\";s:0:\"\";s:26:\"noindex-ptarchive-services\";b:0;s:15:\"title-employees\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-employees\";s:0:\"\";s:17:\"noindex-employees\";b:0;s:18:\"showdate-employees\";b:0;s:28:\"display-metabox-pt-employees\";b:1;s:28:\"post_types-employees-maintax\";i:0;s:25:\"title-ptarchive-employees\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-ptarchive-employees\";s:0:\"\";s:27:\"bctitle-ptarchive-employees\";s:0:\"\";s:27:\"noindex-ptarchive-employees\";b:0;s:18:\"title-testimonials\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-testimonials\";s:0:\"\";s:20:\"noindex-testimonials\";b:0;s:21:\"showdate-testimonials\";b:0;s:31:\"display-metabox-pt-testimonials\";b:1;s:31:\"post_types-testimonials-maintax\";i:0;s:28:\"title-ptarchive-testimonials\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-ptarchive-testimonials\";s:0:\"\";s:30:\"bctitle-ptarchive-testimonials\";s:0:\"\";s:30:\"noindex-ptarchive-testimonials\";b:0;s:13:\"title-clients\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-clients\";s:0:\"\";s:15:\"noindex-clients\";b:0;s:16:\"showdate-clients\";b:0;s:26:\"display-metabox-pt-clients\";b:1;s:26:\"post_types-clients-maintax\";i:0;s:23:\"title-ptarchive-clients\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-clients\";s:0:\"\";s:25:\"bctitle-ptarchive-clients\";s:0:\"\";s:25:\"noindex-ptarchive-clients\";b:0;s:14:\"title-projects\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-projects\";s:0:\"\";s:16:\"noindex-projects\";b:0;s:17:\"showdate-projects\";b:0;s:27:\"display-metabox-pt-projects\";b:1;s:27:\"post_types-projects-maintax\";i:0;s:24:\"title-ptarchive-projects\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-ptarchive-projects\";s:0:\"\";s:26:\"bctitle-ptarchive-projects\";s:0:\"\";s:26:\"noindex-ptarchive-projects\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;}','yes'),(2039,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(2040,'wpseo_flush_rewrite','1','yes'),(2841,'_site_transient_timeout_theme_roots','1555099622','no'),(2842,'_site_transient_theme_roots','a:4:{s:6:\"sydney\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(2054,'widget_weblizar_facebook_likebox','a:2:{i:2;a:11:{s:5:\"title\";s:7:\"LikeBox\";s:15:\"FacebookPageURL\";s:43:\"https://www.facebook.com/kautzchiropractic/\";s:6:\"Header\";s:4:\"true\";s:5:\"Width\";s:3:\"292\";s:6:\"Height\";s:3:\"560\";s:6:\"Stream\";s:5:\"false\";s:9:\"ShowFaces\";s:4:\"true\";s:10:\"ShowBorder\";s:4:\"true\";s:9:\"ForceWall\";s:5:\"false\";s:7:\"FbAppId\";s:15:\"529331510739033\";s:16:\"weblizar_lang_fb\";s:5:\"en_US\";}s:12:\"_multiwidget\";i:1;}','yes'),(2055,'widget_weblizar_facebook_feed_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2699,'_transient_timeout_sow:cleared','1555295700','no'),(2700,'_transient_sow:cleared','1','no'),(161,'can_compress_scripts','1','no'),(168,'category_children','a:0:{}','yes'),(176,'current_theme','Sydney','yes'),(177,'theme_mods_sydney','a:23:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:72;s:17:\"front_header_type\";s:6:\"slider\";s:14:\"slider_image_1\";s:68:\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/5-2.jpg\";s:14:\"slider_image_2\";s:66:\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/6.jpg\";s:9:\"site_logo\";s:70:\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/03/KAUTZ.png\";s:12:\"slider_speed\";i:6000;s:14:\"slider_title_1\";s:18:\"Kautz Chiropractic\";s:17:\"slider_subtitle_1\";s:65:\"Specializing in sports injuries, disc injuries, and trauma cases.\";s:14:\"slider_title_2\";s:18:\"Dr. Courtney Kautz\";s:17:\"slider_subtitle_2\";s:39:\"Certified Chiropractic Sports Physician\";s:18:\"slider_button_text\";s:10:\"Contact Us\";s:16:\"menu_items_hover\";s:7:\"#6ec1e4\";s:13:\"primary_color\";s:7:\"#6ec1e4\";s:12:\"header_image\";s:13:\"remove-header\";s:14:\"header_bg_size\";s:7:\"contain\";s:16:\"site_header_type\";s:7:\"nothing\";s:13:\"mobile_slider\";s:10:\"responsive\";s:17:\"slider_button_url\";s:45:\"http://kautzchiro.journeysoup.com/contact-us/\";s:17:\"slider_subtitle_3\";s:0:\"\";s:16:\"site_title_color\";s:7:\"#ffffff\";s:15:\"top_items_color\";s:7:\"#ffffff\";}','yes'),(178,'theme_switched','','yes'),(179,'elementor_disable_color_schemes','yes','yes'),(180,'elementor_disable_typography_schemes','yes','yes'),(274,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(184,'recently_activated','a:0:{}','yes'),(218,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:4206473698;s:14:\"WP_CONTENT_DIR\";i:3349149577;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3335296895;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:2480039692;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;}','yes'),(221,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:4:\"http\";}','yes'),(222,'jetpack_sync_https_history_site_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(223,'jetpack_sync_https_history_home_url','a:2:{i:0;s:4:\"http\";i:1;s:4:\"http\";}','yes'),(256,'jetpack_callables_sync_checksum','a:30:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1340135854;s:8:\"site_url\";i:1340135854;s:8:\"home_url\";i:1340135854;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:32710197;s:10:\"post_types\";i:3959948922;s:18:\"post_type_features\";i:2491652661;s:10:\"shortcodes\";i:73727818;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:217794351;s:11:\"get_plugins\";i:658894635;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;s:8:\"timezone\";i:3808505409;}','no'),(257,'jpsq_sync_checkout','0:0','no'),(281,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:43:\"10 Examples of Uses of Absolute Positioning\";s:7:\"excerpt\";s:199:\"Breaking the grid with absolute positioning is an effective way of creating a unique design. In this article, we\'ll demonstrate how to use this technique to create visually compelling experiences.​\";s:7:\"created\";s:10:\"1553681423\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:127:\"https://elementor.com/blog/5-uses-absolute-positioning/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:74:\"Introducing Motion Effects: Powerful Animations to Bring Your Site to Life\";s:7:\"excerpt\";s:160:\"Elementor Pro v2.5 unleashes Motion Effects: a powerful toolset for creating amazing scrolling & mouse animations, including sophisticated parallax effects.\r\n\r\n\";s:7:\"created\";s:10:\"1553604438\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:126:\"https://elementor.com/blog/introducing-motion-effects/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:65:\"Sales Popups #3: How to Create a Shopping Cart Popup in WordPress\";s:7:\"excerpt\";s:133:\"In the last segment of our pop-up tutorial series, learn more sales-related tips on How to Create a Shopping Cart Popup in WordPress.\";s:7:\"created\";s:10:\"1553431788\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/shopping-cart-popup/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(611,'elementor_log','a:1:{s:32:\"55f3dfcec0d66d4edc90aa725e7dc893\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-01-25 10:53:48\";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:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.1\";s:2:\"to\";s:5:\"2.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-01-25 10:53:48\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.1\";s:2:\"to\";s:5:\"2.4.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1359 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (180,65,'_wp_attached_file','2019/01/6.jpg'),(23,12,'_edit_lock','1554078622:1'),(24,12,'_wp_page_template','page-templates/page_fullwidth.php'),(25,14,'_edit_lock','1553905885:1'),(26,16,'_edit_lock','1547632440:1'),(27,18,'_edit_lock','1553905954:1'),(181,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:13:\"2019/01/6.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"6-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"6-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"6-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"6-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"6-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"6-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(77,27,'_menu_item_target',''),(76,27,'_menu_item_object','page'),(75,27,'_menu_item_object_id','12'),(120,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:20:\"2019/01/DSC02337.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC02337-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC02337-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"DSC02337-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC02337-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:20:\"DSC02337-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:20:\"DSC02337-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"DSC02337-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:20:\"DSC02337-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:20:\"DSC02337-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6500\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1498402484\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(114,34,'_edit_lock','1547635547:1'),(119,37,'_wp_attached_file','2019/01/DSC02337.jpg'),(74,27,'_menu_item_menu_item_parent','0'),(73,27,'_menu_item_type','post_type'),(78,27,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(79,27,'_menu_item_xfn',''),(80,27,'_menu_item_url',''),(82,28,'_menu_item_type','post_type'),(83,28,'_menu_item_menu_item_parent','0'),(84,28,'_menu_item_object_id','18'),(85,28,'_menu_item_object','page'),(86,28,'_menu_item_target',''),(87,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(88,28,'_menu_item_xfn',''),(89,28,'_menu_item_url',''),(492,141,'_menu_item_menu_item_parent','0'),(491,141,'_menu_item_type','post_type'),(490,139,'_edit_lock','1553901698:1'),(489,139,'_wp_page_template','page-templates/page_fullwidth.php'),(488,139,'_edit_last','1'),(100,30,'_menu_item_type','post_type'),(101,30,'_menu_item_menu_item_parent','0'),(102,30,'_menu_item_object_id','14'),(103,30,'_menu_item_object','page'),(104,30,'_menu_item_target',''),(105,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(106,30,'_menu_item_xfn',''),(107,30,'_menu_item_url',''),(127,40,'_wp_attached_file','2019/01/body-2703405_1920.jpg'),(128,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1236;s:4:\"file\";s:29:\"2019/01/body-2703405_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"body-2703405_1920-1024x659.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-830x534.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-230x148.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-350x225.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703405_1920-480x309.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,41,'_wp_attached_file','2019/01/body-2703412_1920.jpg'),(130,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1288;s:4:\"file\";s:29:\"2019/01/body-2703412_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"body-2703412_1920-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-830x557.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-230x154.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-350x235.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:29:\"body-2703412_1920-480x322.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(131,42,'_wp_attached_file','2019/01/human-skeleton-163715_1280.jpg'),(132,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:38:\"2019/01/human-skeleton-163715_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"human-skeleton-163715_1280-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-830x467.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-230x129.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-350x197.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:38:\"human-skeleton-163715_1280-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(135,44,'_wp_attached_file','2019/01/Kautz-Courtney-2E.jpg'),(136,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:642;s:4:\"file\";s:29:\"2019/01/Kautz-Courtney-2E.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-230x295.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-350x449.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:29:\"Kautz-Courtney-2E-480x616.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547474472\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(137,45,'_wp_attached_file','2019/01/Kautz-Jade-2E.jpg'),(138,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:491;s:4:\"file\";s:25:\"2019/01/Kautz-Jade-2E.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Kautz-Jade-2E-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Kautz-Jade-2E-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Jade-2E-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Jade-2E-230x282.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Jade-2E-350x430.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547474423\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"102\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(139,46,'_wp_attached_file','2019/01/Kautz-Ruby-2E.jpg'),(140,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:508;s:4:\"file\";s:25:\"2019/01/Kautz-Ruby-2E.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Kautz-Ruby-2E-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Kautz-Ruby-2E-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Ruby-2E-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Ruby-2E-230x292.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"Kautz-Ruby-2E-350x445.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547473279\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(141,47,'_wp_attached_file','2019/01/Kautz-Sheperd-Ron-1E-.jpg'),(142,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:421;s:4:\"file\";s:33:\"2019/01/Kautz-Sheperd-Ron-1E-.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Kautz-Sheperd-Ron-1E--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Kautz-Sheperd-Ron-1E--285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:33:\"Kautz-Sheperd-Ron-1E--400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"Kautz-Sheperd-Ron-1E--230x242.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"Kautz-Sheperd-Ron-1E--350x368.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547473138\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(143,48,'_wp_attached_file','2019/01/Kautz-Shepherd-Group-1E.jpg'),(144,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:277;s:4:\"file\";s:35:\"2019/01/Kautz-Shepherd-Group-1E.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-550x277.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-230x106.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-350x162.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"Kautz-Shepherd-Group-1E-480x222.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547474614\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(154,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:13:\"2019/01/3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"3-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"3-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"3-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"3-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"3-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(149,51,'_wp_attached_file','2019/01/1-e1548416669166.jpg'),(150,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5748;s:6:\"height\";i:1969;s:4:\"file\";s:28:\"2019/01/1-e1548416669166.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"1-e1548416669166-1024x351.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-830x284.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"1-e1548416669166-230x79.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-350x120.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"1-e1548416669166-480x164.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(151,52,'_wp_attached_file','2019/01/2.jpg'),(152,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:13:\"2019/01/2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"2-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"2-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"2-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(153,53,'_wp_attached_file','2019/01/3.jpg'),(171,61,'_wp_attached_file','2019/01/5.jpg'),(172,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:13:\"2019/01/5.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"5-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"5-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"5-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"5-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"5-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(173,62,'_wp_attached_file','2019/01/5-1.jpg'),(174,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:15:\"2019/01/5-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"5-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:15:\"5-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"5-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"5-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"5-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"5-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(177,63,'_wp_attached_file','2019/01/5-2.jpg'),(178,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6000;s:6:\"height\";i:4000;s:4:\"file\";s:15:\"2019/01/5-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"5-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:15:\"5-2-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"5-2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"5-2-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"5-2-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"5-2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(205,12,'_elementor_edit_mode','builder'),(206,12,'_elementor_template_type','post'),(212,12,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"CALL NOW\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/new-patients\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click For More Info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"info\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(213,80,'_wp_page_template','page-templates/page_fullwidth.php'),(214,80,'_elementor_edit_mode','builder'),(215,80,'_elementor_template_type','post'),(216,80,'_elementor_data','[{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(217,12,'_elementor_version','0.4'),(218,81,'_wp_page_template','page-templates/page_fullwidth.php'),(219,81,'_elementor_edit_mode','builder'),(220,81,'_elementor_template_type','post'),(221,81,'_elementor_data','[{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(222,81,'_elementor_version','0.4'),(229,83,'_elementor_edit_mode','builder'),(230,83,'_elementor_template_type','post'),(231,83,'_elementor_data','[{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(228,83,'_wp_page_template','page-templates/page_fullwidth.php'),(232,83,'_elementor_version','0.4'),(233,84,'_wp_page_template','page-templates/page_fullwidth.php'),(234,84,'_elementor_edit_mode','builder'),(235,84,'_elementor_template_type','post'),(236,84,'_elementor_data','[{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(237,84,'_elementor_version','0.4'),(249,89,'_wp_page_template','page-templates/page_fullwidth.php'),(250,89,'_elementor_edit_mode','builder'),(251,89,'_elementor_template_type','post'),(252,89,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at- home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(253,89,'_elementor_version','0.4'),(262,91,'_elementor_template_type','post'),(263,91,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(260,91,'_wp_page_template','page-templates/page_fullwidth.php'),(261,91,'_elementor_edit_mode','builder'),(264,91,'_elementor_version','0.4'),(276,94,'_wp_page_template','page-templates/page_fullwidth.php'),(277,94,'_elementor_edit_mode','builder'),(278,94,'_elementor_template_type','post'),(279,94,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1040239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e70311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(270,51,'_edit_lock','1548416575:1'),(271,51,'_wp_attachment_backup_sizes','a:10:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:5749;s:6:\"height\";i:3833;s:4:\"file\";s:5:\"1.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:13:\"1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:13:\"1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:14:\"1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"sydney-large-thumb-orig\";a:4:{s:4:\"file\";s:13:\"1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"sydney-medium-thumb-orig\";a:4:{s:4:\"file\";s:13:\"1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"sydney-small-thumb-orig\";a:4:{s:4:\"file\";s:13:\"1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"sydney-service-thumb-orig\";a:4:{s:4:\"file\";s:13:\"1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"sydney-mas-thumb-orig\";a:4:{s:4:\"file\";s:13:\"1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(272,51,'_edit_last','1'),(274,93,'_wp_attached_file','2019/01/landscape-view-of-the-curving-mississippi-river.jpg'),(275,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:6016;s:6:\"height\";i:4016;s:4:\"file\";s:59:\"2019/01/landscape-view-of-the-curving-mississippi-river.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"landscape-view-of-the-curving-mississippi-river-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-830x554.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-230x154.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-350x234.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:59:\"landscape-view-of-the-curving-mississippi-river-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1464026830\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(280,94,'_elementor_version','0.4'),(281,95,'_wp_page_template','page-templates/page_fullwidth.php'),(282,95,'_elementor_edit_mode','builder'),(283,95,'_elementor_template_type','post'),(284,95,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1040239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e70311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(285,95,'_elementor_version','0.4'),(286,96,'_wp_page_template','page-templates/page_fullwidth.php'),(287,96,'_elementor_edit_mode','builder'),(288,96,'_elementor_template_type','post'),(289,96,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1040239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e70311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(290,96,'_elementor_version','0.4'),(291,97,'_wp_page_template','page-templates/page_fullwidth.php'),(292,97,'_elementor_edit_mode','builder'),(293,97,'_elementor_template_type','post'),(294,97,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1040239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e70311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(295,97,'_elementor_version','0.4'),(302,99,'_elementor_edit_mode','builder'),(303,99,'_elementor_template_type','post'),(304,99,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courtney Kautz\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d165523\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(301,99,'_wp_page_template','page-templates/page_fullwidth.php'),(305,99,'_elementor_version','0.4'),(306,100,'_wp_page_template','page-templates/page_fullwidth.php'),(307,100,'_elementor_edit_mode','builder'),(308,100,'_elementor_template_type','post'),(309,100,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d165523\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(310,100,'_elementor_version','0.4'),(330,105,'_wp_attached_file','2019/01/2-1.jpg'),(331,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1073;s:4:\"file\";s:15:\"2019/01/2-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"2-1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:15:\"2-1-830x557.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"2-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"2-1-230x154.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"2-1-350x235.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"2-1-480x322.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(312,101,'_wp_page_template','page-templates/page_fullwidth.php'),(313,101,'_elementor_edit_mode','builder'),(314,101,'_elementor_template_type','post'),(315,101,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15f1448\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d165523\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(316,101,'_elementor_version','0.4'),(317,101,'_elementor_css','a:4:{s:4:\"time\";i:1548418747;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(318,102,'_wp_attached_file','2019/01/ava1.png'),(319,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2019/01/ava1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ava1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ava1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:16:\"ava1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:16:\"ava1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:16:\"ava1-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(320,102,'_elementor_source_image_hash','380a4dc186270e9fcc6a4f401c6909e5b9c2851d'),(321,103,'_wp_attached_file','2019/01/ava2.png'),(322,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2019/01/ava2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ava2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ava2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:16:\"ava2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:16:\"ava2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:16:\"ava2-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(323,103,'_elementor_source_image_hash','fe08d1630f577f53caa449a4d3b62a8c8575248d'),(332,105,'_elementor_source_image_hash','5f16ce611ba882312f7520e2ee6d9f5fa4564564'),(333,106,'_wp_attached_file','2019/01/ma.png'),(334,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:776;s:6:\"height\";i:650;s:4:\"file\";s:14:\"2019/01/ma.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"ma-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"ma-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"ma-768x643.png\";s:5:\"width\";i:768;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:14:\"ma-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:14:\"ma-230x193.png\";s:5:\"width\";i:230;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:14:\"ma-350x293.png\";s:5:\"width\";i:350;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:14:\"ma-480x402.png\";s:5:\"width\";i:480;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(335,106,'_elementor_source_image_hash','abe7fa246d045665472eb8a82c5bd699379c9142'),(336,107,'_wp_attached_file','2019/01/placeholder.png'),(337,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2019/01/placeholder.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-830x553.png\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-230x153.png\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-350x233.png\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(338,107,'_elementor_source_image_hash','fb0e9a30e604b8b7b6ffb4f9b6bc255e6e2b9a6a'),(339,108,'_wp_attached_file','2019/01/top-cover.jpg'),(340,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1087;s:4:\"file\";s:21:\"2019/01/top-cover.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"top-cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"top-cover-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"top-cover-768x522.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"top-cover-1024x696.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:21:\"top-cover-830x564.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:21:\"top-cover-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"top-cover-230x156.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"top-cover-350x238.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:21:\"top-cover-480x326.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(341,108,'_elementor_source_image_hash','ea1e4f9fe397ce7ee13f2ddad7517c3e78f89f2f'),(342,109,'_wp_attached_file','2019/01/vbg-4.jpg'),(343,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:17:\"2019/01/vbg-4.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"vbg-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"vbg-4-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"vbg-4-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"vbg-4-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:17:\"vbg-4-830x519.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"vbg-4-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"vbg-4-230x144.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"vbg-4-350x219.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"vbg-4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(344,109,'_elementor_source_image_hash','643b67c49a4fc2396484727a9925692851546fc6'),(345,110,'_wp_attached_file','2019/01/brushed-alum.png'),(346,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2019/01/brushed-alum.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"brushed-alum-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"brushed-alum-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"brushed-alum-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"brushed-alum-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"brushed-alum-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(347,110,'_elementor_source_image_hash','3cdc3dc809563e5fba5cd6ad6a39366abf28f4ae'),(348,111,'_wp_attached_file','2019/01/iPhone-7-2.png'),(349,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:498;s:6:\"height\";i:850;s:4:\"file\";s:22:\"2019/01/iPhone-7-2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-176x300.png\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-498x400.png\";s:5:\"width\";i:498;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-230x393.png\";s:5:\"width\";i:230;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-350x597.png\";s:5:\"width\";i:350;s:6:\"height\";i:597;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:22:\"iPhone-7-2-480x819.png\";s:5:\"width\";i:480;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(350,111,'_elementor_source_image_hash','512a11c3da9919c1f74c64fbd6ba2336973b9179'),(351,112,'_wp_attached_file','2019/01/bg2.jpg'),(352,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:972;s:4:\"file\";s:15:\"2019/01/bg2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg2-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg2-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg2-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:15:\"bg2-830x504.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"bg2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"bg2-230x140.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"bg2-350x213.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"bg2-480x292.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(353,112,'_elementor_source_image_hash','02baa71354a3fe032aa6b19a2912fc0c2d6ad008'),(354,113,'_wp_attached_file','2019/01/bg-lionello-delpiccolo.jpg'),(355,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:34:\"2019/01/bg-lionello-delpiccolo.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"bg-lionello-delpiccolo-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-830x554.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:34:\"bg-lionello-delpiccolo-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(356,113,'_elementor_source_image_hash','0f8d54b135127b3d6b4e7eaf5eedc0d388fb9eae'),(357,114,'_wp_attached_file','2019/01/hqdefault.jpg'),(358,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:188;s:4:\"file\";s:21:\"2019/01/hqdefault.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hqdefault-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hqdefault-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"hqdefault-230x129.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(359,114,'_elementor_source_image_hash','90cae4e7da0bff582f561e37c1b29cd2d7dd110a'),(360,115,'_wp_attached_file','2019/01/Mackbook2.png'),(361,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1602;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2019/01/Mackbook2.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Mackbook2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Mackbook2-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Mackbook2-768x431.png\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Mackbook2-1024x575.png\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:21:\"Mackbook2-830x466.png\";s:5:\"width\";i:830;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:21:\"Mackbook2-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"Mackbook2-230x129.png\";s:5:\"width\";i:230;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"Mackbook2-350x197.png\";s:5:\"width\";i:350;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:21:\"Mackbook2-480x270.png\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(362,115,'_elementor_source_image_hash','621696b5536a52462e535cfddb86f39fdab20289'),(363,116,'_wp_attached_file','2019/01/vbg10.jpg'),(364,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:17:\"2019/01/vbg10.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"vbg10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"vbg10-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"vbg10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"vbg10-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:17:\"vbg10-830x519.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"vbg10-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"vbg10-230x144.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"vbg10-350x219.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"vbg10-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(365,116,'_elementor_source_image_hash','67a70ca6ab7a9a4c5ba36fa17898cdbfe2e7cd6e'),(366,117,'_wp_attached_file','2019/01/bg-maxime-staudenmann.jpg'),(367,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:33:\"2019/01/bg-maxime-staudenmann.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"bg-maxime-staudenmann-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-830x554.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:33:\"bg-maxime-staudenmann-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(368,117,'_elementor_source_image_hash','71575fe36fd06518c0c87ae892a0ccb3adeead82'),(372,119,'_wp_page_template','page-templates/page_fullwidth.php'),(373,119,'_elementor_edit_mode','builder'),(374,119,'_elementor_template_type','post'),(375,119,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Surf\'s up!\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Poppins\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>There are 23 million estimated surfers around the world. The longest amount of time spent surfing one wave is 37 minutes. There are many other reasons\\u00a0you should get on board.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Catch Our Wave\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change.<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ava1.png\"},\"title_text\":\"Amanda Lee\",\"description_text\":\"Senior project \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":118,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/y11.png\"},\"title_text\":\"Larry Flint\",\"description_text\":\"Graphic Designer\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6425a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0110cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"550c7b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db9f18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364ac3d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Contact us\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da16e12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2aed9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4ea106\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c860f95\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"35d5c5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce49a6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4915a08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bea1f56\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":250},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\",\"id\":93},\"background_attachment\":\"fixed\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a042e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(369,118,'_wp_attached_file','2019/01/y11.png'),(370,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:15:\"2019/01/y11.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"y11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"y11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"y11-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"y11-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"y11-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(371,118,'_elementor_source_image_hash','a82abe76bba7b482f517252fd7a09833bb97bfb2'),(376,119,'_elementor_version','0.4'),(385,121,'_wp_page_template','page-templates/page_fullwidth.php'),(386,121,'_elementor_edit_mode','builder'),(387,121,'_elementor_template_type','post'),(388,121,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change.<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ava1.png\"},\"title_text\":\"Amanda Lee\",\"description_text\":\"Senior project \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":118,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/y11.png\"},\"title_text\":\"Larry Flint\",\"description_text\":\"Graphic Designer\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"102\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ava1.png\"},\"title_text\":\"Amanda Lee\",\"description_text\":\"Senior project \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":118,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/y11.png\"},\"title_text\":\"Larry Flint\",\"description_text\":\"Graphic Designer\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(383,12,'_oembed_a5c68269dac204668ff510ef8423ea24','<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/kB4U67tiQLA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(384,12,'_oembed_time_a5c68269dac204668ff510ef8423ea24','1548428735'),(389,121,'_elementor_version','0.4'),(400,123,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Hello.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(397,123,'_wp_page_template','page-templates/page_fullwidth.php'),(398,123,'_elementor_edit_mode','builder'),(399,123,'_elementor_template_type','post'),(401,123,'_elementor_version','0.4'),(437,130,'_elementor_template_type','post'),(438,130,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(411,125,'_elementor_version','0.4'),(407,125,'_wp_page_template','page-templates/page_fullwidth.php'),(408,125,'_elementor_edit_mode','builder'),(409,125,'_elementor_template_type','post'),(410,125,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Traction\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports<br \\/>injuries, compressed and bulging discs, and trauma cases.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Let\'s Meet\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Sg8zNwnxQik\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(412,126,'_wp_page_template','page-templates/page_fullwidth.php'),(413,126,'_elementor_edit_mode','builder'),(414,126,'_elementor_template_type','post'),(415,126,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Traction\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports injuries, compressed and bulging discs, and trauma cases. Click the button below to see other conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Sg8zNwnxQik\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(416,126,'_elementor_version','0.4'),(422,128,'_wp_page_template','page-templates/page_fullwidth.php'),(423,128,'_elementor_edit_mode','builder'),(424,128,'_elementor_template_type','post'),(425,128,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#61ce70\",\"border_border\":\"solid\",\"border_color\":\"#61ce70\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"8a31352\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Traction\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#282828\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63},\"typography_font_family\":\"Poppins\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports injuries, compressed and bulging discs, and trauma cases. Click the button below to see other conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(435,130,'_wp_page_template','page-templates/page_fullwidth.php'),(436,130,'_elementor_edit_mode','builder'),(426,128,'_elementor_version','0.4'),(439,130,'_elementor_version','0.4'),(440,130,'_elementor_css','a:4:{s:4:\"time\";i:1548595328;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:6;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(452,132,'_elementor_version','0.4'),(553,152,'_wp_attached_file','2019/01/court-circle.jpg'),(554,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/01/court-circle.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"court-circle-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"court-circle-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"court-circle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:24:\"court-circle-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"court-circle-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"court-circle-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"court-circle-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:24:\"court-circle-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(433,12,'_oembed_188f11d0edeb6447b645f64a4db560b5','<iframe width=\"1170\" height=\"878\" src=\"https://www.youtube.com/embed/7KRQSel4gh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(434,12,'_oembed_time_188f11d0edeb6447b645f64a4db560b5','1548595328'),(450,132,'_elementor_template_type','post'),(451,132,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office include:<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(661,172,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(448,132,'_wp_page_template','page-templates/page_fullwidth.php'),(449,132,'_elementor_edit_mode','builder'),(454,133,'_wp_page_template','page-templates/page_fullwidth.php'),(455,133,'_elementor_edit_mode','builder'),(456,133,'_elementor_template_type','post'),(457,133,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\",\"id\":44},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":44,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Courtney-2E.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":47,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Sheperd-Ron-1E-.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(458,133,'_elementor_version','0.4'),(459,133,'_elementor_css','a:4:{s:4:\"time\";i:1548595727;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(461,18,'_elementor_edit_mode','builder'),(462,18,'_elementor_template_type','post'),(463,18,'_wp_page_template','page-templates/page_fullwidth.php'),(464,18,'_elementor_data','[{\"id\":\"0807223\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"147ec71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed9b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"size\":\"xxl\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a053809\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 7AM-1:30PM<br \\/>TUE: 7AM-1:30PM<br \\/>THU: 7AM-5:00pm<br \\/>FRI: 7AM-1:30PM<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43620c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"align\":\"center\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":431}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(512,144,'_elementor_edit_mode','builder'),(513,144,'_elementor_template_type','post'),(514,144,'_wp_page_template','page-templates/page_fullwidth.php'),(515,144,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(470,135,'_elementor_edit_mode','builder'),(471,135,'_elementor_template_type','post'),(472,135,'_wp_page_template','default'),(473,135,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"7f0e5c7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"7e1d56b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"},{\"social\":\"fa fa-dribbble\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"bd5677f\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"31673c9\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(465,134,'_elementor_edit_mode','builder'),(466,134,'_elementor_template_type','post'),(467,134,'_wp_page_template','default'),(468,134,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"7f0e5c7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"7e1d56b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"},{\"social\":\"fa fa-dribbble\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"bd5677f\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"31673c9\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"322af844\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2885b8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56a586ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70a7865e\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b7ba714\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"507513cc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"7f0e5c7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"7e1d56b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"},{\"social\":\"fa fa-dribbble\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"bd5677f\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"31673c9\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"1c8517df\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6fbc6d77\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(469,18,'_elementor_version','0.4'),(474,135,'_elementor_version','0.4'),(475,136,'_edit_last','1'),(476,136,'_edit_lock','1554068629:1'),(477,136,'_wp_page_template','page-templates/page_fullwidth.php'),(479,138,'_menu_item_type','post_type'),(480,138,'_menu_item_menu_item_parent','0'),(481,138,'_menu_item_object_id','136'),(482,138,'_menu_item_object','page'),(483,138,'_menu_item_target',''),(484,138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(485,138,'_menu_item_xfn',''),(486,138,'_menu_item_url',''),(493,141,'_menu_item_object_id','139'),(494,141,'_menu_item_object','page'),(495,141,'_menu_item_target',''),(496,141,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(497,141,'_menu_item_xfn',''),(498,141,'_menu_item_url',''),(500,142,'_elementor_edit_mode','builder'),(501,142,'_elementor_template_type','post'),(502,142,'_wp_page_template','default'),(503,142,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"7f0e5c7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"7e1d56b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"},{\"social\":\"fa fa-dribbble\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"bd5677f\"},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"31673c9\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(504,142,'_elementor_version','0.4'),(505,142,'_elementor_css','a:4:{s:4:\"time\";i:1548597212;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(516,144,'_elementor_version','0.4'),(517,145,'_elementor_edit_mode','builder'),(518,145,'_elementor_template_type','post'),(519,145,'_wp_page_template','page-templates/page_fullwidth.php'),(520,145,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(521,145,'_elementor_version','0.4'),(523,146,'_wp_attached_file','2019/01/qr2.jpg'),(524,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:590;s:6:\"height\";i:400;s:4:\"file\";s:15:\"2019/01/qr2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"qr2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"qr2-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"qr2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"qr2-230x156.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"qr2-350x237.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"qr2-480x325.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(525,146,'_elementor_source_image_hash','d66dc5681b2e9c3d0fe0a13f54e78b33a7e4eb24'),(526,147,'_elementor_edit_mode','builder'),(527,147,'_elementor_template_type','post'),(528,147,'_wp_page_template','page-templates/page_fullwidth.php'),(529,147,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a67b665\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7d4866\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4a19c51d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":146,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/qr2.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26921e40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75d67623\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77670edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(530,147,'_elementor_version','0.4'),(531,147,'_elementor_css','a:4:{s:4:\"time\";i:1548598175;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(533,148,'_elementor_edit_mode','builder'),(534,148,'_elementor_template_type','post'),(535,148,'_wp_page_template','page-templates/page_fullwidth.php'),(536,148,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact@company.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":18},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a67b665\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7d4866\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4a19c51d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":146,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/qr2.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26921e40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75d67623\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77670edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(537,148,'_elementor_version','0.4'),(538,148,'_elementor_css','a:4:{s:4:\"time\";i:1548598573;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(564,156,'_elementor_template_type','post'),(565,156,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":46,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Ruby-2E.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":45,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/Kautz-Jade-2E.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(659,172,'_elementor_edit_mode','builder'),(660,172,'_elementor_template_type','post'),(562,156,'_wp_page_template','page-templates/page_fullwidth.php'),(563,156,'_elementor_edit_mode','builder'),(555,153,'_wp_attached_file','2019/01/pic-3.jpg'),(556,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2019/01/pic-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pic-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pic-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"pic-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:17:\"pic-3-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"pic-3-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"pic-3-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"pic-3-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"pic-3-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(557,154,'_wp_attached_file','2019/01/pic-4.jpg'),(558,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2019/01/pic-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"pic-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"pic-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"pic-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:17:\"pic-4-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"pic-4-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"pic-4-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"pic-4-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"pic-4-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(559,155,'_wp_attached_file','2019/01/ron-web.jpg'),(560,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2019/01/ron-web.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ron-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ron-web-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"ron-web-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:19:\"ron-web-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:19:\"ron-web-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:19:\"ron-web-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:19:\"ron-web-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:19:\"ron-web-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(568,157,'_wp_page_template','page-templates/page_fullwidth.php'),(569,157,'_elementor_edit_mode','builder'),(570,157,'_elementor_template_type','post'),(566,156,'_elementor_version','0.4'),(567,156,'_elementor_css','a:4:{s:4:\"time\";i:1548672385;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(571,157,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(572,157,'_elementor_version','0.4'),(658,172,'_wp_page_template','page-templates/page_fullwidth.php'),(648,170,'_wp_page_template','page-templates/page_fullwidth.php'),(649,170,'_elementor_edit_mode','builder'),(574,158,'_wp_page_template','page-templates/page_fullwidth.php'),(575,158,'_elementor_edit_mode','builder'),(576,158,'_elementor_template_type','post'),(577,158,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"68\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(578,158,'_elementor_version','0.4'),(579,158,'_elementor_css','a:4:{s:4:\"time\";i:1548672685;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(580,12,'_oembed_42410b44957cf766976d86e6cb623026','<iframe width=\"1170\" height=\"878\" src=\"https://www.youtube.com/embed/7KRQSel4gh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(581,12,'_oembed_time_42410b44957cf766976d86e6cb623026','1548672687'),(582,159,'_wp_page_template','page-templates/page_fullwidth.php'),(583,159,'_elementor_edit_mode','builder'),(584,159,'_elementor_template_type','post'),(585,159,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.1}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(586,159,'_elementor_version','0.4'),(587,159,'_elementor_css','a:4:{s:4:\"time\";i:1548672685;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(589,160,'_elementor_edit_mode','builder'),(590,160,'_elementor_template_type','post'),(591,160,'_wp_page_template','page-templates/page_fullwidth.php'),(592,160,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"For any inquiries please email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a67b665\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d7d4866\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4a19c51d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":146,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/qr2.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26921e40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75d67623\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77670edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(593,160,'_elementor_version','0.4'),(594,160,'_elementor_css','a:4:{s:4:\"time\";i:1548598573;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1298,307,'_elementor_edit_mode','builder'),(1299,307,'_elementor_template_type','post'),(1300,307,'_wp_page_template','page-templates/page_fullwidth.php'),(1301,307,'_elementor_data','[{\"id\":\"0807223\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"147ec71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed9b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"size\":\"xxl\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a053809\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 7AM-1:30PM<br \\/>TUE: 7AM-1:30PM<br \\/>THU: 7AM-5:00pm<br \\/>FRI: 7AM-1:30PM<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43620c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":431}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(595,161,'_elementor_edit_mode','builder'),(596,161,'_elementor_template_type','post'),(597,161,'_wp_page_template','page-templates/page_fullwidth.php'),(598,161,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(599,161,'_elementor_version','0.4'),(606,163,'_elementor_template_type','post'),(607,163,'_wp_page_template','page-templates/page_fullwidth.php'),(608,163,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"MON 7AM-1:30PM\\nTUE 7AM-1:30PM\\nTHU 7AM-5:00pm\\nFRI 7AM-1:30PM\\n\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(637,168,'_elementor_template_type','post'),(638,168,'_wp_page_template','page-templates/page_fullwidth.php'),(639,168,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com<br>office: 563-289-3242<br>Fax: 563-289-4541\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 7AM-1:30PM<br \\/>TUE: 7AM-1:30PM<br \\/>THU: 7AM-5:00pm<br \\/>FRI: 7AM-1:30PM<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":431}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(616,165,'_elementor_edit_mode','builder'),(605,163,'_elementor_edit_mode','builder'),(609,163,'_elementor_version','0.4'),(610,164,'_elementor_edit_mode','builder'),(611,164,'_elementor_template_type','post'),(612,164,'_wp_page_template','page-templates/page_fullwidth.php'),(613,164,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"MON 7AM-1:30PM\\nTUE 7AM-1:30PM\\nTHU 7AM-5:00pm\\nFRI 7AM-1:30PM\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(614,164,'_elementor_version','0.4'),(642,169,'_wp_page_template','page-templates/page_fullwidth.php'),(643,169,'_elementor_edit_mode','builder'),(617,165,'_elementor_template_type','post'),(618,165,'_wp_page_template','page-templates/page_fullwidth.php'),(619,165,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"MON 8AM-7:00PM\\nTUE 8AM-7:00PM\\nWED 8AM-7:00PM\\nFRI 8AM-5:00PM\\nSAT 8AM-NOON\\n\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON 7AM-1:30PM<br \\/>TUE 7AM-1:30PM<br \\/>THU 7AM-5:00pm<br \\/>FRI 7AM-1:30PM<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(620,165,'_elementor_version','0.4'),(621,165,'_elementor_css','a:4:{s:4:\"time\";i:1548681317;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(636,168,'_elementor_edit_mode','builder'),(623,166,'_elementor_edit_mode','builder'),(624,166,'_elementor_template_type','post'),(625,166,'_wp_page_template','page-templates/page_fullwidth.php'),(626,166,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON 8AM-7:00PM<br \\/>TUE 8AM-7:00PM<br \\/>WED 8AM-7:00PM<br \\/>FRI 8AM-5:00PM<br \\/>SAT 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON 7AM-1:30PM<br \\/>TUE 7AM-1:30PM<br \\/>THU 7AM-5:00pm<br \\/>FRI 7AM-1:30PM<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(627,166,'_elementor_version','0.4'),(628,166,'_elementor_css','a:4:{s:4:\"time\";i:1548681549;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(630,167,'_elementor_edit_mode','builder'),(631,167,'_elementor_template_type','post'),(632,167,'_wp_page_template','page-templates/page_fullwidth.php'),(633,167,'_elementor_data','[{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6902ec10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":12},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5acbeaa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"size\":\"small\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"219581f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com\",\"header_size\":\"h4\",\"title_color\":\"#00ce1b\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON 8AM-7:00PM<br \\/>TUE 8AM-7:00PM<br \\/>WED 8AM-7:00PM<br \\/>FRI 8AM-5:00PM<br \\/>SAT 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON 7AM-1:30PM<br \\/>TUE 7AM-1:30PM<br \\/>THU 7AM-5:00pm<br \\/>FRI 7AM-1:30PM<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":400}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e2379\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c2d2f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"608e456\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f43df26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"262f3843\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b507efe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8a0d48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792ee6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Office: 563-289-3242<br \\/>Fax: 563-289-4541<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46a7aa18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7263d369\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our hours\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5cb29ef1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>08:00 AM - 7:00 PM<br \\/>Monday - Wednesday<br \\/>-Thursday Closed-<br \\/>Friday 8AM-5PM<br \\/>Saturday 8AM-NOON<br \\/>-Sunday closed-<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1bcd51a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0b44ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4befeeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd,<br \\/>Le Claire, IA 52753<\\/p>\",\"align\":\"center\",\"text_color\":\"#c4c4c4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(634,167,'_elementor_version','0.4'),(635,167,'_elementor_css','a:4:{s:4:\"time\";i:1548681638;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(640,168,'_elementor_version','0.4'),(641,168,'_elementor_css','a:4:{s:4:\"time\";i:1548681638;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(644,169,'_elementor_template_type','post'),(645,169,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"attachment\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(646,169,'_elementor_version','0.4'),(647,169,'_elementor_css','a:4:{s:4:\"time\";i:1548672750;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(650,170,'_elementor_template_type','post'),(651,170,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b8eb2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2da89c8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d39f76\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"d2b7695\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-dribbble\",\"_id\":\"0831677\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-behance\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"0ac3790\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(652,170,'_elementor_version','0.4'),(662,172,'_elementor_version','0.4'),(1311,175,'_elementor_css','a:4:{s:4:\"time\";i:1553903132;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(776,195,'_elementor_version','0.4'),(777,196,'_wp_page_template','page-templates/page_fullwidth.php'),(778,196,'_elementor_edit_mode','builder'),(665,175,'_edit_last','1'),(666,175,'_wp_page_template','page-templates/page_fullwidth.php'),(667,175,'_edit_lock','1553902191:1'),(668,177,'_menu_item_type','post_type'),(669,177,'_menu_item_menu_item_parent','0'),(670,177,'_menu_item_object_id','175'),(671,177,'_menu_item_object','page'),(672,177,'_menu_item_target',''),(673,177,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(674,177,'_menu_item_xfn',''),(675,177,'_menu_item_url',''),(677,14,'_wp_page_template','page-templates/page_fullwidth.php'),(678,175,'_elementor_edit_mode','builder'),(679,175,'_elementor_template_type','post'),(685,175,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-49\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a6bc018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Message Therapy\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6f162d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3799673\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"769173c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"49aa281\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c925f7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16be7b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f9da61e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dacfca1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2888afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e7c55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 min - $35<br \\/>60 min - $60<br \\/>90 min - $85<br \\/>120 min - $110<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ce5843\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage Hours\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon 11AM \\u2013 6 PM<br \\/>Wed 9 AM \\u2013 4 PM<br \\/>Fri 9 AM \\u2013 4<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"722ea49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(686,179,'_wp_page_template','page-templates/page_fullwidth.php'),(687,179,'_elementor_edit_mode','builder'),(688,179,'_elementor_template_type','post'),(689,179,'_elementor_data','[{\"id\":\"441503d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a4f02d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa107b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a74a693\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4778ce7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"055234f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"634c3cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":100},\"space\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8354abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fd250e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(690,175,'_elementor_version','0.4'),(691,180,'_wp_page_template','page-templates/page_fullwidth.php'),(692,180,'_elementor_edit_mode','builder'),(693,180,'_elementor_template_type','post'),(694,180,'_elementor_data','[{\"id\":\"7467c65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9a27758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af83f48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fbb7679\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf1cd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe7115\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbc1973\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7ea3bf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":249},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32b54a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(695,180,'_elementor_version','0.4'),(696,181,'_wp_page_template','page-templates/page_fullwidth.php'),(697,181,'_elementor_edit_mode','builder'),(698,181,'_elementor_template_type','post'),(699,181,'_elementor_data','[{\"id\":\"7467c65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9a27758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af83f48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fbb7679\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf1cd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe7115\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbc1973\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7ea3bf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":249},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32b54a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0a64877\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(700,181,'_elementor_version','0.4'),(701,182,'_wp_page_template','page-templates/page_fullwidth.php'),(702,182,'_elementor_edit_mode','builder'),(703,182,'_elementor_template_type','post'),(704,182,'_elementor_data','[{\"id\":\"7467c65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9a27758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af83f48\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fbb7679\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf1cd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9fe7115\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbc1973\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7ea3bf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":249},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32b54a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cb61c0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now to set up an appointment \",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a64877\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(705,182,'_elementor_version','0.4'),(707,136,'_elementor_edit_mode','builder'),(708,136,'_elementor_template_type','post'),(709,136,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Treatments\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call Now\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dab755b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10cee5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08e42c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ce4c32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2c9252\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c89016\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(710,183,'_wp_page_template','page-templates/page_fullwidth.php'),(711,183,'_elementor_edit_mode','builder'),(712,183,'_elementor_template_type','post'),(713,183,'_elementor_data','[{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be0f649\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":249},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6440a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd00904\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now to set up an appointment \",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f1da94d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(714,136,'_elementor_version','0.4'),(722,185,'_wp_page_template','page-templates/page_fullwidth.php'),(723,185,'_elementor_edit_mode','builder'),(724,185,'_elementor_template_type','post'),(725,185,'_elementor_data','[{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(716,184,'_wp_page_template','page-templates/page_fullwidth.php'),(717,184,'_elementor_edit_mode','builder'),(718,184,'_elementor_template_type','post'),(719,184,'_elementor_data','[{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be0f649\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":249},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6440a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd00904\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now to set up an appointment \",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f1da94d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"background_background\":\"classic\",\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(720,184,'_elementor_version','0.4'),(721,184,'_elementor_css','a:4:{s:4:\"time\";i:1548685546;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(726,185,'_elementor_version','0.4'),(727,186,'_wp_page_template','page-templates/page_fullwidth.php'),(728,186,'_elementor_edit_mode','builder'),(729,186,'_elementor_template_type','post'),(730,186,'_elementor_data','[{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(731,186,'_elementor_version','0.4'),(735,188,'_wp_page_template','page-templates/page_fullwidth.php'),(736,188,'_elementor_edit_mode','builder'),(737,188,'_elementor_template_type','post'),(738,188,'_elementor_data','[{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(739,188,'_elementor_version','0.4'),(740,188,'_elementor_css','a:4:{s:4:\"time\";i:1548685863;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(741,189,'_wp_page_template','page-templates/page_fullwidth.php'),(742,189,'_elementor_edit_mode','builder'),(743,189,'_elementor_template_type','post'),(744,189,'_elementor_data','[{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(745,189,'_elementor_version','0.4'),(746,190,'_wp_page_template','page-templates/page_fullwidth.php'),(747,190,'_elementor_edit_mode','builder'),(748,190,'_elementor_template_type','post'),(749,190,'_elementor_data','[{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(750,190,'_elementor_version','0.4'),(751,191,'_wp_page_template','page-templates/page_fullwidth.php'),(752,191,'_elementor_edit_mode','builder'),(753,191,'_elementor_template_type','post'),(754,191,'_elementor_data','[{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(755,191,'_elementor_version','0.4'),(850,209,'_wp_page_template','page-templates/page_fullwidth.php'),(851,209,'_elementor_edit_mode','builder'),(757,192,'_wp_attached_file','2019/01/7.jpg'),(758,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1357;s:4:\"file\";s:13:\"2019/01/7.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"7-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"7-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"7-830x587.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"7-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"7-230x163.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"7-350x247.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"7-480x339.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(759,193,'_wp_page_template','page-templates/page_fullwidth.php'),(760,193,'_elementor_edit_mode','builder'),(761,193,'_elementor_template_type','post'),(762,193,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(763,193,'_elementor_version','0.4'),(764,193,'_elementor_css','a:4:{s:4:\"time\";i:1548683215;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:5;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(774,195,'_elementor_template_type','post'),(775,195,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\\ntrigger point, Swedish and pre-natal massage.\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click here for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(772,195,'_wp_page_template','page-templates/page_fullwidth.php'),(773,195,'_elementor_edit_mode','builder'),(779,196,'_elementor_template_type','post'),(780,196,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.15}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\\ntrigger point, Swedish and pre-natal massage.\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click here for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(781,196,'_elementor_version','0.4'),(782,197,'_wp_page_template','page-templates/page_fullwidth.php'),(783,197,'_elementor_edit_mode','builder'),(784,197,'_elementor_template_type','post'),(785,197,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\\ntrigger point, Swedish and pre-natal massage.\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(786,197,'_elementor_version','0.4'),(787,198,'_wp_page_template','page-templates/page_fullwidth.php'),(788,198,'_elementor_edit_mode','builder'),(789,198,'_elementor_template_type','post'),(790,198,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\\ntrigger point, Swedish and pre-natal massage.\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(791,198,'_elementor_version','0.4'),(793,199,'_wp_page_template','page-templates/page_fullwidth.php'),(794,199,'_elementor_edit_mode','builder'),(795,199,'_elementor_template_type','post');
INSERT INTO `wp_postmeta` VALUES (796,199,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy \",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\\ntrigger point, Swedish and pre-natal massage.\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(797,199,'_elementor_version','0.4'),(798,199,'_elementor_css','a:4:{s:4:\"time\";i:1548688073;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(799,200,'_wp_page_template','page-templates/page_fullwidth.php'),(800,200,'_elementor_edit_mode','builder'),(801,200,'_elementor_template_type','post'),(802,200,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ddc75ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d2e222\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(803,200,'_elementor_version','0.4'),(804,200,'_elementor_css','a:4:{s:4:\"time\";i:1548688073;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(818,202,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54ad65e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"32dc101\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a259e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"90cf535\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"703f531\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cbf47c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d54c816\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-phone\",\"primary_color\":\"#eaa646\",\"size\":{\"unit\":\"px\",\"size\":51},\"rotate\":{\"unit\":\"deg\",\"size\":35}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a6f2523\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d62044f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"292f7e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"64e517d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"fa2c1f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(817,202,'_elementor_template_type','post'),(815,202,'_wp_page_template','page-templates/page_fullwidth.php'),(816,202,'_elementor_edit_mode','builder'),(813,12,'_oembed_c2bac82b1ff4c9b8a27df4f480026d1e','<iframe width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/7KRQSel4gh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(814,12,'_oembed_time_c2bac82b1ff4c9b8a27df4f480026d1e','1548704744'),(819,202,'_elementor_version','0.4'),(820,202,'_elementor_css','a:4:{s:4:\"time\";i:1548704603;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(833,206,'_wp_page_template','page-templates/page_fullwidth.php'),(834,206,'_elementor_edit_mode','builder'),(835,206,'_elementor_template_type','post'),(836,206,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(822,204,'_wp_page_template','page-templates/page_fullwidth.php'),(823,204,'_elementor_edit_mode','builder'),(824,204,'_elementor_template_type','post'),(825,204,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14}},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":446}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Email : kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON-FRI 09:00 - 19:00<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"839604a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SAT-SUN 10:00 - 14:00<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(826,204,'_elementor_version','0.4'),(827,204,'_elementor_css','a:4:{s:4:\"time\";i:1548757870;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(837,206,'_elementor_version','0.4'),(918,225,'_wp_page_template','page-templates/page_fullwidth.php'),(919,225,'_elementor_edit_mode','builder'),(920,225,'_elementor_template_type','post'),(921,225,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(844,208,'_wp_page_template','page-templates/page_fullwidth.php'),(845,208,'_elementor_edit_mode','builder'),(846,208,'_elementor_template_type','post'),(847,208,'_elementor_data','[{\"id\":\"d4136ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169e5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a2549cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(848,208,'_elementor_version','0.4'),(849,208,'_elementor_css','a:4:{s:4:\"time\";i:1548687326;s:5:\"fonts\";a:1:{i:0;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(852,209,'_elementor_template_type','post'),(853,209,'_elementor_data','[{\"id\":\"d4136ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169e5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a2549cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(854,209,'_elementor_version','0.4'),(855,210,'_wp_page_template','page-templates/page_fullwidth.php'),(856,210,'_elementor_edit_mode','builder'),(857,210,'_elementor_template_type','post'),(858,210,'_elementor_data','[{\"id\":\"d4136ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169e5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a2549cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services \",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ba63b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"7ed1dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494126e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d549398\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(859,210,'_elementor_version','0.4'),(1152,278,'_wp_attached_file','2019/02/computer-3343887_1920.jpg'),(1153,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1137;s:4:\"file\";s:33:\"2019/02/computer-3343887_1920.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-768x455.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"computer-3343887_1920-1024x606.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-830x492.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-230x136.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-350x207.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-480x284.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:33:\"computer-3343887_1920-272x182.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(861,211,'_wp_page_template','page-templates/page_fullwidth.php'),(862,211,'_elementor_edit_mode','builder'),(863,211,'_elementor_template_type','post'),(864,211,'_elementor_data','[{\"id\":\"d4136ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169e5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a2549cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services \",\"align\":\"center\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c453e5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c2893a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"left\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c4bf4c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":305},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"b6cc95e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4556313\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call Now to set up an appointment!\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14b707c\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(865,211,'_elementor_version','0.4'),(866,211,'_elementor_css','a:4:{s:4:\"time\";i:1549196687;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(876,214,'_wp_page_template','page-templates/page_fullwidth.php'),(877,214,'_elementor_edit_mode','builder'),(878,214,'_elementor_template_type','post'),(879,214,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c971cea\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44cc083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"326200a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"dc44666\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5711e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f441e8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a552203\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hours\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon 11AM \\u2013 6 PM\\nWed 9 AM \\u2013 4 PM\\nFri 9 AM \\u2013 4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07f2317\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1d62fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(874,213,'_wp_attached_file','2019/02/treatment-1327811_1920.jpg'),(875,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:34:\"2019/02/treatment-1327811_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"treatment-1327811_1920-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:34:\"treatment-1327811_1920-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(880,214,'_elementor_version','0.4'),(881,215,'_wp_page_template','page-templates/page_fullwidth.php'),(882,215,'_elementor_edit_mode','builder'),(883,215,'_elementor_template_type','post'),(884,215,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c971cea\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44cc083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"326200a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"dc44666\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5711e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f441e8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a552203\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage Hours\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon 11AM \\u2013 6 PM<br \\/>Wed 9 AM \\u2013 4 PM<br \\/>Fri 9 AM \\u2013 4<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07f2317\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1d62fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 min - $35<br \\/>60 min - $60<br \\/>90 min - $85<br \\/>120 min - $110<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(885,215,'_elementor_version','0.4'),(1295,306,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p><p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>MON, TUE, FRI 7 AM \\u2013 1:30 PM<br \\/>THURS 7 AM \\u2013 5 PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"More About Massage\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Ruby Leota\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ruby Leota\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the West coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9, participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a8c10a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc7c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d6b712c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment Now!\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"986d286\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now \",\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-phone\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(887,216,'_wp_page_template','page-templates/page_fullwidth.php'),(888,216,'_elementor_edit_mode','builder'),(889,216,'_elementor_template_type','post'),(890,216,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c971cea\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44cc083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"326200a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"dc44666\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5711e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f441e8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a552203\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"07f2317\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dacfca1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2888afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage Hours\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon 11AM \\u2013 6 PM<br \\/>Wed 9 AM \\u2013 4 PM<br \\/>Fri 9 AM \\u2013 4<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ce5843\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e7c55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 min - $35<br \\/>60 min - $60<br \\/>90 min - $85<br \\/>120 min - $110<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(891,216,'_elementor_version','0.4'),(892,216,'_elementor_css','a:4:{s:4:\"time\";i:1549203611;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(924,226,'_wp_page_template','page-templates/page_fullwidth.php'),(895,217,'_wp_page_template','page-templates/page_fullwidth.php'),(896,217,'_elementor_edit_mode','builder'),(897,217,'_elementor_template_type','post'),(898,217,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c971cea\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44cc083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"326200a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"dc44666\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5711e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f441e8a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a552203\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"07f2317\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dacfca1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2888afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e7c55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 min - $35<br \\/>60 min - $60<br \\/>90 min - $85<br \\/>120 min - $110<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ce5843\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage Hours\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon 11AM \\u2013 6 PM<br \\/>Wed 9 AM \\u2013 4 PM<br \\/>Fri 9 AM \\u2013 4<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(899,217,'_elementor_version','0.4'),(900,217,'_elementor_css','a:4:{s:4:\"time\";i:1549203738;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(917,222,'_wp_attached_file','2019/02/IntakeFormPDF-2.pdf'),(903,14,'_elementor_template_type','post'),(905,139,'_elementor_template_type','post'),(941,235,'_wp_page_template','page-templates/page_fullwidth.php'),(907,218,'_wp_attached_file','2019/02/IntakeFormPDF.pdf'),(908,219,'_wp_attached_file','2019/02/IntakeFormPDF-1.pdf'),(944,235,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(942,235,'_elementor_edit_mode','builder'),(943,235,'_elementor_template_type','post'),(1116,269,'_wp_page_template','page-templates/page_fullwidth.php'),(940,139,'_elementor_css','a:5:{s:4:\"time\";i:1549887777;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(922,225,'_elementor_version','0.4'),(923,225,'_elementor_css','a:4:{s:4:\"time\";i:1549203759;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(925,226,'_elementor_edit_mode','builder'),(926,226,'_elementor_template_type','post'),(927,226,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(928,226,'_elementor_version','0.4'),(947,236,'_wp_page_template','page-templates/page_fullwidth.php'),(948,236,'_elementor_edit_mode','builder'),(930,14,'_elementor_edit_mode','builder'),(931,14,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p><p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>MON, TUE, FRI 7 AM \\u2013 1:30 PM<br \\/>THURS 7 AM \\u2013 5 PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"More About Massage\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Ruby Leota\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ruby Leota\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the West coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9, participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a8c10a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc7c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d6b712c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment Now!\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"986d286\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now \",\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-phone\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(932,227,'_wp_page_template','page-templates/page_fullwidth.php'),(933,227,'_elementor_template_type','post'),(934,227,'_elementor_css','a:5:{s:4:\"time\";i:1549879101;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(935,227,'_elementor_edit_mode','builder'),(936,227,'_elementor_data','[{\"id\":\"3415451d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2c7c62f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50ab222a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:pdfemb\\/pdf-embedder-viewer {\\\"pdfID\\\":222,\\\"url\\\":\\\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/IntakeFormPDF-2.pdf\\\"} -->\\n<p class=\\\"wp-block-pdfemb-pdf-embedder-viewer\\\"><\\/p>\\n<!-- \\/wp:pdfemb\\/pdf-embedder-viewer -->\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0a9148\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<\\/strong><br \\/><strong>and bring it to your first appointment along with your insurance card. <\\/strong><\\/p>\\n<p><strong>We are currently enrolled in most major health insurance companies including Blue Cross Blue Shield<\\/strong><br \\/><strong>PPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at<\\/strong><br \\/><strong>563-289-3242.<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(937,14,'_elementor_version','0.4'),(945,235,'_elementor_version','0.4'),(946,235,'_elementor_css','a:4:{s:4:\"time\";i:1549886864;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(949,236,'_elementor_template_type','post'),(950,236,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br \\/>and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br \\/>trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(951,236,'_elementor_version','0.4'),(1035,252,'_wp_page_template','page-templates/page_fullwidth.php'),(953,237,'_wp_page_template','page-templates/page_fullwidth.php'),(954,237,'_elementor_edit_mode','builder'),(955,237,'_elementor_template_type','post'),(956,237,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(957,237,'_elementor_version','0.4'),(958,237,'_elementor_css','a:4:{s:4:\"time\";i:1549888213;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(968,239,'_elementor_edit_mode','builder'),(969,239,'_elementor_data','[{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients.<br \\/>He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09c0b84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b75f76\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c57e86f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764edfb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(966,239,'_wp_page_template','page-templates/page_fullwidth.php'),(967,239,'_elementor_template_type','post'),(970,239,'_elementor_version','0.4'),(979,241,'_elementor_data','[{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. \\n\\nOutside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c57e86f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764edfb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(986,243,'_wp_page_template','page-templates/page_fullwidth.php'),(981,242,'_wp_page_template','page-templates/page_fullwidth.php'),(976,241,'_wp_page_template','page-templates/page_fullwidth.php'),(977,241,'_elementor_template_type','post'),(978,241,'_elementor_edit_mode','builder'),(980,241,'_elementor_version','0.4'),(982,242,'_elementor_template_type','post'),(983,242,'_elementor_edit_mode','builder'),(984,242,'_elementor_data','[{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c57e86f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764edfb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(985,242,'_elementor_version','0.4'),(987,243,'_elementor_template_type','post'),(988,243,'_elementor_edit_mode','builder'),(989,243,'_elementor_data','[{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(990,243,'_elementor_version','0.4'),(996,245,'_wp_page_template','page-templates/page_fullwidth.php'),(997,245,'_elementor_template_type','post'),(998,245,'_elementor_edit_mode','builder'),(999,245,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1000,245,'_elementor_version','0.4'),(1002,246,'_wp_page_template','page-templates/page_fullwidth.php'),(1003,246,'_elementor_template_type','post'),(1004,246,'_elementor_edit_mode','builder'),(1005,246,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1006,246,'_elementor_version','0.4'),(1007,246,'_elementor_css','a:4:{s:4:\"time\";i:1549890399;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1008,247,'_wp_page_template','page-templates/page_fullwidth.php'),(1009,247,'_elementor_template_type','post'),(1010,247,'_elementor_edit_mode','builder'),(1011,247,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1012,247,'_elementor_version','0.4'),(1013,247,'_elementor_css','a:4:{s:4:\"time\";i:1549890399;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1020,249,'_elementor_template_type','post'),(1021,249,'_elementor_edit_mode','builder'),(1022,249,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more?\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1019,249,'_wp_page_template','page-templates/page_fullwidth.php'),(1023,249,'_elementor_version','0.4'),(1293,306,'_elementor_template_type','post'),(1294,306,'_elementor_edit_mode','builder'),(1024,250,'_wp_page_template','page-templates/page_fullwidth.php'),(1025,250,'_elementor_template_type','post'),(1026,250,'_elementor_edit_mode','builder'),(1027,250,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more?\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Ruby Leota\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ruby Leota\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a8c10a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc7c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d6b712c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment Now!\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"986d286\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1028,250,'_elementor_version','0.4'),(1029,251,'_wp_page_template','page-templates/page_fullwidth.php'),(1030,251,'_elementor_edit_mode','builder'),(1031,251,'_elementor_template_type','post'),(1032,251,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1033,251,'_elementor_version','0.4'),(1034,251,'_elementor_css','a:4:{s:4:\"time\";i:1549889046;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1036,252,'_elementor_edit_mode','builder'),(1037,252,'_elementor_template_type','post'),(1038,252,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8796c6b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"8b93740\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_secondary_color\":\"#000000\",\"icon_size\":{\"unit\":\"px\",\"size\":16},\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1039,252,'_elementor_version','0.4'),(1103,263,'_wp_page_template','page-templates/page_fullwidth.php'),(1104,263,'_elementor_edit_mode','builder'),(1050,254,'_elementor_version','0.4'),(1049,254,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br \\/>and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1046,254,'_wp_page_template','page-templates/page_fullwidth.php'),(1047,254,'_elementor_edit_mode','builder'),(1048,254,'_elementor_template_type','post'),(1059,256,'_wp_page_template','page-templates/page_fullwidth.php'),(1060,256,'_elementor_edit_mode','builder'),(1061,256,'_elementor_template_type','post'),(1052,255,'_wp_page_template','page-templates/page_fullwidth.php'),(1053,255,'_elementor_edit_mode','builder'),(1054,255,'_elementor_template_type','post'),(1055,255,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e544be6\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9617930\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1056,255,'_elementor_version','0.4'),(1057,255,'_elementor_css','a:4:{s:4:\"time\";i:1549891821;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1062,256,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br \\/>Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br \\/>that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br \\/>board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br \\/>Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1063,256,'_elementor_version','0.4'),(1064,256,'_elementor_css','a:4:{s:4:\"time\";i:1549892168;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:4;s:7:\"Poppins\";i:8;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1065,257,'_wp_page_template','page-templates/page_fullwidth.php'),(1066,257,'_elementor_edit_mode','builder'),(1067,257,'_elementor_template_type','post'),(1068,257,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1069,257,'_elementor_version','0.4'),(1077,259,'_wp_page_template','page-templates/page_fullwidth.php'),(1071,258,'_wp_page_template','page-templates/page_fullwidth.php'),(1072,258,'_elementor_edit_mode','builder'),(1073,258,'_elementor_template_type','post'),(1074,258,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1075,258,'_elementor_version','0.4'),(1076,258,'_elementor_css','a:4:{s:4:\"time\";i:1549893098;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1078,259,'_elementor_edit_mode','builder'),(1079,259,'_elementor_template_type','post'),(1080,259,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-33\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1081,259,'_elementor_version','0.4'),(1083,260,'_wp_page_template','page-templates/page_fullwidth.php'),(1084,260,'_elementor_edit_mode','builder'),(1085,260,'_elementor_template_type','post'),(1086,260,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1087,260,'_elementor_version','0.4'),(1088,260,'_elementor_css','a:4:{s:4:\"time\";i:1549893402;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1090,261,'_wp_page_template','page-templates/page_fullwidth.php'),(1091,261,'_elementor_edit_mode','builder'),(1092,261,'_elementor_template_type','post'),(1093,261,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1094,261,'_elementor_version','0.4'),(1095,261,'_elementor_css','a:4:{s:4:\"time\";i:1549893670;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1292,306,'_wp_page_template','page-templates/page_fullwidth.php'),(1097,262,'_wp_page_template','page-templates/page_fullwidth.php'),(1098,262,'_elementor_template_type','post'),(1099,262,'_elementor_edit_mode','builder'),(1100,262,'_elementor_data','[{\"id\":\"80b942b\",\"elType\":\"section\",\"settings\":{\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f3c9ac8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"252b458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet the Team\",\"size\":\"xxl\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"747ffd1\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d206210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"af1b393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bea707\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c7ac88c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney Kautz \",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eb8e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women\\u2019s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.<\\/p>\\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5f0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d9aabf\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36b8383\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e76e7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0062dda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\",\"id\":155},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Dr. Ron Shepherd, D.C. DACBSP\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"06d98bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ea3f03d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Ron Shepherd\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c6abc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br \\/>Mon, Tue, Fri 7 AM \\u2013 1:30<br \\/>THURS 7 AM \\u2013 5 PM.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e55e497\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74df477\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21b4496\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4838823\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cae9e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"254faf4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"554baf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more?\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3189d6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cc2342\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c062855\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1751cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\",\"id\":154},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Ruby Leota\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71e38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d53b1f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ruby Leota\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ce17f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a8c10a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc7c19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d6b712c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment Now!\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"986d286\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-phone\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1101,262,'_elementor_version','0.4'),(1102,262,'_elementor_css','a:4:{s:4:\"time\";i:1549891259;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1105,263,'_elementor_template_type','post');
INSERT INTO `wp_postmeta` VALUES (1106,263,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1107,263,'_elementor_version','0.4'),(1108,263,'_elementor_css','a:4:{s:4:\"time\";i:1549893780;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1109,264,'_wp_page_template','page-templates/page_fullwidth.php'),(1110,264,'_elementor_edit_mode','builder'),(1111,264,'_elementor_template_type','post'),(1112,264,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1113,264,'_elementor_version','0.4'),(1114,264,'_elementor_css','a:4:{s:4:\"time\";i:1549893780;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1117,269,'_elementor_edit_mode','builder'),(1118,269,'_elementor_template_type','post'),(1119,269,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1120,269,'_elementor_version','0.4'),(1121,269,'_elementor_css','a:4:{s:4:\"time\";i:1549894316;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1122,270,'_wp_page_template','page-templates/page_fullwidth.php'),(1123,270,'_elementor_edit_mode','builder'),(1124,270,'_elementor_template_type','post'),(1125,270,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1126,270,'_elementor_version','0.4'),(1127,271,'_wp_page_template','page-templates/page_fullwidth.php'),(1128,271,'_elementor_edit_mode','builder'),(1129,271,'_elementor_template_type','post'),(1130,271,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1131,271,'_elementor_version','0.4'),(1230,139,'_yoast_wpseo_content_score','30'),(1231,139,'_elementor_edit_mode','builder'),(1154,279,'_wp_page_template','page-templates/page_fullwidth.php'),(1155,279,'_elementor_edit_mode','builder'),(1156,279,'_elementor_template_type','post'),(1157,279,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1158,279,'_elementor_version','0.4'),(1159,280,'_wp_page_template','page-templates/page_fullwidth.php'),(1160,280,'_elementor_edit_mode','builder'),(1161,280,'_elementor_template_type','post'),(1162,280,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1163,280,'_elementor_version','0.4'),(1164,281,'_wp_page_template','page-templates/page_fullwidth.php'),(1165,281,'_elementor_edit_mode','builder'),(1166,281,'_elementor_template_type','post'),(1167,281,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1168,281,'_elementor_version','0.4'),(1169,282,'_wp_page_template','page-templates/page_fullwidth.php'),(1170,282,'_elementor_edit_mode','builder'),(1171,282,'_elementor_template_type','post'),(1172,282,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1173,282,'_elementor_version','0.4'),(1174,283,'_wp_page_template','page-templates/page_fullwidth.php'),(1175,283,'_elementor_edit_mode','builder'),(1176,283,'_elementor_template_type','post'),(1177,283,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1178,283,'_elementor_version','0.4'),(1180,284,'_wp_page_template','page-templates/page_fullwidth.php'),(1181,284,'_elementor_edit_mode','builder'),(1182,284,'_elementor_template_type','post'),(1183,284,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1184,284,'_elementor_version','0.4'),(1185,284,'_elementor_css','a:4:{s:4:\"time\";i:1549907639;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1259,301,'_wp_page_template','page-templates/page_fullwidth.php'),(1260,301,'_elementor_edit_mode','builder'),(1238,298,'_wp_page_template','page-templates/page_fullwidth.php'),(1239,298,'_elementor_edit_mode','builder'),(1240,298,'_elementor_template_type','post'),(1241,298,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"CALL NOW\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/new-patients\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click For More Info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1224,296,'_wp_page_template','page-templates/page_fullwidth.php'),(1225,296,'_elementor_edit_mode','builder'),(1195,289,'_wp_page_template','page-templates/page_fullwidth.php'),(1196,289,'_elementor_edit_mode','builder'),(1197,289,'_elementor_template_type','post'),(1198,289,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1199,289,'_elementor_version','0.4'),(1200,289,'_elementor_css','a:4:{s:4:\"time\";i:1553899423;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1201,12,'_oembed_7c8a386e950722ec6512928354e8ffab','<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/kOprDx_NUnM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1202,12,'_oembed_time_7c8a386e950722ec6512928354e8ffab','1553899424'),(1204,290,'_edit_lock','1553899763:1'),(1205,290,'_wp_trash_meta_status','publish'),(1206,290,'_wp_trash_meta_time','1553899771'),(1207,291,'_wp_trash_meta_status','publish'),(1208,291,'_wp_trash_meta_time','1553899972'),(1209,292,'_wp_page_template','page-templates/page_fullwidth.php'),(1210,292,'_elementor_edit_mode','builder'),(1211,292,'_elementor_template_type','post'),(1212,292,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"468ac47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Click here\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1213,292,'_elementor_version','0.4'),(1214,292,'_elementor_css','a:4:{s:4:\"time\";i:1553899692;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1215,12,'_edit_last','1'),(1216,12,'_yoast_wpseo_content_score','90'),(1228,296,'_elementor_version','0.4'),(1229,296,'_elementor_css','a:4:{s:4:\"time\";i:1553900344;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1247,299,'_elementor_edit_mode','builder'),(1226,296,'_elementor_template_type','post'),(1227,296,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"CALL NOW\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/new-patients\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4df73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You can put whatever tagline you want here<\\/p>\",\"align\":\"center\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Other Conditions\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1242,298,'_elementor_version','0.4'),(1243,298,'_elementor_css','a:4:{s:4:\"time\";i:1553900625;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1244,136,'_oembed_42410b44957cf766976d86e6cb623026','<iframe width=\"1170\" height=\"878\" src=\"https://www.youtube.com/embed/7KRQSel4gh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1245,136,'_oembed_time_42410b44957cf766976d86e6cb623026','1553901461'),(1246,299,'_wp_page_template','page-templates/page_fullwidth.php'),(1248,299,'_elementor_template_type','post'),(1249,299,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Services\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Click here\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"NSSP Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1250,299,'_elementor_version','0.4'),(1251,299,'_elementor_css','a:4:{s:4:\"time\";i:1549946039;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1252,136,'_yoast_wpseo_content_score','60'),(1270,302,'_elementor_version','0.4'),(1268,302,'_elementor_template_type','post'),(1269,302,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Treatments\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call Now\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1266,302,'_wp_page_template','page-templates/page_fullwidth.php'),(1267,302,'_elementor_edit_mode','builder'),(1261,301,'_elementor_template_type','post'),(1262,301,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"CALL NOW\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/new-patients\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#eaa646\",\"border_border\":\"solid\",\"border_color\":\"#eaa646\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click For More Info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"warning\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1263,301,'_elementor_version','0.4'),(1344,12,'_elementor_css','a:4:{s:4:\"time\";i:1554068691;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1272,303,'_wp_page_template','page-templates/page_fullwidth.php'),(1273,303,'_elementor_edit_mode','builder'),(1271,302,'_elementor_css','a:4:{s:4:\"time\";i:1553901692;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1274,303,'_elementor_template_type','post'),(1275,303,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Treatments\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call Now\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1276,303,'_elementor_version','0.4'),(1326,136,'_elementor_css','a:4:{s:4:\"time\";i:1553955053;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1289,305,'_elementor_data','[{\"id\":\"c3db125\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-49\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67d613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a6bc018\",\"elType\":\"widget\",\"settings\":{\"title\":\"Message Therapy\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6f162d\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3799673\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"769173c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/treatment-1327811_1920.jpg\",\"id\":213},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"49aa281\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c925f7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.<\\/p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa67eda\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ef601ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5d1ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jade Schroeder, LMT\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72da0f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br \\/>received her training from the Institute of Therapeutic Massage and Wellness in<br \\/>Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br \\/>and sports massage with the once Quad Cities Mallards. She is very passionate<br \\/>about the total and balanced health and wellness of the complete mind, body,<br \\/>and soul structure. Jade enjoys learning all she can and applying her knowledge<br \\/>and heart to her practice to better serve her clients.\\u00a0<\\/p><p>Outside of work Jade loves spending time with her four children and extended<br \\/>family. She loves the outdoors, playing sports, being active and reading.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbad41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Call right now for your appointment.\",\"size\":\"medium\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb81b2\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"Call Now\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0735d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a253f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\",\"id\":153},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"Jade Schroeder, LMT\\u200b\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16be7b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f9da61e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"dacfca1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2888afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e7c55c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da2f8b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>30 min - $35<br \\/>60 min - $60<br \\/>90 min - $85<br \\/>120 min - $110<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4ce5843\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c8f2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Massage Hours\",\"size\":\"xl\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef4e8f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mon 11AM \\u2013 6 PM<br \\/>Wed 9 AM \\u2013 4 PM<br \\/>Fri 9 AM \\u2013 4<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"722ea49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1288,305,'_elementor_template_type','post'),(1286,305,'_wp_page_template','page-templates/page_fullwidth.php'),(1287,305,'_elementor_edit_mode','builder'),(1290,305,'_elementor_version','0.4'),(1291,305,'_elementor_css','a:4:{s:4:\"time\";i:1553902140;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1296,306,'_elementor_version','0.4'),(1297,306,'_elementor_css','a:4:{s:4:\"time\";i:1549945829;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1302,307,'_elementor_version','0.4'),(1303,307,'_elementor_css','a:4:{s:4:\"time\";i:1548683196;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1305,308,'_elementor_edit_mode','builder'),(1306,308,'_elementor_template_type','post'),(1307,308,'_wp_page_template','page-templates/page_fullwidth.php'),(1308,308,'_elementor_data','[{\"id\":\"0807223\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"147ec71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed9b8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"size\":\"xxl\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eadfa1c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":600},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"215f2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a053809\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b079eed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"5852166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"501d536\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Kautz\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"92108fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5741424\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe233e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Shepherd\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"600\",\"header_size\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c617ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 7AM-1:30PM<br \\/>TUE: 7AM-1:30PM<br \\/>THU: 7AM-5:00pm<br \\/>FRI: 7AM-1:30PM<br \\/><br \\/><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43620c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"align\":\"center\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b35f57c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"9c86cde\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-instagram\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"7bcbd9e\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#bababa\",\"icon_size\":{\"unit\":\"px\",\"size\":15},\"icon_padding\":{\"unit\":\"em\",\"size\":1},\"icon_spacing\":{\"unit\":\"px\",\"size\":15},\"hover_primary_color\":\"rgba(0,206,27,0.13)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":12},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":10},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"56315fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"148cef4f\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":15},\"height\":{\"unit\":\"px\",\"size\":431}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1309,308,'_elementor_version','0.4'),(1310,308,'_elementor_css','a:4:{s:4:\"time\";i:1553903004;s:5:\"fonts\";a:1:{i:0;s:5:\"Arial\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1312,14,'_elementor_css','a:4:{s:4:\"time\";i:1553903143;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:9:\"Open Sans\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1313,18,'_elementor_css','a:4:{s:4:\"time\";i:1553903158;s:5:\"fonts\";a:1:{i:0;s:5:\"Arial\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1314,309,'_wp_page_template','page-templates/page_fullwidth.php'),(1315,309,'_elementor_edit_mode','builder'),(1316,309,'_elementor_template_type','post'),(1317,309,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Treatments\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9d8a82\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"657abf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29f7308\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74932fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8fe0aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34c324e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call Now\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1318,309,'_elementor_version','0.4'),(1319,309,'_elementor_css','a:4:{s:4:\"time\";i:1553901894;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1320,310,'_wp_page_template','page-templates/page_fullwidth.php'),(1321,310,'_elementor_edit_mode','builder'),(1322,310,'_elementor_template_type','post'),(1323,310,'_elementor_data','[{\"id\":\"154d6e1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":356},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/human-skeleton-163715_1280.jpg\",\"id\":42},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.48},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"602e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"134414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions and Treatments\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69329af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\\ninjuries, compressed and bulging discs, and trauma cases.\",\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"42\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcc663\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2175a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a2f64f2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703412_1920.jpg\",\"id\":41}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"80b6eed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e3ba72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Conditions that are effectively treated in our office include:\",\"size\":\"large\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2bdf93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bulging and compressed discs<br \\/>Sciatica<br \\/>Migraines<br \\/>Plantar Fasciitis<br \\/>Tennis Elbow<br \\/>Carpal Tunnel Syndrome<br \\/>Bursitis of shoulder, knee, or hip<br \\/>Common neck and back pain<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4509a90\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":440},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":388},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":229},\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_image_tablet\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/02\\/computer-3343887_1920.jpg\",\"id\":278},\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"layout\":\"full_width\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.13},\"css_filters_css_filter\":\"custom\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.4},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3923a55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5667d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book your appointment today\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38c3a20\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"Call Now\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dab755b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10cee5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08e42c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatments used to effectively treat conditions include:\",\"size\":\"large\",\"_padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ce4c32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Flexion-Distraction Therapy<br \\/>Therapeutic Ultrasound<br \\/>Electric Stimulation<br \\/>Myofascial Release<br \\/>Massage Therapy<br \\/>Home exercise program<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2c9252\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c89016\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/body-2703405_1920.jpg\",\"id\":40}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b5eec1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1e4f466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dea9bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal Decompression Therapy\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cbff20\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed9a887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"014ba78\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br \\/>discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"849898f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"823e65f\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1324,310,'_elementor_version','0.4'),(1325,310,'_elementor_css','a:4:{s:4:\"time\";i:1553901894;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1327,311,'_wp_attached_file','2019/03/KAUTZ.png'),(1328,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3500;s:6:\"height\";i:1584;s:4:\"file\";s:17:\"2019/03/KAUTZ.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"KAUTZ-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"KAUTZ-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"KAUTZ-768x348.png\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"KAUTZ-1024x463.png\";s:5:\"width\";i:1024;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:17:\"KAUTZ-830x376.png\";s:5:\"width\";i:830;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"KAUTZ-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"KAUTZ-230x104.png\";s:5:\"width\";i:230;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"KAUTZ-350x158.png\";s:5:\"width\";i:350;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"KAUTZ-480x217.png\";s:5:\"width\";i:480;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sow-carousel-default\";a:4:{s:4:\"file\";s:17:\"KAUTZ-272x182.png\";s:5:\"width\";i:272;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(1329,312,'_edit_lock','1554068020:1'),(1330,312,'_wp_trash_meta_status','publish'),(1331,312,'_wp_trash_meta_time','1554068066'),(1332,314,'_edit_lock','1554068200:1'),(1333,314,'_wp_trash_meta_status','publish'),(1334,314,'_wp_trash_meta_time','1554068254'),(1335,316,'_edit_lock','1554068320:1'),(1336,316,'_wp_trash_meta_status','publish'),(1337,316,'_wp_trash_meta_time','1554068363'),(1338,318,'_wp_page_template','page-templates/page_fullwidth.php'),(1339,318,'_elementor_edit_mode','builder'),(1340,318,'_elementor_template_type','post'),(1341,318,'_elementor_data','[{\"id\":\"83af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-53\",\"right\":0,\"bottom\":\"-53\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b134e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_background\":\"classic\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3a1df1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kautz Chiropractic\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee72547\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24813cb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"info\",\"text\":\"CALL NOW\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"03f5f46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6e68d3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\",\"id\":152},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"align\":\"center\",\"caption_source\":\"custom\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"DR. COURTNEY KAUTZ, D.C. CCSP\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc17a07\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"layout\":\"full_width\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":162},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":93,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/landscape-view-of-the-curving-mississippi-river.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.2},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"43\",\"right\":0,\"bottom\":\"-31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219d614\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"69\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"111\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"-44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0414a5\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"New Patients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"838b6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ad44f1\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"**PDF for New Patient Paperwork\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/new-patients\\/\"},\"align_mobile\":\"center\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"size\":\"lg\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"344ee81\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"88\",\"right\":0,\"bottom\":\"-23\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1b264\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76aa453\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=kOprDx_NUnM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aa04e87\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2d593\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cd1d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f55a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e164d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0264b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":152,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/court-circle.jpg\"},\"title_text\":\"Dr. Courtney Kautz\",\"description_text\":\"Dr. Courtney Kautz, D.C. CCSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"500\",\"height\":\"500\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20328ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br \\/>her interest in chiropractic care and led to her future as a chiropractic sports physician.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1a59504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0691f80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/ron-web.jpg\"},\"title_text\":\"Dr. Ron Shepherd\",\"description_text\":\"Dr. Ron Shepherd, D.C. DACBSP\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6ba178e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c2fdf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"0\",\"bottom\":\"94\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"91f7725\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69a6876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":153,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-3.jpg\"},\"title_text\":\"Jade Schroeder\",\"description_text\":\"Massage Therepist  \",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"54a2575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"eace206\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#e5e5e5\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b85045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":154,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/pic-4.jpg\"},\"title_text\":\"Ruby Leota\",\"description_text\":\"receptionist\",\"image_space\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":26},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":35},\"title_typography_font_weight\":\"900\",\"description_color\":\"#bfbfbf\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.7},\"_margin\":{\"unit\":\"px\",\"top\":\"-65\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"grow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"400\",\"height\":\"400\"},\"image_size_mobile\":{\"unit\":\"%\",\"size\":60},\"link\":{\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9599fa6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fianc\\u00e9 participating in bible study, and enjoying time with her daughter and puppies<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"align\":\"center\",\"text_color\":\"#bfbfbf\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19efbb2\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":431},\"column_position\":\"bottom\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":192,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/7.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"150\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"stretch_section\":\"section-stretched\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14d2303\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"text_align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"00\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e6a6a8\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Message Therapy\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align_mobile\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"65\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":50},\"typography_font_family\":\"Arial\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-3\"},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b910c\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.<\\/p>\",\"section_style\":\"\",\"align_mobile\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"19\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_family\":\"Open Sans\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58b30a5\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click now for more info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/massage-therapy\\/\"},\"align_mobile\":\"center\",\"icon\":\"fa fa-angle-right\",\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"background_color\":\"#6ec1e4\",\"border_border\":\"solid\",\"border_color\":\"#6ec1e4\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"rgba(97,206,112,0.37)\",\"button_hover_border_color\":\"#61ce70\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"-3\",\"bottom\":\"-3\",\"left\":\"-3\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c44ae48\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":486},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"_section_responsive\":\"\",\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\",\"responsive_description\":\"\",\"background_overlay_section\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1600},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc1daeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"38.772\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-8\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bb2d75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Spinal\\nDecompression\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-50\",\"bottom\":\"0\",\"left\":\"-50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1853e89\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Decompression can be used on the neck or low back regions as a\\u00a0 safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.\\u00a0<\\/p>\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_family\":\"Lora\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"0\",\"left\":\"-25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1a617\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click For More Info\",\"link\":{\"is_external\":\"\",\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/conditions\\/\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.7},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"40\",\"bottom\":\"15\",\"left\":\"40\",\"isLinked\":false},\"section_hover\":\"\",\"button_background_hover_color\":\"#000000\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"button_type\":\"info\",\"_padding\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"d8a581d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"61.228\",\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_sm\":\"default\",\"screen_sm_width\":\"100\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e43f7e2\",\"elType\":\"widget\",\"settings\":{\"section_video\":\"\",\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=kB4U67tiQLA\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/170933924\",\"hosted_link\":\"\",\"heading_youtube\":\"\",\"yt_autoplay\":\"no\",\"yt_rel\":\"no\",\"yt_controls\":\"yes\",\"yt_showinfo\":\"no\",\"vimeo_autoplay\":\"no\",\"vimeo_loop\":\"no\",\"vimeo_color\":\"\",\"section_image_overlay\":\"\",\"show_image_overlay\":\"no\",\"image_overlay\":{\"id\":107,\"url\":\"http:\\/\\/kautzchiro.journeysoup.com\\/wp-content\\/uploads\\/2019\\/01\\/placeholder.png\"},\"_section_style\":\"\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow_type\":\"outset\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":\"50\",\"spread\":6,\"inset\":\"\",\"color\":\"rgba(163,163,163,0.56)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"autoplay\":\"no\",\"showinfo\":\"no\",\"rel\":\"no\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=7KRQSel4gh8&fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-12\",\"right\":\"-33\",\"bottom\":\"-33\",\"left\":\"-33\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf2a195\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":700},\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"34122ae3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47c2d1c1\",\"elType\":\"widget\",\"settings\":{\"address\":\"700 Eagle Ridge Rd, Le Claire, IA 52753\",\"zoom\":{\"unit\":\"px\",\"size\":14},\"height\":{\"unit\":\"px\",\"size\":492},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5ddac467\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"214a8e92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65},\"typography_font_weight\":\"900\",\"align\":\"left\",\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f9cc8fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b2153d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"7d2364b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Location\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78987305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>700 Eagle Ridge Rd, Le Claire, IA 52753<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"59ac9f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"344eb49e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"638f9758\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Phone : 563-289-3242<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40d54d9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>kautzchiropractic@gmail.com<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"_margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9090718\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1804486\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"77bc219f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Hours\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b39b01b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>MON: 8AM-7:00PM<br \\/>TUE: 8AM-7:00PM<br \\/>WED: 8AM-7:00PM<br \\/>FRI: 8AM-5:00PM<br \\/>SAT: 8AM-NOON<\\/p>\",\"text_color\":\"#bfbfbf\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"300\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"57e29868\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"65b86c91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"header_size\":\"div\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e34d0cd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"2d0da0c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"914746e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"8a28a95\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-youtube\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"d138417\"}],\"shape\":\"square\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#f4f4f4\",\"icon_secondary_color\":\"#969696\",\"icon_size\":{\"unit\":\"px\",\"size\":25},\"hover_primary_color\":\"rgba(0,206,27,0.25)\",\"hover_secondary_color\":\"#00ce1b\",\"hover_animation\":\"grow\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":16},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1342,318,'_elementor_version','0.4'),(1343,318,'_elementor_css','a:4:{s:4:\"time\";i:1553901633;s:5:\"fonts\";a:4:{i:0;s:5:\"Arial\";i:1;s:9:\"Open Sans\";i:3;s:7:\"Poppins\";i:7;s:4:\"Lora\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1345,319,'_edit_lock','1554068871:1'),(1346,319,'_wp_trash_meta_status','publish'),(1347,319,'_wp_trash_meta_time','1554068881'),(1348,320,'_wp_trash_meta_status','publish'),(1349,320,'_wp_trash_meta_time','1554068909'),(1350,321,'_edit_lock','1554069004:1'),(1351,321,'_wp_trash_meta_status','publish'),(1352,321,'_wp_trash_meta_time','1554069015'),(1353,322,'_wp_trash_meta_status','publish'),(1354,322,'_wp_trash_meta_time','1554069029'),(1355,324,'_wp_trash_meta_status','publish'),(1356,324,'_wp_trash_meta_time','1554069088'),(1357,326,'_wp_trash_meta_status','publish'),(1358,326,'_wp_trash_meta_time','1554069812');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=327 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (21,1,'2019-01-16 09:57:20','2019-01-16 09:57:20','','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-16 09:57:20','2019-01-16 09:57:20','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(27,1,'2019-01-16 10:00:22','2019-01-16 10:00:22',' ','','','publish','closed','closed','','27','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=27',1,'nav_menu_item','',0),(28,1,'2019-01-16 10:00:22','2019-01-16 10:00:22',' ','','','publish','closed','closed','','28','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=28',6,'nav_menu_item','',0),(139,1,'2019-01-27 13:54:49','2019-01-27 13:54:49','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px -40px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"-150px\",\"bottom_margin\":\"\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','publish','closed','closed','','new-patients','','','2019-03-29 22:59:55','2019-03-29 22:59:55','',0,'http://kautzchiro.journeysoup.com/?page_id=139',0,'page','',0),(30,1,'2019-01-16 10:00:22','2019-01-16 10:00:22',' ','','','publish','closed','closed','','30','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=30',5,'nav_menu_item','',0),(291,1,'2019-03-29 22:52:52','2019-03-29 22:52:52','{\n    \"sydney::slider_subtitle_3\": {\n        \"value\": \"\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-29 22:52:52\"\n    }\n}','','','trash','closed','closed','','c920255a-0615-43ac-80d0-74e1de1a2d61','','','2019-03-29 22:52:52','2019-03-29 22:52:52','',0,'http://kautzchiro.journeysoup.com/c920255a-0615-43ac-80d0-74e1de1a2d61/',0,'customize_changeset','',0),(34,1,'2019-01-16 10:48:17','2019-01-16 10:48:17','','Hey','','publish','open','open','','hey','','','2019-01-16 10:48:45','2019-01-16 10:48:45','',0,'http://kautzchiro.journeysoup.com/?p=34',0,'post','',0),(35,1,'2019-01-16 10:48:17','2019-01-16 10:48:17','','Hey','','inherit','closed','closed','','34-revision-v1','','','2019-01-16 10:48:17','2019-01-16 10:48:17','',34,'http://kautzchiro.journeysoup.com/34-revision-v1/',0,'revision','',0),(37,1,'2019-01-16 10:56:06','2019-01-16 10:56:06','','DSC02337','','inherit','open','closed','','dsc02337','','','2019-01-16 10:56:06','2019-01-16 10:56:06','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/DSC02337.jpg',0,'attachment','image/jpeg',0),(40,1,'2019-01-16 12:31:50','2019-01-16 12:31:50','','body-2703405_1920','','inherit','open','closed','','body-2703405_1920','','','2019-01-16 12:31:50','2019-01-16 12:31:50','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920.jpg',0,'attachment','image/jpeg',0),(41,1,'2019-01-16 12:31:55','2019-01-16 12:31:55','','body-2703412_1920','','inherit','open','closed','','body-2703412_1920','','','2019-01-16 12:31:55','2019-01-16 12:31:55','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920.jpg',0,'attachment','image/jpeg',0),(42,1,'2019-01-16 12:31:59','2019-01-16 12:31:59','','human-skeleton-163715_1280','','inherit','open','closed','','human-skeleton-163715_1280','','','2019-01-16 12:31:59','2019-01-16 12:31:59','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg',0,'attachment','image/jpeg',0),(44,1,'2019-01-21 09:54:34','2019-01-21 09:54:34','','Kautz Courtney 2E','','inherit','open','closed','','kautz-courtney-2e','','','2019-01-21 09:54:34','2019-01-21 09:54:34','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg',0,'attachment','image/jpeg',0),(45,1,'2019-01-21 09:54:37','2019-01-21 09:54:37','','Kautz Jade 2E','','inherit','open','closed','','kautz-jade-2e','','','2019-01-21 09:54:37','2019-01-21 09:54:37','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg',0,'attachment','image/jpeg',0),(46,1,'2019-01-21 09:54:42','2019-01-21 09:54:42','','Kautz Ruby 2E','','inherit','open','closed','','kautz-ruby-2e','','','2019-01-21 09:54:42','2019-01-21 09:54:42','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg',0,'attachment','image/jpeg',0),(47,1,'2019-01-21 09:54:45','2019-01-21 09:54:45','','Kautz Sheperd Ron 1E','','inherit','open','closed','','kautz-sheperd-ron-1e','','','2019-01-21 09:54:45','2019-01-21 09:54:45','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg',0,'attachment','image/jpeg',0),(48,1,'2019-01-21 09:54:51','2019-01-21 09:54:51','','Kautz Shepherd Group 1E','','inherit','open','closed','','kautz-shepherd-group-1e','','','2019-01-21 09:54:51','2019-01-21 09:54:51','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Shepherd-Group-1E.jpg',0,'attachment','image/jpeg',0),(51,1,'2019-01-21 10:10:23','2019-01-21 10:10:23','','1','','inherit','open','closed','','1','','','2019-01-25 11:45:12','2019-01-25 11:45:12','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/1.jpg',0,'attachment','image/jpeg',0),(52,1,'2019-01-21 10:11:19','2019-01-21 10:11:19','','2','','inherit','open','closed','','2','','','2019-01-21 10:11:19','2019-01-21 10:11:19','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/2.jpg',0,'attachment','image/jpeg',0),(53,1,'2019-01-21 10:12:29','2019-01-21 10:12:29','','3','','inherit','open','closed','','3','','','2019-01-21 10:12:29','2019-01-21 10:12:29','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/3.jpg',0,'attachment','image/jpeg',0),(204,1,'2019-02-03 12:01:51','2019-02-03 12:01:51','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>Email : kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON-FRI 09:00 - 19:00</p><p>SAT-SUN 10:00 - 14:00</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-03 12:01:51','2019-02-03 12:01:51','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(61,1,'2019-01-24 09:44:07','2019-01-24 09:44:07','','5','','inherit','open','closed','','5','','','2019-01-24 09:44:07','2019-01-24 09:44:07','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/5.jpg',0,'attachment','image/jpeg',0),(62,1,'2019-01-24 09:47:08','2019-01-24 09:47:08','','5','','inherit','open','closed','','5-2','','','2019-01-24 09:47:08','2019-01-24 09:47:08','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/5-1.jpg',0,'attachment','image/jpeg',0),(63,1,'2019-01-24 09:51:04','2019-01-24 09:51:04','','5','','inherit','open','closed','','5-3','','','2019-01-24 09:51:04','2019-01-24 09:51:04','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/5-2.jpg',0,'attachment','image/jpeg',0),(65,1,'2019-01-24 10:42:13','2019-01-24 10:42:13','','6','','inherit','open','closed','','6','','','2019-01-24 10:42:13','2019-01-24 10:42:13','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/6.jpg',0,'attachment','image/jpeg',0),(12,1,'2019-01-16 09:52:54','2019-01-16 09:52:54','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						CALL NOW\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/new-patients/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n		https://www.youtube.com/watch?v=kOprDx_NUnM		\n			<h4>Meet Our Team</h4>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Click For More Info\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in Touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','publish','closed','closed','','home','','','2019-03-31 21:42:02','2019-03-31 21:42:02','',0,'http://kautzchiro.journeysoup.com/?page_id=12',0,'page','',0),(13,1,'2019-01-16 09:52:54','2019-01-16 09:52:54','','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-16 09:52:54','2019-01-16 09:52:54','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(14,1,'2019-01-16 09:55:19','2019-01-16 09:55:19','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p><p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />MON, TUE, FRI 7 AM – 1:30 PM<br />THURS 7 AM – 5 PM</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						More About Massage\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Ruby Leota</figcaption>\n										</figure>\n			<h2>Ruby Leota</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the West coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé, participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Book your appointment Now!</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now \n					</a>','Meet the Team','','publish','closed','closed','','about-us','','','2019-03-29 23:34:55','2019-03-29 23:34:55','',0,'http://kautzchiro.journeysoup.com/?page_id=14',0,'page','',0),(15,1,'2019-01-16 09:55:19','2019-01-16 09:55:19','','About Us','','inherit','closed','closed','','14-revision-v1','','','2019-01-16 09:55:19','2019-01-16 09:55:19','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(16,1,'2019-01-16 09:55:41','2019-01-16 09:55:41','','services','','publish','closed','closed','','services','','','2019-01-16 09:55:41','2019-01-16 09:55:41','',0,'http://kautzchiro.journeysoup.com/?page_id=16',0,'page','',0),(17,1,'2019-01-16 09:55:41','2019-01-16 09:55:41','','services','','inherit','closed','closed','','16-revision-v1','','','2019-01-16 09:55:41','2019-01-16 09:55:41','',16,'http://kautzchiro.journeysoup.com/16-revision-v1/',0,'revision','',0),(18,1,'2019-01-16 09:56:46','2019-01-16 09:56:46','<h2>Contact</h2>		\n			<h2>Our Hours</h2>		\n			<h6>Dr. Kautz</h6>		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			<h6>Dr. Shepherd</h6>		\n		<p>MON: 7AM-1:30PM<br />TUE: 7AM-1:30PM<br />THU: 7AM-5:00pm<br />FRI: 7AM-1:30PM<br /><br /></p>		\n			<h4>Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>','Contact Us','','publish','closed','closed','','contact-us','','','2019-03-29 23:43:24','2019-03-29 23:43:24','',0,'http://kautzchiro.journeysoup.com/?page_id=18',0,'page','',0),(19,1,'2019-01-16 09:56:46','2019-01-16 09:56:46','','Contact US','','inherit','closed','closed','','18-revision-v1','','','2019-01-16 09:56:46','2019-01-16 09:56:46','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(292,1,'2019-03-29 22:55:30','2019-03-29 22:55:30','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n<h2>Call right now for your appointment.</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"><figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h3>New Patients</h3>\nAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.\n\n<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n**PDF for New Patient Paperwork\n</a>\nhttps://www.youtube.com/watch?v=kOprDx_NUnM\n<h4>Meet Our Team</h4>\nYou can put whatever tagline you want here\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3>\nDr. Courtney Kautz, D.C. CCSP\n\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked\nher interest in chiropractic care and led to her future as a chiropractic sports physician.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3>\nDr. Ron Shepherd, D.C. DACBSP\n\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3>\nMassage Therepist\n\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3>\nreceptionist\n\nRuby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies\n<h3>Message Therapy</h3>\nKautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.\n\n<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\nClick now for more info\n</a>\n<h2>Spinal\nDecompression</h2>\nDecompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\n<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\nOther Conditions\n</a>\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>\n<h4>Get in touch</h4>\nLocation\n\n700 Eagle Ridge Rd, Le Claire, IA 52753\n\nContact Us\n\nPhone : 563-289-3242\n\nkautzchiropractic@gmail.com\n\nOur Hours\n\nMON: 8AM-7:00PM\nTUE: 8AM-7:00PM\nWED: 8AM-7:00PM\nFRI: 8AM-5:00PM\nSAT: 8AM-NOON\n\nFollow Us\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\">\nYoutube\n</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-29 22:55:30','2019-03-29 22:55:30','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(289,1,'2019-03-29 22:43:44','2019-03-29 22:43:44','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n		https://www.youtube.com/watch?v=kOprDx_NUnM		\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-29 22:43:44','2019-03-29 22:43:44','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(72,1,'2019-01-24 11:01:46','2019-01-24 11:01:46','.site-header {\nbackground-color: rgba(100,100,100,.6) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','publish','closed','closed','','sydney','','','2019-03-31 21:51:28','2019-03-31 21:51:28','',0,'http://kautzchiro.journeysoup.com/sydney/',0,'custom_css','',0),(73,1,'2019-01-24 11:01:46','2019-01-24 11:01:46','.site-header {\nbackground-color: rgba(255,255,255,0.9) !important;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-01-24 11:01:46','2019-01-24 11:01:46','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(75,1,'2019-01-24 11:02:52','2019-01-24 11:02:52','.site-header {\nbackground-color: rgba(0,0,0,0.4) !important;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-01-24 11:02:52','2019-01-24 11:02:52','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(80,1,'2019-01-25 10:59:31','2019-01-25 10:59:31','<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 10:59:31','2019-01-25 10:59:31','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(81,1,'2019-01-25 11:00:24','2019-01-25 11:00:24','<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:00:24','2019-01-25 11:00:24','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(83,1,'2019-01-25 11:04:40','2019-01-25 11:04:40','<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:04:40','2019-01-25 11:04:40','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(84,1,'2019-01-25 11:05:52','2019-01-25 11:05:52','<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:05:52','2019-01-25 11:05:52','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(86,1,'2019-01-25 11:07:50','2019-01-25 11:07:50','.site-header {\nbackground-color: rgba(0,0,0,0.4) !important;\n}\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-01-25 11:07:50','2019-01-25 11:07:50','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(101,1,'2019-01-25 12:19:39','2019-01-25 12:19:39','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n<h2>Call right now for your appointment.</h2>\n<a href=\"#\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\"><figcaption></figcaption></figure>\n<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<a href=\"#\" role=\"button\">\nContact us\n</a>\n<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\nClick edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"#\" role=\"button\">\nClick here\n</a>\n<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\nClick edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 12:19:39','2019-01-25 12:19:39','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(89,1,'2019-01-25 11:14:13','2019-01-25 11:14:13','<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at- home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.</p>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:14:13','2019-01-25 11:14:13','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(91,1,'2019-01-25 11:25:52','2019-01-25 11:25:52','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.</p>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:25:52','2019-01-25 11:25:52','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(94,1,'2019-01-25 11:51:47','2019-01-25 11:51:47','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.</p>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:51:47','2019-01-25 11:51:47','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(93,1,'2019-01-25 11:51:00','2019-01-25 11:51:00','','landscape-view-of-the-curving-mississippi-river','','inherit','open','closed','','landscape-view-of-the-curving-mississippi-river','','','2019-01-25 11:51:00','2019-01-25 11:51:00','',12,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/landscape-view-of-the-curving-mississippi-river.jpg',0,'attachment','image/jpeg',0),(95,1,'2019-01-25 11:51:57','2019-01-25 11:51:57','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.</p>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:51:57','2019-01-25 11:51:57','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(96,1,'2019-01-25 11:52:43','2019-01-25 11:52:43','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. Call right now for your appointment.</p>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:52:43','2019-01-25 11:52:43','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(99,1,'2019-01-25 12:14:31','2019-01-25 12:14:31','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 12:14:31','2019-01-25 12:14:31','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(97,1,'2019-01-25 11:55:33','2019-01-25 11:55:33','<h2>Courtney Kautz</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 11:55:33','2019-01-25 11:55:33','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(100,1,'2019-01-25 12:16:43','2019-01-25 12:16:43','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 12:16:43','2019-01-25 12:16:43','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(102,1,'2019-01-25 12:35:57','2019-01-25 12:35:57','','ava1.png','','inherit','open','closed','','ava1-png','','','2019-01-25 12:35:57','2019-01-25 12:35:57','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png',0,'attachment','image/png',0),(103,1,'2019-01-25 12:35:58','2019-01-25 12:35:58','','ava2.png','','inherit','open','closed','','ava2-png','','','2019-01-25 12:35:58','2019-01-25 12:35:58','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava2.png',0,'attachment','image/png',0),(121,1,'2019-01-27 11:32:46','2019-01-27 11:32:46','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Our team</h4>		\n		<p>I am text block. Click edit button to change.</p>		\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Amanda Lee</h3><p>Senior project </p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Larry Flint</h3><p>Graphic Designer</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Amanda Lee</h3><p>Senior project </p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Larry Flint</h3><p>Graphic Designer</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 11:32:46','2019-01-27 11:32:46','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(119,1,'2019-01-25 13:03:50','2019-01-25 13:03:50','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>Surf\'s up!</h3>		\n		<p>There are 23 million estimated surfers around the world. The longest amount of time spent surfing one wave is 37 minutes. There are many other reasons you should get on board.</p>		\n			<a href=\"#\" role=\"button\">\n						Catch Our Wave\n					</a>\n			<h4>Our team</h4>		\n		<p>I am text block. Click edit button to change.</p>		\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ava1-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Amanda Lee</h3><p>Senior project </p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-150x150.png 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-300x300.png 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-230x230.png 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11-350x350.png 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Larry Flint</h3><p>Graphic Designer</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"#\" role=\"button\">\n						Contact us\n					</a>\n										<img width=\"1024\" height=\"576\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-1024x576.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-300x169.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-768x432.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-830x467.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-230x129.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-350x197.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280-480x270.jpg 480w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/human-skeleton-163715_1280.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-25 13:03:50','2019-01-25 13:03:50','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(105,1,'2019-01-25 12:46:57','2019-01-25 12:46:57','','2-1.jpg','','inherit','open','closed','','2-1-jpg','','','2019-01-25 12:46:57','2019-01-25 12:46:57','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/2-1.jpg',0,'attachment','image/jpeg',0),(106,1,'2019-01-25 12:46:58','2019-01-25 12:46:58','','ma.png','','inherit','open','closed','','ma-png','','','2019-01-25 12:46:58','2019-01-25 12:46:58','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ma.png',0,'attachment','image/png',0),(107,1,'2019-01-25 12:46:59','2019-01-25 12:46:59','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2019-01-25 12:46:59','2019-01-25 12:46:59','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/placeholder.png',0,'attachment','image/png',0),(108,1,'2019-01-25 12:47:00','2019-01-25 12:47:00','','top-cover.jpg','','inherit','open','closed','','top-cover-jpg','','','2019-01-25 12:47:00','2019-01-25 12:47:00','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/top-cover.jpg',0,'attachment','image/jpeg',0),(109,1,'2019-01-25 12:47:02','2019-01-25 12:47:02','','vbg-4.jpg','','inherit','open','closed','','vbg-4-jpg','','','2019-01-25 12:47:02','2019-01-25 12:47:02','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/vbg-4.jpg',0,'attachment','image/jpeg',0),(110,1,'2019-01-25 12:47:02','2019-01-25 12:47:02','','brushed-alum.png','','inherit','open','closed','','brushed-alum-png','','','2019-01-25 12:47:02','2019-01-25 12:47:02','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/brushed-alum.png',0,'attachment','image/png',0),(111,1,'2019-01-25 12:47:03','2019-01-25 12:47:03','','iPhone-7-2.png','','inherit','open','closed','','iphone-7-2-png','','','2019-01-25 12:47:03','2019-01-25 12:47:03','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/iPhone-7-2.png',0,'attachment','image/png',0),(112,1,'2019-01-25 12:47:04','2019-01-25 12:47:04','','bg2.jpg','','inherit','open','closed','','bg2-jpg','','','2019-01-25 12:47:04','2019-01-25 12:47:04','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/bg2.jpg',0,'attachment','image/jpeg',0),(113,1,'2019-01-25 12:47:05','2019-01-25 12:47:05','','bg-lionello-delpiccolo.jpg','','inherit','open','closed','','bg-lionello-delpiccolo-jpg','','','2019-01-25 12:47:05','2019-01-25 12:47:05','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/bg-lionello-delpiccolo.jpg',0,'attachment','image/jpeg',0),(114,1,'2019-01-25 12:47:06','2019-01-25 12:47:06','','hqdefault.jpg','','inherit','open','closed','','hqdefault-jpg','','','2019-01-25 12:47:06','2019-01-25 12:47:06','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/hqdefault.jpg',0,'attachment','image/jpeg',0),(115,1,'2019-01-25 12:47:07','2019-01-25 12:47:07','','Mackbook2.png','','inherit','open','closed','','mackbook2-png','','','2019-01-25 12:47:07','2019-01-25 12:47:07','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Mackbook2.png',0,'attachment','image/png',0),(116,1,'2019-01-25 12:47:08','2019-01-25 12:47:08','','vbg10.jpg','','inherit','open','closed','','vbg10-jpg','','','2019-01-25 12:47:08','2019-01-25 12:47:08','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/vbg10.jpg',0,'attachment','image/jpeg',0),(117,1,'2019-01-25 12:47:09','2019-01-25 12:47:09','','bg-maxime-staudenmann.jpg','','inherit','open','closed','','bg-maxime-staudenmann-jpg','','','2019-01-25 12:47:09','2019-01-25 12:47:09','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/bg-maxime-staudenmann.jpg',0,'attachment','image/jpeg',0),(118,1,'2019-01-25 13:03:20','2019-01-25 13:03:20','','y11.png','','inherit','open','closed','','y11-png','','','2019-01-25 13:03:20','2019-01-25 13:03:20','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/y11.png',0,'attachment','image/png',0),(130,1,'2019-01-27 13:25:25','2019-01-27 13:25:25','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Ruby-2E-o2cabg449aluy9pltidrk3srf7m5k8lgsm42le5w2o.jpg\" title=\"Kautz Ruby 2E\" alt=\"Kautz Ruby 2E\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Jade-2E-o2cabbexb4ffc7wfkycmpmzgga9bhr2t3yun70cuxs.jpg\" title=\"Kautz Jade 2E\" alt=\"Kautz Jade 2E\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 13:25:25','2019-01-27 13:25:25','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(123,1,'2019-01-27 11:48:58','2019-01-27 11:48:58','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img width=\"500\" height=\"642\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg 500w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-234x300.jpg 234w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-230x295.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-350x449.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-480x616.jpg 480w\" sizes=\"(max-width: 500px) 100vw, 500px\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"508\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-236x300.jpg 236w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-230x292.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-350x445.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"491\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-244x300.jpg 244w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-230x282.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-350x430.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Hello.</h3>		\n		<p>I love you, won\'t you tell me your name? These immortal words by legendary musician Jim Morrison are still as relevant today, in this digital age, as they were back then. </p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=kB4U67tiQLA','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 11:48:58','2019-01-27 11:48:58','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(125,1,'2019-01-27 12:02:36','2019-01-27 12:02:36','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img width=\"500\" height=\"642\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg 500w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-234x300.jpg 234w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-230x295.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-350x449.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-480x616.jpg 480w\" sizes=\"(max-width: 500px) 100vw, 500px\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"508\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-236x300.jpg 236w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-230x292.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-350x445.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"491\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-244x300.jpg 244w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-230x282.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-350x430.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Traction</h3>		\n		<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports<br />injuries, compressed and bulging discs, and trauma cases.</p>		\n			<a href=\"#\" role=\"button\">\n						Let\'s Meet\n					</a>\n		https://www.youtube.com/watch?v=Sg8zNwnxQik','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 12:02:36','2019-01-27 12:02:36','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(128,1,'2019-01-27 13:16:26','2019-01-27 13:16:26','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"508\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-236x300.jpg 236w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-230x292.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-350x445.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"491\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-244x300.jpg 244w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-230x282.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-350x430.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Traction</h3>		\n		<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports injuries, compressed and bulging discs, and trauma cases. Click the button below to see other conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 13:16:26','2019-01-27 13:16:26','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(126,1,'2019-01-27 12:08:45','2019-01-27 12:08:45','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img width=\"500\" height=\"642\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E.jpg 500w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-234x300.jpg 234w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-230x295.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-350x449.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Courtney-2E-480x616.jpg 480w\" sizes=\"(max-width: 500px) 100vw, 500px\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"508\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-236x300.jpg 236w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-230x292.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Ruby-2E-350x445.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"491\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-244x300.jpg 244w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-230x282.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Jade-2E-350x430.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h3>Traction</h3>		\n		<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports injuries, compressed and bulging discs, and trauma cases. Click the button below to see other conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=Sg8zNwnxQik','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 12:08:45','2019-01-27 12:08:45','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(132,1,'2019-01-27 13:28:46','2019-01-27 13:28:46','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Ruby-2E-o2cabg449aluy9pltidrk3srf7m5k8lgsm42le5w2o.jpg\" title=\"Kautz Ruby 2E\" alt=\"Kautz Ruby 2E\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Jade-2E-o2cabbexb4ffc7wfkycmpmzgga9bhr2t3yun70cuxs.jpg\" title=\"Kautz Jade 2E\" alt=\"Kautz Jade 2E\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office include:</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 13:28:46','2019-01-27 13:28:46','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(133,1,'2019-01-27 13:29:09','2019-01-27 13:29:09','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Courtney-2E-o2cab8lfyh3zze69gbzx48jfpguuiezbzdhcwky9hk.jpg\" title=\"Kautz Courtney 2E\" alt=\"Kautz Courtney 2E\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"400\" height=\"421\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E-.jpg 400w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--285x300.jpg 285w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--230x242.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/Kautz-Sheperd-Ron-1E--350x368.jpg 350w\" sizes=\"(max-width: 400px) 100vw, 400px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Ruby-2E-o2cabg449aluy9pltidrk3srf7m5k8lgsm42le5w2o.jpg\" title=\"Kautz Ruby 2E\" alt=\"Kautz Ruby 2E\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Jade-2E-o2cabbexb4ffc7wfkycmpmzgga9bhr2t3yun70cuxs.jpg\" title=\"Kautz Jade 2E\" alt=\"Kautz Jade 2E\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-27 13:29:09','2019-01-27 13:29:09','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(145,1,'2019-01-27 14:09:35','2019-01-27 14:09:35','<h5>Contact</h5>\n<h4>For any inquiries please email</h4>\n<h4>Contact@company.com</h4>\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nInstagram\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 14:09:35','2019-01-27 14:09:35','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(144,1,'2019-01-27 14:06:53','2019-01-27 14:06:53','<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Contact@company.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 14:06:53','2019-01-27 14:06:53','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(142,1,'2019-01-27 13:57:50','2019-01-27 13:57:50','<h5>Contact</h5>\n<h4>For any inquiries please email</h4>\n<h4>Contact@company.com</h4>\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\">\nInstagram\n</a>\n<a href=\"\" target=\"_blank\">\nDribbble\n</a>\n<a href=\"\" target=\"_blank\">\nYoutube\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 13:57:50','2019-01-27 13:57:50','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(135,1,'2019-01-27 13:52:28','2019-01-27 13:52:28','<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Contact@company.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 13:52:28','2019-01-27 13:52:28','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(134,1,'2019-01-27 13:52:15','2019-01-27 13:52:15','<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Contact@company.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n			<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Contact@company.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 13:52:15','2019-01-27 13:52:15','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(136,1,'2019-01-27 13:53:25','2019-01-27 13:53:25','<h2>Conditions and Treatments</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now\n					</a>\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Spinal Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','publish','closed','closed','','conditions','','','2019-03-30 00:26:10','2019-03-30 00:26:10','',0,'http://kautzchiro.journeysoup.com/?page_id=136',0,'page','',0),(137,1,'2019-01-27 13:53:25','2019-01-27 13:53:25','','Conditions','','inherit','closed','closed','','136-revision-v1','','','2019-01-27 13:53:25','2019-01-27 13:53:25','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(138,1,'2019-01-27 13:54:25','2019-01-27 13:54:25',' ','','','publish','closed','closed','','138','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=138',2,'nav_menu_item','',0),(140,1,'2019-01-27 13:54:49','2019-01-27 13:54:49','','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-01-27 13:54:49','2019-01-27 13:54:49','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(141,1,'2019-01-27 13:55:18','2019-01-27 13:55:18',' ','','','publish','closed','closed','','141','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=141',4,'nav_menu_item','',0),(146,1,'2019-01-27 14:15:17','2019-01-27 14:15:17','','qr2.jpg','','inherit','open','closed','','qr2-jpg','','','2019-01-27 14:15:17','2019-01-27 14:15:17','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg',0,'attachment','image/jpeg',0),(148,1,'2019-01-27 14:21:48','2019-01-27 14:21:48','<h5>Contact</h5>\n<h4>For any inquiries please email</h4>\n<h4>Contact@company.com</h4>\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nInstagram\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>\n<img width=\"590\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg 590w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-300x203.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-230x156.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-350x237.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-480x325.jpg 480w\" sizes=\"(max-width: 590px) 100vw, 590px\">\n<h4>About the company</h4>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 14:21:48','2019-01-27 14:21:48','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(147,1,'2019-01-27 14:15:42','2019-01-27 14:15:42','<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Contact@company.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=18&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n										<img width=\"590\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg 590w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-300x203.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-230x156.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-350x237.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-480x325.jpg 480w\" sizes=\"(max-width: 590px) 100vw, 590px\" />											\n			<h4>About the company</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-27 14:15:42','2019-01-27 14:15:42','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(158,1,'2019-01-28 10:51:27','2019-01-28 10:51:27','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n<h2>Call right now for your appointment.</h2>\n<a href=\"#\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"><figcaption></figcaption></figure>\n<h3>New Patients</h3>\nAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely\nand bring it to your first appointment along with your insurance card.\n\n<a href=\"#\" role=\"button\">\n**PDF for New Patient Paperwork\n</a>\n<h4>Meet Our Team</h4>\nYou can put whatever tagline you want here\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"></figure>\n<h3>Dr. Courtney Kautz</h3>\nDr. Courtney Kautz, D.C. CCSP\n\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant\nValley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,\nthat treated her sprained ankles and got her back to the competition quickly. This experience sparked\nher interest in chiropractic care and led to her future as a chiropractic sports physician.\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nDribbble\n</a>\n<a href=\"\" target=\"_blank\">\nBehance\n</a>\n<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"></figure>\n<h3>Dr. Ron Shepherd</h3>\nDr. Ron Shepherd, D.C. DACBSP\n\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and\nboard certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,\nDonna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nDribbble\n</a>\n<a href=\"\" target=\"_blank\">\nBehance\n</a>\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\"></figure>\n<h3>Jade Schroeder</h3>\nMassage Therepist\n\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nDribbble\n</a>\n<a href=\"\" target=\"_blank\">\nBehance\n</a>\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\"></figure>\n<h3>Ruby Leota</h3>\nreceptionist\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nDribbble\n</a>\n<a href=\"\" target=\"_blank\">\nBehance\n</a>\n<h2>Spinal\nDecompression</h2>\nDecompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\n<a href=\"#\" role=\"button\">\nOther Conditions\n</a>\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 10:51:27','2019-01-28 10:51:27','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(157,1,'2019-01-28 10:49:16','2019-01-28 10:49:16','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 10:49:16','2019-01-28 10:49:16','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(156,1,'2019-01-28 10:48:37','2019-01-28 10:48:37','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Ruby-2E-o2cabg449aluy9pltidrk3srf7m5k8lgsm42le5w2o.jpg\" title=\"Kautz Ruby 2E\" alt=\"Kautz Ruby 2E\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/Kautz-Jade-2E-o2cabbexb4ffc7wfkycmpmzgga9bhr2t3yun70cuxs.jpg\" title=\"Kautz Jade 2E\" alt=\"Kautz Jade 2E\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 10:48:37','2019-01-28 10:48:37','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(152,1,'2019-01-28 10:45:57','2019-01-28 10:45:57','','court-circle','','inherit','open','closed','','court-circle','','','2019-01-28 10:45:57','2019-01-28 10:45:57','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg',0,'attachment','image/jpeg',0),(153,1,'2019-01-28 10:45:59','2019-01-28 10:45:59','','pic-3','','inherit','open','closed','','pic-3','','','2019-01-28 10:45:59','2019-01-28 10:45:59','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg',0,'attachment','image/jpeg',0),(154,1,'2019-01-28 10:46:02','2019-01-28 10:46:02','','pic-4','','inherit','open','closed','','pic-4','','','2019-01-28 10:46:02','2019-01-28 10:46:02','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg',0,'attachment','image/jpeg',0),(155,1,'2019-01-28 10:46:05','2019-01-28 10:46:05','','ron-web','','inherit','open','closed','','ron-web','','','2019-01-28 10:46:05','2019-01-28 10:46:05','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg',0,'attachment','image/jpeg',0),(159,1,'2019-01-28 10:52:27','2019-01-28 10:52:27','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 10:52:27','2019-01-28 10:52:27','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(161,1,'2019-01-28 11:18:14','2019-01-28 11:18:14','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h6>Contact us</h6>		\n		<p>Office: 563-289-3242<br />Fax: 563-289-4541</p>		\n			<h6>Our hours</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Location</h6>		\n		<p>700 Eagle Ridge Rd,<br />Le Claire, IA 52753</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 11:18:14','2019-01-28 11:18:14','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(160,1,'2019-01-28 11:01:26','2019-01-28 11:01:26','<h5>Contact</h5>		\n			<h4>For any inquiries please email</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n										<img width=\"590\" height=\"400\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2.jpg 590w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-300x203.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-230x156.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-350x237.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/qr2-480x325.jpg 480w\" sizes=\"(max-width: 590px) 100vw, 590px\" />											\n			<h4>About the company</h4>		\n		<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 11:01:26','2019-01-28 11:01:26','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(168,1,'2019-01-28 13:33:47','2019-01-28 13:33:47','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com<br>office: 563-289-3242<br>Fax: 563-289-4541</h4>		\n			<h6>Dr. Kautz</h6>		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			<h6>Dr. Shepherd</h6>		\n		<p>MON: 7AM-1:30PM<br />TUE: 7AM-1:30PM<br />THU: 7AM-5:00pm<br />FRI: 7AM-1:30PM</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:33:47','2019-01-28 13:33:47','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(165,1,'2019-01-28 13:19:06','2019-01-28 13:19:06','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n			<h6>Dr. Kautz</h6>		\n		MON 8AM-7:00PM\nTUE 8AM-7:00PM\nWED 8AM-7:00PM\nFRI 8AM-5:00PM\nSAT 8AM-NOON\n			<h6>Dr. Shepherd</h6>		\n		<p>MON 7AM-1:30PM<br />TUE 7AM-1:30PM<br />THU 7AM-5:00pm<br />FRI 7AM-1:30PM</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h6>Contact us</h6>		\n		<p>Office: 563-289-3242<br />Fax: 563-289-4541</p>		\n			<h6>Our hours</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Location</h6>		\n		<p>700 Eagle Ridge Rd,<br />Le Claire, IA 52753</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:19:06','2019-01-28 13:19:06','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(163,1,'2019-01-28 13:13:50','2019-01-28 13:13:50','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n			<h6>Dr. Kautz</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Dr. Shepherd</h6>		\n		MON 7AM-1:30PM\nTUE 7AM-1:30PM\nTHU 7AM-5:00pm\nFRI 7AM-1:30PM\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h6>Contact us</h6>		\n		<p>Office: 563-289-3242<br />Fax: 563-289-4541</p>		\n			<h6>Our hours</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Location</h6>		\n		<p>700 Eagle Ridge Rd,<br />Le Claire, IA 52753</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:13:50','2019-01-28 13:13:50','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(164,1,'2019-01-28 13:14:42','2019-01-28 13:14:42','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n			<h6>Dr. Kautz</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Dr. Shepherd</h6>		\n		MON 7AM-1:30PM\nTUE 7AM-1:30PM\nTHU 7AM-5:00pm\nFRI 7AM-1:30PM		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h6>Contact us</h6>		\n		<p>Office: 563-289-3242<br />Fax: 563-289-4541</p>		\n			<h6>Our hours</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Location</h6>		\n		<p>700 Eagle Ridge Rd,<br />Le Claire, IA 52753</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:14:42','2019-01-28 13:14:42','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(167,1,'2019-01-28 13:21:58','2019-01-28 13:21:58','<h5>Contact</h5>\n<h4>Our hours</h4>\n<h4>Kautzchiropractic@gmail.com</h4>\n<h6>Dr. Kautz</h6>\nMON 8AM-7:00PM\nTUE 8AM-7:00PM\nWED 8AM-7:00PM\nFRI 8AM-5:00PM\nSAT 8AM-NOON\n<h6>Dr. Shepherd</h6>\nMON 7AM-1:30PM\nTUE 7AM-1:30PM\nTHU 7AM-5:00pm\nFRI 7AM-1:30PM\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nInstagram\n</a>\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>\n<h6>Contact us</h6>\nOffice: 563-289-3242\nFax: 563-289-4541\n<h6>Our hours</h6>\n08:00 AM - 7:00 PM\nMonday - Wednesday\n-Thursday Closed-\nFriday 8AM-5PM\nSaturday 8AM-NOON\n-Sunday closed-\n<h6>Location</h6>\n700 Eagle Ridge Rd,\nLe Claire, IA 52753','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:21:58','2019-01-28 13:21:58','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(166,1,'2019-01-28 13:20:22','2019-01-28 13:20:22','<h5>Contact</h5>		\n			<h4>Our hours</h4>		\n			<h4>Kautzchiropractic@gmail.com</h4>		\n			<h6>Dr. Kautz</h6>		\n		<p>MON 8AM-7:00PM<br />TUE 8AM-7:00PM<br />WED 8AM-7:00PM<br />FRI 8AM-5:00PM<br />SAT 8AM-NOON</p>		\n			<h6>Dr. Shepherd</h6>		\n		<p>MON 7AM-1:30PM<br />TUE 7AM-1:30PM<br />THU 7AM-5:00pm<br />FRI 7AM-1:30PM</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h6>Contact us</h6>		\n		<p>Office: 563-289-3242<br />Fax: 563-289-4541</p>		\n			<h6>Our hours</h6>		\n		<p>08:00 AM - 7:00 PM<br />Monday - Wednesday<br />-Thursday Closed-<br />Friday 8AM-5PM<br />Saturday 8AM-NOON<br />-Sunday closed-</p>		\n			<h6>Location</h6>		\n		<p>700 Eagle Ridge Rd,<br />Le Claire, IA 52753</p>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-01-28 13:20:22','2019-01-28 13:20:22','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(169,1,'2019-01-28 13:36:37','2019-01-28 13:36:37','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption></figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 13:36:37','2019-01-28 13:36:37','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(172,1,'2019-01-28 13:46:25','2019-01-28 13:46:25','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 13:46:25','2019-01-28 13:46:25','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(170,1,'2019-01-28 13:39:45','2019-01-28 13:39:45','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Dribbble\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Behance\n				</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 13:39:45','2019-01-28 13:39:45','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(173,1,'2019-01-28 13:47:04','2019-01-28 13:47:04','','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 13:47:04','2019-01-28 13:47:04','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(174,1,'2019-01-28 13:49:24','2019-01-28 13:49:24','','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-01-28 13:49:24','2019-01-28 13:49:24','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(175,1,'2019-01-28 13:50:57','2019-01-28 13:50:57','<h2>Message Therapy</h2>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Call Now\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n			<h2>Pricing</h2>		\n		<p>30 min - $35<br />60 min - $60<br />90 min - $85<br />120 min - $110</p>		\n			<h2>Massage Hours</h2>		\n		<p>Mon 11AM – 6 PM<br />Wed 9 AM – 4 PM<br />Fri 9 AM – 4</p>','Massage Therapy','','publish','closed','closed','','massage-therapy','','','2019-03-29 23:29:01','2019-03-29 23:29:01','',0,'http://kautzchiro.journeysoup.com/?page_id=175',0,'page','',0),(176,1,'2019-01-28 13:50:57','2019-01-28 13:50:57','','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-01-28 13:50:57','2019-01-28 13:50:57','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(177,1,'2019-01-28 13:52:40','2019-01-28 13:52:40',' ','','','publish','closed','closed','','177','','','2019-01-28 13:52:40','2019-01-28 13:52:40','',0,'http://kautzchiro.journeysoup.com/?p=177',3,'nav_menu_item','',0),(180,1,'2019-01-28 14:16:14','2019-01-28 14:16:14','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-01-28 14:16:14','2019-01-28 14:16:14','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(181,1,'2019-01-28 14:16:55','2019-01-28 14:16:55','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-01-28 14:16:55','2019-01-28 14:16:55','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(182,1,'2019-01-28 14:21:06','2019-01-28 14:21:06','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call now to set up an appointment </h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-01-28 14:21:06','2019-01-28 14:21:06','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(179,1,'2019-01-28 14:09:51','2019-01-28 14:09:51','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n										<img width=\"1920\" height=\"1236\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920.jpg 1920w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-01-28 14:09:51','2019-01-28 14:09:51','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(185,1,'2019-01-28 14:29:18','2019-01-28 14:29:18','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:29:18','2019-01-28 14:29:18','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(183,1,'2019-01-28 14:24:53','2019-01-28 14:24:53','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call now to set up an appointment </h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:24:53','2019-01-28 14:24:53','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(184,1,'2019-01-28 14:28:27','2019-01-28 14:28:27','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call now to set up an appointment </h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:28:27','2019-01-28 14:28:27','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(186,1,'2019-01-28 14:30:11','2019-01-28 14:30:11','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:30:11','2019-01-28 14:30:11','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(188,1,'2019-01-28 14:37:42','2019-01-28 14:37:42','<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:37:42','2019-01-28 14:37:42','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(189,1,'2019-01-28 14:41:57','2019-01-28 14:41:57','<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>Add Your Heading Text Here</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:41:57','2019-01-28 14:41:57','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(190,1,'2019-01-28 14:42:36','2019-01-28 14:42:36','<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>Add Your Heading Text Here</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:42:36','2019-01-28 14:42:36','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(191,1,'2019-01-28 14:43:49','2019-01-28 14:43:49','<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-01-28 14:43:49','2019-01-28 14:43:49','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(192,1,'2019-01-28 14:58:26','2019-01-28 14:58:26','','7','','inherit','open','closed','','7','','','2019-01-28 14:58:26','2019-01-28 14:58:26','',12,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/7.jpg',0,'attachment','image/jpeg',0),(193,1,'2019-01-28 14:58:37','2019-01-28 14:58:37','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 14:58:37','2019-01-28 14:58:37','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(199,1,'2019-01-28 15:20:04','2019-01-28 15:20:04','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n<h2>Call right now for your appointment.</h2>\n<a href=\"#\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"><figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h3>New Patients</h3>\nAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely\nand bring it to your first appointment along with your insurance card.\n\n<a href=\"#\" role=\"button\">\n**PDF for New Patient Paperwork\n</a>\n<h4>Meet Our Team</h4>\nYou can put whatever tagline you want here\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"></figure>\n<h3>Dr. Courtney Kautz</h3>\nDr. Courtney Kautz, D.C. CCSP\n\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant\nValley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,\nthat treated her sprained ankles and got her back to the competition quickly. This experience sparked\nher interest in chiropractic care and led to her future as a chiropractic sports physician.\n<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"></figure>\n<h3>Dr. Ron Shepherd</h3>\nDr. Ron Shepherd, D.C. DACBSP\n\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and\nboard certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,\nDonna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\"></figure>\n<h3>Jade Schroeder</h3>\nMassage Therepist\n\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\"></figure>\n<h3>Ruby Leota</h3>\nreceptionist\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<h3>Message Therapy</h3>\nKautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\ntrigger point, Swedish and pre-natal massage.\n<a href=\"#\" role=\"button\">\nClick now for more info\n</a>\n<h2>Spinal\nDecompression</h2>\nDecompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\n<a href=\"#\" role=\"button\">\nOther Conditions\n</a>\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:20:04','2019-01-28 15:20:04','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(195,1,'2019-01-28 15:03:16','2019-01-28 15:03:16','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy </h3>		\n		Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\ntrigger point, Swedish and pre-natal massage.		\n			<a href=\"#\" role=\"button\">\n						Click here for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:03:16','2019-01-28 15:03:16','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(196,1,'2019-01-28 15:03:46','2019-01-28 15:03:46','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy </h3>		\n		Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\ntrigger point, Swedish and pre-natal massage.		\n			<a href=\"#\" role=\"button\">\n						Click here for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:03:46','2019-01-28 15:03:46','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(197,1,'2019-01-28 15:06:13','2019-01-28 15:06:13','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy </h3>		\n		Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\ntrigger point, Swedish and pre-natal massage.		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:06:13','2019-01-28 15:06:13','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(198,1,'2019-01-28 15:07:15','2019-01-28 15:07:15','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy </h3>		\n		Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA\nand surrounding communities. Her treatments consist of a variety of techniques including deep tissue,\ntrigger point, Swedish and pre-natal massage.		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:07:15','2019-01-28 15:07:15','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(200,1,'2019-01-28 15:28:33','2019-01-28 15:28:33','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-28 15:28:33','2019-01-28 15:28:33','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(202,1,'2019-01-29 09:14:53','2019-01-29 09:14:53','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n			<h2>Contact Us</h2>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-01-29 09:14:53','2019-01-29 09:14:53','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(206,1,'2019-02-03 12:12:41','2019-02-03 12:12:41','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"#\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-03 12:12:41','2019-02-03 12:12:41','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(225,1,'2019-02-11 12:06:51','2019-02-11 12:06:51','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 12:06:51','2019-02-11 12:06:51','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(208,1,'2019-02-03 12:22:29','2019-02-03 12:22:29','<h2>Conditions and Services </h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-03 12:22:29','2019-02-03 12:22:29','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(209,1,'2019-02-03 12:23:08','2019-02-03 12:23:08','<h2>Conditions and Services </h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-03 12:23:08','2019-02-03 12:23:08','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(210,1,'2019-02-03 12:24:37','2019-02-03 12:24:37','<h2>Conditions and Services </h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-03 12:24:37','2019-02-03 12:24:37','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(211,1,'2019-02-03 12:26:18','2019-02-03 12:26:18','<h2>Conditions and Services </h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n			<h2>Call Now to set up an appointment!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-03 12:26:18','2019-02-03 12:26:18','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(305,1,'2019-03-29 23:29:01','2019-03-29 23:29:01','<h2>Message Therapy</h2>		\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Call Now\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n			<h2>Pricing</h2>		\n		<p>30 min - $35<br />60 min - $60<br />90 min - $85<br />120 min - $110</p>		\n			<h2>Massage Hours</h2>		\n		<p>Mon 11AM – 6 PM<br />Wed 9 AM – 4 PM<br />Fri 9 AM – 4</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-03-29 23:29:01','2019-03-29 23:29:01','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(215,1,'2019-02-03 14:19:45','2019-02-03 14:19:45','<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Massage Hours</h2>		\n		<p>Mon 11AM – 6 PM<br />Wed 9 AM – 4 PM<br />Fri 9 AM – 4</p>		\n			<h2>Pricing</h2>		\n		<p>30 min - $35<br />60 min - $60<br />90 min - $85<br />120 min - $110</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-02-03 14:19:45','2019-02-03 14:19:45','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(214,1,'2019-02-03 14:17:45','2019-02-03 14:17:45','<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Hours</h2>		\n		Mon 11AM – 6 PM\nWed 9 AM – 4 PM\nFri 9 AM – 4		\n			<h2>Pricing</h2>		\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-02-03 14:17:45','2019-02-03 14:17:45','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(213,1,'2019-02-03 13:15:44','2019-02-03 13:15:44','','treatment-1327811_1920','','inherit','open','closed','','treatment-1327811_1920','','','2019-02-03 13:15:44','2019-02-03 13:15:44','',175,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/treatment-1327811_1920.jpg',0,'attachment','image/jpeg',0),(216,1,'2019-02-03 14:22:16','2019-02-03 14:22:16','<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Massage Hours</h2>		\n		<p>Mon 11AM – 6 PM<br />Wed 9 AM – 4 PM<br />Fri 9 AM – 4</p>		\n			<h2>Pricing</h2>		\n		<p>30 min - $35<br />60 min - $60<br />90 min - $85<br />120 min - $110</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-02-03 14:22:16','2019-02-03 14:22:16','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(217,1,'2019-02-03 14:25:04','2019-02-03 14:25:04','<h2>Jade Schroeder, LMT</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge<br />and heart to her practice to better serve her clients.adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p><p>Outside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT​</figcaption>\n										</figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/treatment-1327811_1920-o2z5p6gibyoydhlnc83uj72zizi5r5fipcx4iijtzc.jpg\" title=\"treatment-1327811_1920\" alt=\"treatment-1327811_1920\" />											\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage. She has additional training in reflexology, aromatherapy and sports massage.</p><p>Massage therapy has proven to be an effective treatment for many painful musculoskeletal injuries including back and neck pain. The kneading and pressure on the muscles of a deep tissue massage stimulate blood flow in the area of injury and assist the lymphatic system in the movement of fluid around the body. The stimulation of blood flow and increased lymphatic drainage can help speed up recovery and decrease inflammation associated with injury. And of course, massage may help you RELAX!</p>		\n			<h2>Pricing</h2>		\n		<p>30 min - $35<br />60 min - $60<br />90 min - $85<br />120 min - $110</p>		\n			<h2>Massage Hours</h2>		\n		<p>Mon 11AM – 6 PM<br />Wed 9 AM – 4 PM<br />Fri 9 AM – 4</p>','Massage Therapy','','inherit','closed','closed','','175-revision-v1','','','2019-02-03 14:25:04','2019-02-03 14:25:04','',175,'http://kautzchiro.journeysoup.com/175-revision-v1/',0,'revision','',0),(218,1,'2019-02-06 16:07:12','2019-02-06 16:07:12','','IntakeFormPDF','','inherit','open','closed','','intakeformpdf','','','2019-02-06 16:07:12','2019-02-06 16:07:12','',139,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF.pdf',0,'attachment','application/pdf',0),(219,1,'2019-02-06 16:07:46','2019-02-06 16:07:46','','IntakeFormPDF','','inherit','open','closed','','intakeformpdf-2','','','2019-02-06 16:07:46','2019-02-06 16:07:46','',139,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-1.pdf',0,'attachment','application/pdf',0),(222,1,'2019-02-11 10:09:53','2019-02-11 10:09:53','','IntakeFormPDF','','inherit','open','closed','','intakeformpdf-3','','','2019-02-11 10:09:53','2019-02-11 10:09:53','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf',0,'attachment','application/pdf',0),(224,1,'2019-02-11 12:04:57','2019-02-11 12:04:57','<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 12:04:57','2019-02-11 12:04:57','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(226,1,'2019-02-11 12:07:40','2019-02-11 12:07:40','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"#\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 12:07:40','2019-02-11 12:07:40','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(227,1,'2019-02-11 12:12:41','2019-02-11 12:12:41','<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer --><p><strong>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely</strong><br /><strong>and bring it to your first appointment along with your insurance card. </strong></p>\n<p><strong>We are currently enrolled in most major health insurance companies including Blue Cross Blue Shield</strong><br /><strong>PPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at</strong><br /><strong>563-289-3242.</strong></p>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 12:12:41','2019-02-11 12:12:41','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(228,1,'2019-02-11 12:14:04','2019-02-11 12:14:04','<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:14:04','2019-02-11 12:14:04','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(230,1,'2019-02-11 12:18:10','2019-02-11 12:18:10','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"852b06f9-98ba-457e-9f9a-d6fa05667e73\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"\",\"padding\":\"\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:18:10','2019-02-11 12:18:10','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(231,1,'2019-02-11 12:19:11','2019-02-11 12:19:11','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"8850d7e6-25a2-47fa-9fe7-851cd9fc91aa\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"\",\"padding\":\"-10px -10px -10px -10px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:19:11','2019-02-11 12:19:11','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(266,1,'2019-02-11 14:16:21','2019-02-11 14:16:21','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px -40px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"-50px\",\"bottom_margin\":\"\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 14:16:21','2019-02-11 14:16:21','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(265,1,'2019-02-11 14:15:49','2019-02-11 14:15:49','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px -40px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"\",\"bottom_margin\":\"-100px\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 14:15:49','2019-02-11 14:15:49','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(232,1,'2019-02-11 12:20:50','2019-02-11 12:20:50','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"7bcea405-eeb5-4b86-92a9-ab3183ecf1f4\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px 0px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"\",\"bottom_margin\":\"-20px\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:20:50','2019-02-11 12:20:50','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(233,1,'2019-02-11 12:21:11','2019-02-11 12:21:11','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"c1b4037a-986c-4f94-ac13-c4574f133505\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px 0px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"\",\"bottom_margin\":\"-100px\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:21:11','2019-02-11 12:21:11','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(234,1,'2019-02-11 12:22:29','2019-02-11 12:22:29','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px 0px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"\",\"bottom_margin\":\"-100px\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 12:22:29','2019-02-11 12:22:29','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(235,1,'2019-02-11 12:29:14','2019-02-11 12:29:14','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"#\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 12:29:14','2019-02-11 12:29:14','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(236,1,'2019-02-11 12:29:40','2019-02-11 12:29:40','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA<br />and surrounding communities. Her treatments consist of a variety of techniques including deep tissue,<br />trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 12:29:40','2019-02-11 12:29:40','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(237,1,'2019-02-11 12:33:57','2019-02-11 12:33:57','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 12:33:57','2019-02-11 12:33:57','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(239,1,'2019-02-11 12:45:51','2019-02-11 12:45:51','<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients.<br />He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 12:45:51','2019-02-11 12:45:51','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(243,1,'2019-02-11 13:01:51','2019-02-11 13:01:51','<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:01:51','2019-02-11 13:01:51','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(241,1,'2019-02-11 12:57:16','2019-02-11 12:57:16','<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She<br />received her training from the Institute of Therapeutic Massage and Wellness in<br />Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy,<br />and sports massage with the once Quad Cities Mallards. She is very passionate<br />about the total and balanced health and wellness of the complete mind, body,<br />and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. \nOutside of work Jade loves spending time with her four children and extended<br />family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 12:57:16','2019-02-11 12:57:16','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(242,1,'2019-02-11 12:59:50','2019-02-11 12:59:50','<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 12:59:50','2019-02-11 12:59:50','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(246,1,'2019-02-11 13:08:18','2019-02-11 13:08:18','<h2>Meet the Team</h2>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"><figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h2>Dr. Courtney Kautz</h2>\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.\n\nDr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.\n\nToday, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.\n<h2>Call right now for your appointment.</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n\n<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption></figure>\n<h2>Dr. Ron Shepherd</h2>\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n\nAt this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:\nMon, Tue, Fri 7 AM – 1:30\nTHURS 7 AM – 5 PM.\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n\n<figcaption>Jade Schroeder, LMT</figcaption></figure>\n<h2>Jade Schroeder</h2>\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n\nOutside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.\n<h2>Call right now for your appointment.</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n\n<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h2>Kautz Chiropractic</h2>\nRuby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:08:18','2019-02-11 13:08:18','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(245,1,'2019-02-11 13:06:09','2019-02-11 13:06:09','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:06:09','2019-02-11 13:06:09','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(247,1,'2019-02-11 13:09:46','2019-02-11 13:09:46','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:09:46','2019-02-11 13:09:46','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(249,1,'2019-02-11 13:11:51','2019-02-11 13:11:51','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Want to know more?</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Kautz Chiropractic</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:11:51','2019-02-11 13:11:51','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(250,1,'2019-02-11 13:14:56','2019-02-11 13:14:56','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Want to know more?</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Ruby Leota</figcaption>\n										</figure>\n			<h2>Ruby Leota</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Book your appointment Now!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 13:14:56','2019-02-11 13:14:56','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(251,1,'2019-02-11 13:20:13','2019-02-11 13:20:13','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></figure><h3>Jade Schroeder</h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:20:13','2019-02-11 13:20:13','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(252,1,'2019-02-11 13:20:50','2019-02-11 13:20:50','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></figure><h3>Dr. Courtney Kautz</h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Dr. Ron Shepherd</h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></figure><h3>Ruby Leota</h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:20:50','2019-02-11 13:20:50','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(263,1,'2019-02-11 14:06:51','2019-02-11 14:06:51','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n<h2>Call right now for your appointment.</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nClick here\n</a>\n<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"><figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h3>New Patients</h3>\nAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.\n\n<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n**PDF for New Patient Paperwork\n</a>\n<h4>Meet Our Team</h4>\nYou can put whatever tagline you want here\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3>\nDr. Courtney Kautz, D.C. CCSP\n\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked\nher interest in chiropractic care and led to her future as a chiropractic sports physician.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3>\nDr. Ron Shepherd, D.C. DACBSP\n\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3>\nMassage Therepist\n\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3>\nreceptionist\n\nRuby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies\n<h3>Message Therapy</h3>\nKautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.\n\n<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\nClick now for more info\n</a>\n<h2>Spinal\nDecompression</h2>\nDecompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\n<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\nOther Conditions\n</a>\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>\n<h4>Get in touch</h4>\nLocation\n\n700 Eagle Ridge Rd, Le Claire, IA 52753\n\nContact Us\n\nPhone : 563-289-3242\n\nkautzchiropractic@gmail.com\n\nOur Hours\n\nMON: 8AM-7:00PM\nTUE: 8AM-7:00PM\nWED: 8AM-7:00PM\nFRI: 8AM-5:00PM\nSAT: 8AM-NOON\n\nFollow Us\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\">\nYoutube\n</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 14:06:51','2019-02-11 14:06:51','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(254,1,'2019-02-11 13:27:36','2019-02-11 13:27:36','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely<br />and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:27:36','2019-02-11 13:27:36','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(255,1,'2019-02-11 13:36:01','2019-02-11 13:36:01','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:36:01','2019-02-11 13:36:01','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(256,1,'2019-02-11 13:44:56','2019-02-11 13:44:56','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant<br />Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd,<br />that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and<br />board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife,<br />Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:44:56','2019-02-11 13:44:56','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(257,1,'2019-02-11 13:51:27','2019-02-11 13:51:27','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:51:27','2019-02-11 13:51:27','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(258,1,'2019-02-11 13:55:41','2019-02-11 13:55:41','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:55:41','2019-02-11 13:55:41','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(259,1,'2019-02-11 13:56:15','2019-02-11 13:56:15','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 13:56:15','2019-02-11 13:56:15','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(260,1,'2019-02-11 14:01:03','2019-02-11 14:01:03','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 14:01:03','2019-02-11 14:01:03','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(261,1,'2019-02-11 14:02:10','2019-02-11 14:02:10','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 14:02:10','2019-02-11 14:02:10','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(262,1,'2019-02-11 14:05:25','2019-02-11 14:05:25','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<h2>Call now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>\n<p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />Mon, Tue, Fri 7 AM – 1:30<br />THURS 7 AM – 5 PM.</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<h2>Want to know more?</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Ruby Leota</figcaption>\n										</figure>\n			<h2>Ruby Leota</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Book your appointment Now!</h2>		\n			<a href=\"#\" role=\"button\">\n						Click here\n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-02-11 14:05:25','2019-02-11 14:05:25','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(269,1,'2019-02-11 14:21:05','2019-02-11 14:21:05','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 14:21:05','2019-02-11 14:21:05','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(264,1,'2019-02-11 14:11:45','2019-02-11 14:11:45','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 14:11:45','2019-02-11 14:11:45','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(267,1,'2019-02-11 14:16:39','2019-02-11 14:16:39','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px -40px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"-100px\",\"bottom_margin\":\"\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 14:16:39','2019-02-11 14:16:39','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(268,1,'2019-02-11 14:17:27','2019-02-11 14:17:27','<!-- wp:siteorigin-panels/layout-block {\"panelsData\":{\"widgets\":[{\"title\":\"\",\"text\":\"\\u003cstrong\\u003eAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely \\u003c/strong\\u003e\\u003cstrong\\u003eand bring it to your first appointment along with your insurance card.\\u003c/strong\\u003e\\n\\n\\u003cstrong\\u003eWe are currently enrolled in most major health insurance companies including Blue Cross Blue Shield \\u003c/strong\\u003e\\u003cstrong\\u003ePPO, United Health Care and Medicare. Please call our office to verify the coverage of your insurance at \\u003c/strong\\u003e\\u003cstrong\\u003e563-289-3242.\\u003c/strong\\u003e\",\"text_selected_editor\":\"tinymce\",\"autop\":\"on\",\"_sow_form_id\":\"8266430515c6167b6af2ed585218330\",\"_sow_form_timestamp\":\"1549887482401\",\"panels_info\":{\"class\":\"SiteOrigin_Widget_Editor_Widget\",\"raw\":true,\"grid\":0,\"cell\":0,\"id\":0,\"widget_id\":\"9e9ddf76-a6b0-4a2d-9107-36188fa7f46e\",\"style\":{\"id\":\"\",\"class\":\"\",\"widget_css\":\"\",\"mobile_css\":\"\",\"margin\":\"0px 0px 0px -40px\",\"padding\":\"0px 0px 0px 0px\",\"mobile_padding\":\"\",\"background\":\"\",\"background_image_attachment\":\"0\",\"background_image_attachment_fallback\":\"\",\"background_display\":\"tile\",\"content_alignment\":\"left\",\"border_color\":\"\",\"title_color\":\"#443f3f\",\"headings_color\":\"#443f3f\",\"font_color\":\"\",\"link_color\":\"\"}}}],\"grids\":[{\"cells\":1,\"style\":{\"id\":\"\",\"class\":\"\",\"cell_class\":\"\",\"row_css\":\"\",\"mobile_css\":\"\",\"padding\":\"-150px\",\"bottom_margin\":\"\",\"gutter\":\"\",\"row_stretch\":\"\",\"collapse_behaviour\":\"\",\"collapse_order\":\"\",\"cell_alignment\":\"flex-start\",\"mobile_padding\":\"\",\"bottom_border\":\"\",\"background\":\"\",\"color\":\"\",\"background_image\":\"0\",\"background_image_fallback\":\"\",\"overlay_color\":\"#000000\"},\"ratio\":1,\"ratio_direction\":\"right\"}],\"grid_cells\":[{\"grid\":0,\"index\":0,\"weight\":1,\"style\":{}}]}} /-->\n\n<!-- wp:pdfemb/pdf-embedder-viewer {\"pdfID\":222,\"url\":\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf\"} -->\n<p class=\"wp-block-pdfemb-pdf-embedder-viewer\"></p>\n<!-- /wp:pdfemb/pdf-embedder-viewer -->','New Patients','','inherit','closed','closed','','139-revision-v1','','','2019-02-11 14:17:27','2019-02-11 14:17:27','',139,'http://kautzchiro.journeysoup.com/139-revision-v1/',0,'revision','',0),(270,1,'2019-02-11 16:22:07','2019-02-11 16:22:07','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 16:22:07','2019-02-11 16:22:07','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(271,1,'2019-02-11 16:23:08','2019-02-11 16:23:08','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, laser and ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<h2>Call right now for your appointment.</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/about-us/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-02-11 16:23:08','2019-02-11 16:23:08','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(290,1,'2019-03-29 22:49:31','2019-03-29 22:49:31','{\n    \"sydney::slider_subtitle_2\": {\n        \"value\": \"Certified Chiropractic Sports Physician\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-29 22:48:58\"\n    },\n    \"sydney::slider_subtitle_1\": {\n        \"value\": \"Specializing in sports injuries, disc injuries, and trauma cases.\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-29 22:49:23\"\n    }\n}','','','trash','closed','closed','','2aa29d59-2035-4e90-981c-e868a48c0f77','','','2019-03-29 22:49:31','2019-03-29 22:49:31','',0,'http://kautzchiro.journeysoup.com/?p=290',0,'customize_changeset','',0),(299,1,'2019-03-29 23:17:48','2019-03-29 23:17:48','<h2>Conditions and Services</h2>\nDr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.\n\n<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Conditions that are effectively treated in our office include:</h2>\nBulging and compressed discs\nSciatica\nMigraines\nPlantar Fasciitis\nTennis Elbow\nCarpal Tunnel Syndrome\nBursitis of shoulder, knee, or hip\nCommon neck and back pain\n<h2>Treatments used to effectively treat conditions include:</h2>\nFlexion-Distraction Therapy\nTherapeutic Ultrasound\nElectric Stimulation\nMyofascial Release\nMassage Therapy\nHome exercise program\n\n<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Book your appointment today</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nClick here\n</a>\n<h2>NSSP Decompression Therapy</h2>\nNon-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated\ndiscs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-03-29 23:17:48','2019-03-29 23:17:48','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(279,1,'2019-02-11 17:42:08','2019-02-11 17:42:08','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:42:08','2019-02-11 17:42:08','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(278,1,'2019-02-11 17:36:17','2019-02-11 17:36:17','','computer-3343887_1920','','inherit','open','closed','','computer-3343887_1920','','','2019-02-11 17:36:17','2019-02-11 17:36:17','',136,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/computer-3343887_1920.jpg',0,'attachment','image/jpeg',0),(280,1,'2019-02-11 17:43:07','2019-02-11 17:43:07','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:43:07','2019-02-11 17:43:07','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(281,1,'2019-02-11 17:44:10','2019-02-11 17:44:10','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:44:10','2019-02-11 17:44:10','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(282,1,'2019-02-11 17:46:18','2019-02-11 17:46:18','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:46:18','2019-02-11 17:46:18','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(283,1,'2019-02-11 17:47:08','2019-02-11 17:47:08','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:47:08','2019-02-11 17:47:08','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(284,1,'2019-02-11 17:56:33','2019-02-11 17:56:33','<h2>Conditions and Services</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Click here\n					</a>\n			<h2>NSSP Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-02-11 17:56:33','2019-02-11 17:56:33','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(293,1,'2019-03-29 22:55:30','2019-03-29 22:55:30','<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/kOprDx_NUnM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','7c8a386e950722ec6512928354e8ffab','','','2019-03-29 22:55:30','2019-03-29 22:55:30','',0,'http://kautzchiro.journeysoup.com/7c8a386e950722ec6512928354e8ffab/',0,'oembed_cache','',0),(294,1,'2019-03-29 22:55:30','2019-03-29 22:55:30','<iframe width=\"1170\" height=\"878\" src=\"https://www.youtube.com/embed/7KRQSel4gh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','42410b44957cf766976d86e6cb623026','','','2019-03-29 22:55:30','2019-03-29 22:55:30','',0,'http://kautzchiro.journeysoup.com/42410b44957cf766976d86e6cb623026/',0,'oembed_cache','',0),(301,1,'2019-03-29 23:20:32','2019-03-29 23:20:32','<h2>Kautz Chiropractic</h2>\nKautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs.&nbsp;\n\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nCALL NOW\n</a>\n<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"><figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption></figure>\n<h3>New Patients</h3>\nAfter scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.\n\n<a href=\"http://kautzchiro.journeysoup.com/new-patients/\" role=\"button\">\n**PDF for New Patient Paperwork\n</a>\nhttps://www.youtube.com/watch?v=kOprDx_NUnM\n<h4>Meet Our Team</h4>\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3>\nDr. Courtney Kautz, D.C. CCSP\n\nDr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked\nher interest in chiropractic care and led to her future as a chiropractic sports physician.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3>\nDr. Ron Shepherd, D.C. DACBSP\n\nDr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.\n<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3>\nMassage Therepist\n\nJade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.\n<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\"></a></figure>\n<h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3>\nreceptionist\n\nRuby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies\n<h3>Message Therapy</h3>\nKautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.\n\n<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\nClick now for more info\n</a>\n<h2>Spinal\nDecompression</h2>\nDecompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints.&nbsp;\n\n<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\nClick For More Info\n</a>\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU\n<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>\n<h4>Get in Touch</h4>\nLocation\n\n700 Eagle Ridge Rd, Le Claire, IA 52753\n\nContact Us\n\nPhone : 563-289-3242\n\nkautzchiropractic@gmail.com\n\nOur Hours\n\nMON: 8AM-7:00PM\nTUE: 8AM-7:00PM\nWED: 8AM-7:00PM\nFRI: 8AM-5:00PM\nSAT: 8AM-NOON\n\nFollow Us\n<a href=\"\" target=\"_blank\">\nFacebook\n</a>\n<a href=\"\" target=\"_blank\">\nTwitter\n</a>\n<a href=\"\" target=\"_blank\">\nGoogle-plus\n</a>\n<a href=\"\" target=\"_blank\">\nYoutube\n</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-29 23:20:32','2019-03-29 23:20:32','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(298,1,'2019-03-29 23:03:46','2019-03-29 23:03:46','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						CALL NOW\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/new-patients/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n		https://www.youtube.com/watch?v=kOprDx_NUnM		\n			<h4>Meet Our Team</h4>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Click For More Info\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in Touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-29 23:03:46','2019-03-29 23:03:46','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(296,1,'2019-03-29 22:59:05','2019-03-29 22:59:05','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						CALL NOW\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/new-patients/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n		https://www.youtube.com/watch?v=kOprDx_NUnM		\n			<h4>Meet Our Team</h4>		\n		<p>You can put whatever tagline you want here</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Other Conditions\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-29 22:59:05','2019-03-29 22:59:05','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(303,1,'2019-03-29 23:24:54','2019-03-29 23:24:54','<h2>Conditions and Treatments</h2>\nDr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.\n\n<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Conditions that are effectively treated in our office include:</h2>\nBulging and compressed discs\nSciatica\nMigraines\nPlantar Fasciitis\nTennis Elbow\nCarpal Tunnel Syndrome\nBursitis of shoulder, knee, or hip\nCommon neck and back pain\n<h2>Treatments used to effectively treat conditions include:</h2>\nFlexion-Distraction Therapy\nTherapeutic Ultrasound\nElectric Stimulation\nMyofascial Release\nMassage Therapy\nHome exercise program\n\n<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Book your appointment today</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nCall Now\n</a>\n<h2>Spinal Decompression Therapy</h2>\nNon-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated\ndiscs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Treatments','','inherit','closed','closed','','136-revision-v1','','','2019-03-29 23:24:54','2019-03-29 23:24:54','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(302,1,'2019-03-29 23:21:32','2019-03-29 23:21:32','<h2>Conditions and Treatments</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now\n					</a>\n			<h2>Spinal Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-03-29 23:21:32','2019-03-29 23:21:32','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(306,1,'2019-03-29 23:34:55','2019-03-29 23:34:55','<h2>Meet the Team</h2>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/court-circle-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h2>Dr. Courtney Kautz </h2>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>\n<p>Dr. Courtney went on to play collegiate soccer at Augustana College in Rock Island, IL and then to Palmer College of Chiropractic in Davenport, IA. To balance out the studying, Dr. Courtney was involved in numerous clubs including the women’s soccer team and the sports chiropractic club. After graduation, Dr. Courtney completed advanced training to become certified as a chiropractic sports physician which enables her to adequately treat injuries of the shoulder, elbow, wrist, hip, knee, and ankle effectively.</p>\n<p>Today, Dr. Courtney continues to live in the Quad Cities with her husband, Mike, and their rescue dogs, Remi and Maisy. She loves to trail run with the pups and work on DIY projects at home with her husband. Dr. Courtney looks forward to continuing to provide top notch, individualized care as a leading sports chiropractor in the Le Claire and surrounding communities.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Dr. Ron Shepherd, D.C. DACBSP</figcaption>\n										</figure>\n			<h2>Dr. Ron Shepherd</h2>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p><p>At this time, Dr. Shepherd has reduced his hours to part-time and is no longer accepting new patients. He will continue to see his current patients during the following hours:<br />MON, TUE, FRI 7 AM – 1:30 PM<br />THURS 7 AM – 5 PM</p>		\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-3-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Jade Schroeder, LMT</figcaption>\n										</figure>\n			<h2>Jade Schroeder</h2>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients. <br><br>Outside of work Jade loves spending time with her four children and extended family. She loves the outdoors, playing sports, being active and reading.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						More About Massage\n					</a>\n							<figure>\n										<img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/pic-4-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											<figcaption>Ruby Leota</figcaption>\n										</figure>\n			<h2>Ruby Leota</h2>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the West coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé, participating in bible study, and enjoying time with her daughter and puppies.</p>		\n			<h2>Book your appointment Now!</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now \n					</a>','Meet the Team','','inherit','closed','closed','','14-revision-v1','','','2019-03-29 23:34:55','2019-03-29 23:34:55','',14,'http://kautzchiro.journeysoup.com/14-revision-v1/',0,'revision','',0),(307,1,'2019-03-29 23:42:10','2019-03-29 23:42:10','<h2>Contact</h2>		\n			<h2>Our Hours</h2>		\n			<h6>Dr. Kautz</h6>		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			<h6>Dr. Shepherd</h6>		\n		<p>MON: 7AM-1:30PM<br />TUE: 7AM-1:30PM<br />THU: 7AM-5:00pm<br />FRI: 7AM-1:30PM<br /><br /></p>		\n			<h4>Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-03-29 23:42:10','2019-03-29 23:42:10','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(308,1,'2019-03-29 23:43:24','2019-03-29 23:43:24','<h2>Contact</h2>		\n			<h2>Our Hours</h2>		\n			<h6>Dr. Kautz</h6>		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			<h6>Dr. Shepherd</h6>		\n		<p>MON: 7AM-1:30PM<br />TUE: 7AM-1:30PM<br />THU: 7AM-5:00pm<br />FRI: 7AM-1:30PM<br /><br /></p>		\n			<h4>Kautzchiropractic@gmail.com<br>Office: 563-289-3242<br>Fax: 563-289-4541</h4>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Instagram\n				</a>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=15&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>','Contact Us','','inherit','closed','closed','','18-revision-v1','','','2019-03-29 23:43:24','2019-03-29 23:43:24','',18,'http://kautzchiro.journeysoup.com/18-revision-v1/',0,'revision','',0),(309,1,'2019-03-30 00:26:10','2019-03-30 00:26:10','<h2>Conditions and Treatments</h2>\nDr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.\n\n<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Conditions that are effectively treated in our office include:</h2>\nBulging and compressed discs\nSciatica\nMigraines\nPlantar Fasciitis\nTennis Elbow\nCarpal Tunnel Syndrome\nBursitis of shoulder, knee, or hip\nCommon neck and back pain\n<h2>Treatments used to effectively treat conditions include:</h2>\nFlexion-Distraction Therapy\nTherapeutic Ultrasound\nElectric Stimulation\nMyofascial Release\nMassage Therapy\nHome exercise program\n\n<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h2>Book your appointment today</h2>\n<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\nCall Now\n</a>\n<h2>Spinal Decompression Therapy</h2>\nNon-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated\ndiscs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a&nbsp; safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.\n\nhttps://www.youtube.com/watch?v=7KRQSel4gh8&amp;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-03-30 00:26:10','2019-03-30 00:26:10','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(310,1,'2019-03-30 00:26:10','2019-03-30 00:26:10','<h2>Conditions and Treatments</h2>		\n			<p>Dr. Courtney is a Certified Chiropractic Sports Physician specializing in the treatment of common sports\ninjuries, compressed and bulging discs, and trauma cases.</p>		\n										<img width=\"1024\" height=\"687\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-1024x687.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-300x201.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-768x515.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-830x557.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-230x154.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-350x235.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703412_1920-480x322.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Conditions that are effectively treated in our office include:</h2>		\n		<p>Bulging and compressed discs<br />Sciatica<br />Migraines<br />Plantar Fasciitis<br />Tennis Elbow<br />Carpal Tunnel Syndrome<br />Bursitis of shoulder, knee, or hip<br />Common neck and back pain</p>		\n			<h2>Book your appointment today</h2>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						Call Now\n					</a>\n			<h2>Treatments used to effectively treat conditions include:</h2>		\n		<p>Flexion-Distraction Therapy<br />Therapeutic Ultrasound<br />Electric Stimulation<br />Myofascial Release<br />Massage Therapy<br />Home exercise program</p>		\n										<img width=\"1024\" height=\"659\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-1024x659.jpg 1024w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-300x193.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-768x494.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-830x534.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-230x148.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-350x225.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/body-2703405_1920-480x309.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>Spinal Decompression Therapy</h2>		\n		<p>Non-surgical spinal decompression therapy is a conservative treatment option for bulging or herniated<br />discs, pinched nerves, degenerative disc disease and sciatica. Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. Click button below for more conditions that are effectively treated in our office.</p>https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU','Conditions and Services','','inherit','closed','closed','','136-revision-v1','','','2019-03-30 00:26:10','2019-03-30 00:26:10','',136,'http://kautzchiro.journeysoup.com/136-revision-v1/',0,'revision','',0),(311,1,'2019-03-31 21:31:29','2019-03-31 21:31:29','','KAUTZ','','inherit','open','closed','','kautz','','','2019-03-31 21:31:29','2019-03-31 21:31:29','',0,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/03/KAUTZ.png',0,'attachment','image/png',0),(312,1,'2019-03-31 21:34:26','2019-03-31 21:34:26','{\n    \"custom_css[sydney]\": {\n        \"value\": \".site-header {\\nbackground-color: rgba(100,100,100,.6) !important;\\n}\\n\\n.page header.entry-header {\\ndisplay: none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:34:26\"\n    },\n    \"sydney::site_logo\": {\n        \"value\": \"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/03/KAUTZ.png\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:32:36\"\n    }\n}','','','trash','closed','closed','','012290a1-2924-432b-b231-cfc206171139','','','2019-03-31 21:34:26','2019-03-31 21:34:26','',0,'http://kautzchiro.journeysoup.com/?p=312',0,'customize_changeset','',0),(315,1,'2019-03-31 21:37:34','2019-03-31 21:37:34','.site-header {\nbackground-color: rgba(50,50,50,.1) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-03-31 21:37:34','2019-03-31 21:37:34','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(313,1,'2019-03-31 21:34:26','2019-03-31 21:34:26','.site-header {\nbackground-color: rgba(100,100,100,.6) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-03-31 21:34:26','2019-03-31 21:34:26','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(314,1,'2019-03-31 21:37:34','2019-03-31 21:37:34','{\n    \"custom_css[sydney]\": {\n        \"value\": \".site-header {\\nbackground-color: rgba(50,50,50,.1) !important;\\n}\\n\\n.page header.entry-header {\\ndisplay: none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:37:34\"\n    }\n}','','','trash','closed','closed','','fb739409-ab1c-40ca-930d-87b96903d549','','','2019-03-31 21:37:34','2019-03-31 21:37:34','',0,'http://kautzchiro.journeysoup.com/?p=314',0,'customize_changeset','',0),(316,1,'2019-03-31 21:39:23','2019-03-31 21:39:23','{\n    \"custom_css[sydney]\": {\n        \"value\": \".site-header {\\nbackground-color: rgba(100,100,100,.6) !important;\\n}\\n\\n.page header.entry-header {\\ndisplay: none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:39:23\"\n    }\n}','','','trash','closed','closed','','3a9520a7-def2-4497-aa53-c60a0a0924b9','','','2019-03-31 21:39:23','2019-03-31 21:39:23','',0,'http://kautzchiro.journeysoup.com/?p=316',0,'customize_changeset','',0),(317,1,'2019-03-31 21:39:23','2019-03-31 21:39:23','.site-header {\nbackground-color: rgba(100,100,100,.6) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-03-31 21:39:23','2019-03-31 21:39:23','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(318,1,'2019-03-31 21:42:02','2019-03-31 21:42:02','<h2>Kautz Chiropractic</h2>		\n		<p>Kautz Chiropractic, LLC is a unique chiropractic experience. As a highly trained chiropractic sports physician, Dr. Courtney believes in finding the correct problem and fixing it fast to get you out of pain and on with your day. She uses a variety of evidence-based treatments to effectively treat your injury including chiropractic adjustments, massage therapy, traction, ultrasound therapy and at-home exercises. There is no cookie cutter approach at Kautz Chiropractic. You will receive individualized care, specific to your injury and needs. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/contact-us/\" role=\"button\">\n						CALL NOW\n					</a>\n							<figure>\n										<img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" />											<figcaption>DR. COURTNEY KAUTZ, D.C. CCSP</figcaption>\n										</figure>\n			<h3>New Patients</h3>		\n		<p>After scheduling your new patient appointment, please print off the paperwork below, fill it out entirely and bring it to your first appointment along with your insurance card.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/new-patients/\" role=\"button\">\n						**PDF for New Patient Paperwork\n					</a>\n		https://www.youtube.com/watch?v=kOprDx_NUnM		\n			<h4>Meet Our Team</h4>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/court-circle-o2oj7337x6h181fi0iybgj5cecjjqo43tq1s29ltag.jpg\" title=\"court-circle\" alt=\"court-circle\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Courtney Kautz</a></h3><p>Dr. Courtney Kautz, D.C. CCSP</p>		\n		<p>Dr. Courtney Kautz was born and raised in the Quad City area. She was a three-sport athlete at Pleasant Valley High School where she was first exposed to chiropractic care. It was her mentor, Dr. Shepherd, that treated her sprained ankles and got her back to the competition quickly. This experience sparked<br />her interest in chiropractic care and led to her future as a chiropractic sports physician.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img width=\"1000\" height=\"1000\" src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg\" alt=\"\" srcset=\"http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web.jpg 1000w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-150x150.jpg 150w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-300x300.jpg 300w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-768x768.jpg 768w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-830x830.jpg 830w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-230x230.jpg 230w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-350x350.jpg 350w, http://kautzchiro.journeysoup.com/wp-content/uploads/2019/01/ron-web-480x480.jpg 480w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Dr. Ron Shepherd</a></h3><p>Dr. Ron Shepherd, D.C. DACBSP</p>		\n		<p>Dr. Ron Shepherd has been a chiropractor in Le Claire, IA for nearly 28 years. He is highly trained and board certified in orthopedics and as a sports physician. Dr. Shepherd loves to spend time with his wife, Donna and go on long walks with their four dogs, Toby, Autumn, Summer and Bear.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-3-o2oj74yv2zr69971amwehftwjs2nib3um6rkvf1sww.jpg\" title=\"pic-3\" alt=\"pic-3\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\">Jade Schroeder</a></h3><p>Massage Therepist  </p>		\n		<p>Jade Schroeder has been a licensed massage therapist since July 2011. She received her training from the Institute of Therapeutic Massage and Wellness in Davenport, IA. Jade has extended training in prenatal, reflexology, aromatherapy, and sports massage with the once Quad Cities Mallards. She is very passionate about the total and balanced health and wellness of the complete mind, body, and soul structure. Jade enjoys learning all she can and applying her knowledge and heart to her practice to better serve her clients.</p>		\n			<figure><a href=\"http://kautzchiro.journeysoup.com/about-us/\"><img src=\"http://kautzchiro.journeysoup.com/wp-content/uploads/elementor/thumbs/pic-4-o2oj77sdnhv1832xu64a6x4abxor5ef1mkq1b8xme8.jpg\" title=\"pic-4\" alt=\"pic-4\" /></a></figure><h3><a href=\"http://kautzchiro.journeysoup.com/about-us/\">Ruby Leota</a></h3><p>receptionist</p>		\n		<p>Ruby Leota joined Kautz Chiropractic in the fall of 2018. She moved to the Midwest with her family after spending the last 8 years on the west coast. Ruby is highly experienced as a medical receptionist and has nearly 8 years in the field. Outside of work, Ruby enjoys golfing with her fiancé participating in bible study, and enjoying time with her daughter and puppies</p>		\n			<h3>Message Therapy</h3>		\n		<p>Kautz Chiropractic is lucky to have Jade Schroeder, LMT, the premier massage therapist in Le Claire, IA and surrounding communities. Her treatments consist of a variety of techniques including deep tissue, trigger point, Swedish and pre-natal massage.</p>		\n			<a href=\"http://kautzchiro.journeysoup.com/massage-therapy/\" role=\"button\">\n						Click now for more info\n					</a>\n			<h2>Spinal\nDecompression</h2>		\n		<p>Decompression can be used on the neck or low back regions as a  safe, non-invasive treatment of disc injuries. The decompression device gently stretches the spine in an oscillating fashion to relieve pressure and stimulate healing of the pinched nerve, bulging discs and facet joints. </p>		\n			<a href=\"http://kautzchiro.journeysoup.com/conditions/\" role=\"button\">\n						Click For More Info\n					</a>\n		https://www.youtube.com/watch?v=7KRQSel4gh8&#038;fbclid=IwAR1pH2sjw7QoP96kpZzXt5CZsFkcOKCtSa13pGgu8q8OKXP9xZUx32640AU		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=700%20Eagle%20Ridge%20Rd%2C%20Le%20Claire%2C%20IA%2052753&amp;t=m&amp;z=14&amp;output=embed&amp;iwloc=near\" aria-label=\"700 Eagle Ridge Rd, Le Claire, IA 52753\"></iframe>		\n			<h4>Get in Touch</h4>		\n			Location		\n		<p>700 Eagle Ridge Rd, Le Claire, IA 52753</p>		\n			Contact Us		\n		<p>Phone : 563-289-3242</p><p>kautzchiropractic@gmail.com</p>		\n			Our Hours		\n		<p>MON: 8AM-7:00PM<br />TUE: 8AM-7:00PM<br />WED: 8AM-7:00PM<br />FRI: 8AM-5:00PM<br />SAT: 8AM-NOON</p>		\n			Follow Us		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Youtube\n				</a>','Home','','inherit','closed','closed','','12-revision-v1','','','2019-03-31 21:42:02','2019-03-31 21:42:02','',12,'http://kautzchiro.journeysoup.com/12-revision-v1/',0,'revision','',0),(319,1,'2019-03-31 21:48:01','2019-03-31 21:48:01','{\n    \"sydney::primary_color\": {\n        \"value\": \"#dd3333\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:47:10\"\n    },\n    \"sydney::menu_items_hover\": {\n        \"value\": \"#6ec1e4\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:48:01\"\n    }\n}','','','trash','closed','closed','','2e943873-0788-4e22-80ef-e124871507bd','','','2019-03-31 21:48:01','2019-03-31 21:48:01','',0,'http://kautzchiro.journeysoup.com/?p=319',0,'customize_changeset','',0),(320,1,'2019-03-31 21:48:29','2019-03-31 21:48:29','{\n    \"sydney::primary_color\": {\n        \"value\": \"#6ec1e4\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:48:29\"\n    }\n}','','','trash','closed','closed','','294c8555-93d5-4e20-bdfb-7efb97c61566','','','2019-03-31 21:48:29','2019-03-31 21:48:29','',0,'http://kautzchiro.journeysoup.com/294c8555-93d5-4e20-bdfb-7efb97c61566/',0,'customize_changeset','',0),(321,1,'2019-03-31 21:50:15','2019-03-31 21:50:15','{\n    \"sydney::site_title_color\": {\n        \"value\": \"#ffffff\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:50:15\"\n    },\n    \"sydney::top_items_color\": {\n        \"value\": \"#0a0a0a\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:50:15\"\n    }\n}','','','trash','closed','closed','','f8d7dee3-227a-4dd7-a214-1fb071eaf06d','','','2019-03-31 21:50:15','2019-03-31 21:50:15','',0,'http://kautzchiro.journeysoup.com/?p=321',0,'customize_changeset','',0),(322,1,'2019-03-31 21:50:29','2019-03-31 21:50:29','{\n    \"custom_css[sydney]\": {\n        \"value\": \".site-header {\\nbackground-color: rgba(100,100,100,.1) !important;\\n}\\n\\n.page header.entry-header {\\ndisplay: none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:50:29\"\n    }\n}','','','trash','closed','closed','','ac56048e-1dfd-4f42-9421-898bf69c3d29','','','2019-03-31 21:50:29','2019-03-31 21:50:29','',0,'http://kautzchiro.journeysoup.com/ac56048e-1dfd-4f42-9421-898bf69c3d29/',0,'customize_changeset','',0),(323,1,'2019-03-31 21:50:29','2019-03-31 21:50:29','.site-header {\nbackground-color: rgba(100,100,100,.1) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-03-31 21:50:29','2019-03-31 21:50:29','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(324,1,'2019-03-31 21:51:28','2019-03-31 21:51:28','{\n    \"custom_css[sydney]\": {\n        \"value\": \".site-header {\\nbackground-color: rgba(100,100,100,.6) !important;\\n}\\n\\n.page header.entry-header {\\ndisplay: none;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 21:51:28\"\n    }\n}','','','trash','closed','closed','','d355bc11-96f4-40d7-9f37-b151e686bf3c','','','2019-03-31 21:51:28','2019-03-31 21:51:28','',0,'http://kautzchiro.journeysoup.com/d355bc11-96f4-40d7-9f37-b151e686bf3c/',0,'customize_changeset','',0),(325,1,'2019-03-31 21:51:28','2019-03-31 21:51:28','.site-header {\nbackground-color: rgba(100,100,100,.6) !important;\n}\n\n.page header.entry-header {\ndisplay: none;\n}','sydney','','inherit','closed','closed','','72-revision-v1','','','2019-03-31 21:51:28','2019-03-31 21:51:28','',72,'http://kautzchiro.journeysoup.com/72-revision-v1/',0,'revision','',0),(326,1,'2019-03-31 22:03:32','2019-03-31 22:03:32','{\n    \"sydney::top_items_color\": {\n        \"value\": \"#ffffff\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-31 22:03:32\"\n    }\n}','','','trash','closed','closed','','841cce76-ad6b-4045-8891-ee5db1abb364','','','2019-03-31 22:03:32','2019-03-31 22:03:32','',0,'http://kautzchiro.journeysoup.com/841cce76-ad6b-4045-8891-ee5db1abb364/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (177,2,0),(138,2,0),(34,1,0),(27,2,0),(141,2,0),(30,2,0),(28,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,6);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Menu','menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Andrew'),(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','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,plugin_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:6:{s:64:\"48c27494761b53915a400a130fb0c2d0e7528fa544e8f8f000962f2983926e0b\";a:4:{s:10:\"expiration\";i:1554071795;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553898995;}s:64:\"5f491a8806c3ca59284f378415d3f84dc5a0a047d492ae7e883c2fe563afc7a2\";a:4:{s:10:\"expiration\";i:1554071795;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553898995;}s:64:\"8ffbd08ce5dead49e7a1e1bb4ee2de76a923bcfcbd39c1147cbbab26b69bcae2\";a:4:{s:10:\"expiration\";i:1554076263;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553903463;}s:64:\"379ad4e215670ffe825ae8e3d8e6767f173cdc92c717ed0f20d3dd1f2f7ad219\";a:4:{s:10:\"expiration\";i:1554076267;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553903467;}s:64:\"a3a070ee805a0c9b5823974445db14c4fe62243948eca9cb7ad37bf5a4d71c73\";a:4:{s:10:\"expiration\";i:1554079371;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553906571;}s:64:\"29f3917ba239bd1a7db9f9531465b399c9a58ae6f5d42fc2ebce8a208a07b955\";a:4:{s:10:\"expiration\";i:1554236275;s:2:\"ip\";s:12:\"98.213.82.99\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1554063475;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','287'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"98.213.82.0\";}'),(19,1,'jetpack_tracks_anon_id','jetpack:SGL4I99OPipDag86waNSuTHc'),(20,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\";}'),(21,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(22,1,'nav_menu_recently_edited','2'),(23,1,'wp_user-settings','libraryContent=browse&editor=tinymce&siteorigin_panels_setting_tab=general'),(24,1,'wp_user-settings-time','1549893729'),(26,1,'wp_media_library_mode','grid'),(27,1,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:323:\"The configuration wizard helps you to easily configure your site to have the optimal SEO settings.<br/>We have detected that you have not finished this wizard yet, so we recommend you to <a href=\"http://kautzchiro.journeysoup.com/wp-admin/?page=wpseo_configurator\">start the configuration wizard to configure Yoast SEO</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:31:\"wpseo-dismiss-onboarding-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:1129:\"We\'ve noticed you\'ve been using Yoast SEO for some time now; we hope you love it! We\'d be thrilled if you could <a href=\"https://yoa.st/rate-yoast-seo?php_version=7.0.33&platform=wordpress&platform_version=5.0.4&software=free&software_version=10.0&role=administrator&days_active=17\">give us a 5 stars rating on WordPress.org</a>!\n\nIf you are experiencing issues, <a href=\"https://yoa.st/bugreport?php_version=7.0.33&platform=wordpress&platform_version=5.0.4&software=free&software_version=10.0&role=administrator&days_active=17\">please file a bug report</a> and we\'ll do our best to help you out.\n\nBy the way, did you know we also have a <a href=\'https://yoa.st/premium-notification?php_version=7.0.33&platform=wordpress&platform_version=5.0.4&software=free&software_version=10.0&role=administrator&days_active=17\'>Premium plugin</a>? It offers advanced features, like a redirect manager and support for multiple keyphrases. It also comes with 24/7 personal support.\n\n<a class=\"button\" href=\"http://kautzchiro.journeysoup.com/wp-admin/?page=wpseo_dashboard&yoast_dismiss=upsell\">Please don\'t show me this notification anymore</a>\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-upsell-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:176:\"Don\'t miss your crawl errors: <a href=\"http://kautzchiro.journeysoup.com/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(25,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(28,1,'_yoast_wpseo_profile_updated','1553900437');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'Andrew','$P$BPXHOHQTlnQPzcWnEDQFjzzUWDoxmH/','Andrew','admin@kautzchiro.journeysoup.com','','2019-01-16 07:36:42','',0,'Andrew');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpforms_lite`
--

DROP TABLE IF EXISTS `wp_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_lite`
--

LOCK TABLES `wp_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=296 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (295,'',12,0,'internal'),(294,'',12,0,'internal'),(293,'',12,0,'internal'),(292,'',12,0,'internal'),(291,'http://kautzchiro.journeysoup.com/conditions/',12,136,'internal'),(290,'http://kautzchiro.journeysoup.com/massage-therapy/',12,175,'internal'),(289,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(288,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(287,'http://kautzchiro.journeysoup.com/massage-therapy/',12,175,'internal'),(286,'http://kautzchiro.journeysoup.com/massage-therapy/',12,175,'internal'),(285,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(284,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(283,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(282,'http://kautzchiro.journeysoup.com/about-us/',12,14,'internal'),(281,'http://kautzchiro.journeysoup.com/new-patients/',12,139,'internal'),(280,'http://kautzchiro.journeysoup.com/contact-us/',12,18,'internal'),(130,'http://kautzchiro.journeysoup.com/wp-content/uploads/2019/02/IntakeFormPDF-2.pdf',139,0,'internal'),(247,'http://kautzchiro.journeysoup.com/contact-us/',136,18,'internal'),(222,'#',175,0,'internal'),(230,'http://kautzchiro.journeysoup.com/massage-therapy/',14,175,'internal'),(229,'http://kautzchiro.journeysoup.com/contact-us/',14,18,'internal'),(231,'http://kautzchiro.journeysoup.com/contact-us/',14,18,'internal'),(243,'',18,0,'internal'),(242,'',18,0,'internal');
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (286,0,0),(12,16,0),(14,3,6),(18,2,4),(136,1,1),(175,1,4),(288,0,0),(295,0,0),(139,1,1),(297,0,0),(300,0,0),(304,0,0),(287,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-04-12 22:17:14
