/** * Mobile Menu Header Configuration. * * @package Astra * @link https://wpastra.com/ * @since 4.5.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Register mobile-menu header builder Customizer Configurations. * * @since 4.5.2 * @return array Astra Customizer Configurations with updated configurations. */ function astra_header_mobile_menu_configuration() { $_section = 'section-header-mobile-menu'; $_configs = array( /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), // Section: Primary Header. array( 'name' => $_section, 'type' => 'section', 'title' => __( 'Off-Canvas Menu', 'astra' ), 'panel' => 'panel-header-builder-group', 'priority' => 40, ), /** * Option: Theme Menu create link */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-create-menu-link]', 'default' => astra_get_option( 'header-mobile-menu-create-menu-link' ), 'type' => 'control', 'control' => 'ast-customizer-link', 'section' => $_section, 'priority' => 30, 'link_type' => 'section', 'linked' => 'menu_locations', 'link_text' => __( 'Configure Menu from Here.', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing ast-bottom-section-divider' ), ), // Option: Submenu Divider Checkbox. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-border' ), 'type' => 'control', 'control' => 'ast-toggle-control', 'section' => $_section, 'priority' => 150, 'title' => __( 'Item Divider', 'astra' ), 'context' => Astra_Builder_Helper::$general_tab, 'transport' => 'postMessage', 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), // Option: Menu Color Divider. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-divider-colors-divider]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-heading', 'title' => __( 'Item Divider', 'astra' ), 'priority' => 150, 'settings' => array(), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option: Submenu item Border Size. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-size]', 'type' => 'control', 'control' => 'ast-slider', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-size' ), 'section' => $_section, 'priority' => 150, 'transport' => 'postMessage', 'title' => __( 'Divider Size', 'astra' ), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), 'suffix' => 'px', 'input_attrs' => array( 'min' => 1, 'step' => 1, 'max' => 10, ), 'divider' => array( 'ast_class' => 'ast-bottom-dotted-divider ast-section-spacing' ), ), // Option: Submenu item Border Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-b-color]', 'default' => astra_get_option( 'header-mobile-menu-submenu-item-b-color' ), 'type' => 'control', 'control' => 'ast-color', 'transport' => 'postMessage', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_alpha_color' ), 'title' => __( 'Divider Color', 'astra' ), 'section' => $_section, 'priority' => 150, 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-submenu-item-border]', 'operator' => '==', 'value' => true, ), ), ), // Option Group: Menu Color. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Link', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => __( 'Menu Color', 'astra' ), 'ast_class' => 'ast-section-spacing', ), ), array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'control', 'control' => 'ast-color-group', 'title' => __( 'Background', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 90, 'context' => Astra_Builder_Helper::$design_tab, 'responsive' => true, 'divider' => array( 'ast_title' => '', 'ast_class' => class_exists( 'Astra_Ext_Extension' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ? 'ast-bottom-dotted-divider' : '', ), ), // Option: Menu Color. array( 'name' => 'header-mobile-menu-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'section' => $_section, 'title' => __( 'Normal', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 7, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Background image, color. array( 'name' => 'header-mobile-menu-bg-obj-responsive', 'default' => astra_get_option( 'header-mobile-menu-bg-obj-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-background', 'section' => $_section, 'transport' => 'postMessage', 'tab' => __( 'Normal', 'astra' ), 'data_attrs' => array( 'name' => 'header-mobile-menu-bg-obj-responsive' ), 'title' => __( 'Normal', 'astra' ), 'priority' => 9, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Color. array( 'name' => 'header-mobile-menu-h-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'tab' => __( 'Hover', 'astra' ), 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'responsive' => true, 'rgba' => true, 'priority' => 19, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Menu Hover Background Color. array( 'name' => 'header-mobile-menu-h-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-h-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'title' => __( 'Hover', 'astra' ), 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Hover', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 21, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Color. array( 'name' => 'header-mobile-menu-a-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-link-colors]', 'type' => 'sub-control', 'section' => $_section, 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'tab' => __( 'Active', 'astra' ), 'title' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 31, 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Active Menu Background Color. array( 'name' => 'header-mobile-menu-a-bg-color-responsive', 'default' => astra_get_option( 'header-mobile-menu-a-bg-color-responsive' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-background-colors]', 'type' => 'sub-control', 'control' => 'ast-responsive-color', 'transport' => 'postMessage', 'section' => $_section, 'title' => __( 'Active', 'astra' ), 'tab' => __( 'Active', 'astra' ), 'responsive' => true, 'rgba' => true, 'priority' => 33, 'context' => Astra_Builder_Helper::$general_tab, ), /** * Option: WOO Off Canvas Menu Submenu Color Section divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-typo-divider]', 'type' => 'control', 'control' => 'ast-heading', 'section' => $_section, 'title' => __( 'Font', 'astra' ), 'priority' => 120, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option Group: Menu Typography. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'default' => astra_get_option( 'header-mobile-menu-header-menu-typography' ), 'type' => 'control', 'control' => 'ast-settings-group', 'title' => __( 'Menu Font', 'astra' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 120, 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing', ), ), // Option: Menu Font Family. array( 'name' => 'header-mobile-menu-font-family', 'default' => astra_get_option( 'header-mobile-menu-font-family', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'type' => 'sub-control', 'section' => $_section, 'transport' => 'postMessage', 'control' => 'ast-font', 'font_type' => 'ast-font-family', 'title' => __( 'Font Family', 'astra' ), 'priority' => 22, 'connect' => 'header-mobile-menu-font-weight', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Weight. array( 'name' => 'header-mobile-menu-font-weight', 'default' => astra_get_option( 'header-mobile-menu-font-weight', 'inherit' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font', 'transport' => 'postMessage', 'font_type' => 'ast-font-weight', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_font_weight' ), 'title' => __( 'Font Weight', 'astra' ), 'priority' => 23, 'connect' => 'header-mobile-menu-font-family', 'context' => Astra_Builder_Helper::$general_tab, 'divider' => array( 'ast_class' => 'ast-sub-bottom-dotted-divider' ), ), // Option: Menu Font Size. array( 'name' => 'header-mobile-menu-font-size', 'default' => astra_get_option( 'header-mobile-menu-font-size' ), 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'priority' => 24, 'title' => __( 'Font Size', 'astra' ), 'control' => 'ast-responsive-slider', 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$general_tab, 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_slider' ), 'suffix' => array( 'px', 'em', 'vw', 'rem' ), 'input_attrs' => array( 'px' => array( 'min' => 0, 'step' => 1, 'max' => 200, ), 'em' => array( 'min' => 0, 'step' => 0.01, 'max' => 20, ), 'vw' => array( 'min' => 0, 'step' => 0.1, 'max' => 25, ), 'rem' => array( 'min' => 0, 'step' => 0.1, 'max' => 20, ), ), ), /** * Option: Font Extras */ array( 'name' => 'font-extras-header-mobile-menu', 'parent' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-header-menu-typography]', 'section' => $_section, 'type' => 'sub-control', 'control' => 'ast-font-extras', 'priority' => 24, 'default' => astra_get_option( 'font-extras-header-mobile-menu' ), 'title' => __( 'Font Extras', 'astra' ), ), /** * Option: Divider */ array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing-divider]', 'section' => $_section, 'title' => __( 'Spacing', 'astra' ), 'type' => 'control', 'control' => 'ast-heading', 'priority' => 150, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-section-spacing' ), ), // Option - Menu Space. array( 'name' => ASTRA_THEME_SETTINGS . '[header-mobile-menu-menu-spacing]', 'default' => astra_get_option( 'header-mobile-menu-menu-spacing' ), 'type' => 'control', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'transport' => 'postMessage', 'section' => $_section, 'priority' => 150, 'title' => __( 'Menu Spacing', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, 'divider' => array( 'ast_class' => 'ast-bottom-section-divider ast-section-spacing' ), ), /** * Option: Margin Space */ array( 'name' => ASTRA_THEME_SETTINGS . '[' . $_section . '-margin]', 'default' => astra_get_option( $_section . '-margin' ), 'type' => 'control', 'transport' => 'postMessage', 'control' => 'ast-responsive-spacing', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_responsive_spacing' ), 'section' => $_section, 'priority' => 220, 'title' => __( 'Margin', 'astra' ), 'linked_choices' => true, 'unit_choices' => array( 'px', 'em', '%' ), 'choices' => array( 'top' => __( 'Top', 'astra' ), 'right' => __( 'Right', 'astra' ), 'bottom' => __( 'Bottom', 'astra' ), 'left' => __( 'Left', 'astra' ), ), 'context' => Astra_Builder_Helper::$design_tab, ), ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section ) ); if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { array_map( 'astra_save_header_customizer_configs', $_configs ); } return $_configs; } if ( Astra_Builder_Customizer::astra_collect_customizer_builder_data() ) { add_action( 'init', 'astra_header_mobile_menu_configuration' ); }{"id":2699,"date":"2024-10-18T17:01:11","date_gmt":"2024-10-18T14:01:11","guid":{"rendered":"https:\/\/mizantechinstitute.com\/group5dm\/?p=2699"},"modified":"2025-11-13T22:27:28","modified_gmt":"2025-11-13T19:27:28","slug":"holyluck-casino-review-2025-free-spins-bonus-codes-5","status":"publish","type":"post","link":"https:\/\/mizantechinstitute.com\/group5dm\/holyluck-casino-review-2025-free-spins-bonus-codes-5\/","title":{"rendered":"Holyluck Casino Review 2025 Free Spins, Bonus Codes & More"},"content":{"rendered":"

We know slots are a favorite for many and that’s why they dominate our library, but we offer much more than that. We’ve created categories to make your experience easier and help you get familiar with the platform right away. You can choose from Popular, New, Editors’ Choice, Bonus Friendly Slots, Instant Games, Jackpots, Drops & Wins, Table Games, and Live Casino. Fortunately, most of our games have holyluck<\/a> a demo mode, so we recommend trying them out before you start betting. Feel the excitement of live dealer online roulette at holyluck.com. Choose from European, American, or French roulette, and take a spin for the chance at significant wins.
\nIf secure transactions matter to you, HolyLuck\u2019s approach to KYC and encryption is worth noting, especially for real-money players in the Netherlands. In this comprehensive review, we\u2019ll explore everything from sign-up steps to VIP rewards, so you can decide whether this casino suits your tastes. Please ensure you meet all legal and regulatory requirements based on your country before playing at any casino listed on this site. Holyluck is a safe online casino site which uses SSL encryption technology. Holyluck also allows players to get daily cashback promos, returning up to 15% of all their lost bets. Verification can help ensure real people are writing the reviews you read on Trustpilot.
\nThey cover types such as Megaways, jackpots and classic titles. Some of the top titles are Sweet Bonanza 1000, Hell Hot 100 and Wanted Dead or Alive. Every online casino, including Holyluck Casino, has its pros and cons. No Holyluck Casino promo codes are required to claim the casino\u2019s bonuses. Simply opt in for a particular bonus and make the required deposit, and the casino will credit it to your account.
\nNo matter what you’re looking for in an online casino, we have already thought of it. Holyluck is the ideal casino for those looking for speed, variety, and reliability. If gambling becomes problematic, consider using our self-exclusion option or taking our self-test. With over 100 games, including online roulette and slots, BGaming is a blockchain gaming pioneer with titles featured across 900 platforms globally. If you are looking for casinos with even better offers and game selection, check our full list of casino reviews on Ace Alliance.
\nDepending on your preferred registration method, you will likely need to provide certain details, including your email, address, and other personal information. Ensure you provide all the necessary information before completing the process. Players can only access the games when they sign up or log in. Benefits of joining the Holyluck VIP programme include up to 20% cashback, extra rakeback offers, and exclusive gifts. We use dedicated people and clever technology to safeguard our platform. It requires government-issued photo ID and proof of address dated within the last three months.<\/p>\n

Level Up Your Game with HolyLuck!<\/h2>\n

Awesome online casino with great games and sports bets.Won a lot of money. Holyluck is a part of Zephyr Holding Sociedad De Responsabilidad Limitada, a company registered and incorporated in Costa Rica. The casino takes security seriously and ensures that players are protected. It uses SSL encryption technology and has other measures in place, including various responsible gambling tools, AML and a privacy policy. Joining Holyluck gives you access to various casino bonuses, including a welcome bonus package, reload offers, and cashback deals. In this section, we cover different bonuses and promotions available at Holyluck to let you know what to expect.<\/p>\n

Want to start playing or betting online?<\/h2>\n

From classic three-reelers to video slots packed with features, we’ve got the range covered. Bonus Buy functionality lets you jump straight to free spins if you’re feeling impatient. Some providers offer elevated RTP versions of their hits. Our casino performs KYC verification, so please have your ID and proof of address at hand to make the process much smoother. And finally, to ensure your winnings are safe, larger withdrawals might trigger additional checks.<\/p>\n

All Holyluck Bonuses<\/h2>\n
    \n
  • Remember that each bonus has different rules, so read the terms before claiming them.<\/li>\n
  • Moreover, the casino\u2019s games are regularly audited by independent bodies for fairness.<\/li>\n
  • If gambling becomes problematic, consider using our self-exclusion option or taking our self-test.<\/li>\n
  • Popular assets like BTC, ETH, and ADA can be used for deposits and withdrawals.<\/li>\n
  • These offers have a 40x wagering requirement and are valid for 7 days.<\/li>\n<\/ul>\n

    HolyLuck Casino operates under Zephyr Holding Sociedad de Responsabilidad Limitada, a company that claims to be behind several online casinos. Unfortunately, the casino’s license and regulatory status are unclear. HolyLuck Casino’s lack of transparency in this regard may raise concerns about its trustworthiness and commitment to secure operations. Players should exercise caution when choosing a casino to play at, ensuring that it adheres to industry standards for fairness and responsible gaming practices.<\/p>\n

      \n
    • It holds a business licence instead of a gambling licence.<\/li>\n
    • It’s as simple as playing, advancing through the ranks, and you’ll start unlocking new rewards.<\/li>\n
    • Players won\u2019t incur extra charges while using them, and all transactions will be private.<\/li>\n
    • The slot section at Holyluck includes games from top developers like Play\u2019n Go, Hacksaw Gaming, BGaming, and Playson, among others.<\/li>\n
    • \u2b50\u2b50\u2b50\u2b50 \u00bd (4.5\/5) \u2014 AoifeSpins “Added the PWA icon to my home screen and now I\u2019m playing from my phone.”<\/li>\n<\/ul>\n

      If you\u2019re open to trying a relatively new brand, HolyLuck may well become your regular gambling home. The platform integrates games from renowned studios\u2014like Evolution Gaming, Pragmatic Play, Hacksaw, and multiple additional developers. If you\u2019re uncertain of which game suits your style, try free demo modes (available on many slots). This helps you test features and volatility before wagering real money. Known for both live games and top slots like Gates of Olympus and Sweet Bonanza, Pragmatic ensures you\u2019re playing the best of the best.
      \nWith over 8,000 games, this is the largest category at Holyluck Casino. Customers can play exciting slots and navigate between classic and modern video titles, but unregistered users won\u2019t be able to play them on the demo version. Amongst the most interesting titles are Moon Princess 100, Energy Joker, and Coin Strike. Choose from the list of banking options to make your first deposit.<\/p>\n

      Best Payment Methods for Holyluck<\/h2>\n

      Although Holyluck Casino is relatively new, it boasts several standout features that make it a suitable choice for both young and old players. There are plenty of games to play, and the bonuses are decent, with fair terms. Nonetheless, the unavailability of Evolution Gaming on the providers list may be disappointing to players who prefer the provider. Safety-wise, connections to the Holyluck Casino website are SSL-encrypted. Moreover, the casino\u2019s games are regularly audited by independent bodies for fairness. As for responsible gambling, the available tools are limited.<\/p>\n

      Midweek just got a whole lot more exciting with our Slot Midweek Free Spins promotion! Every Wednesday, receive 100 free spins on a selected slot game when you deposit at least \u20ac20. The free spin winnings come with a 40x wagering requirement, which must be completed within seven days.<\/p>\n

      good site great games<\/h2>\n

      In addition to accepting safe casino payment methods in Czechia, Holyluck Casino withdrawal speeds are fast, with processing times ranging from 1 to 48 hours. Holyluck is a modern casino site with an interesting outlook. However, there are many positives to joining the casino and they outweigh the negatives.<\/p>\n","protected":false},"excerpt":{"rendered":"

      We know slots are a favorite for many and that’s why they dominate our library, but we offer much more than that. We’ve created categories to make your experience easier and help you get familiar with the platform right away. You can choose from Popular, New, Editors’ Choice, Bonus Friendly Slots, Instant Games, Jackpots, Drops […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[54],"tags":[],"class_list":["post-2699","post","type-post","status-publish","format-standard","hentry","category-holyluck"],"_links":{"self":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2699","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/comments?post=2699"}],"version-history":[{"count":1,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2699\/revisions"}],"predecessor-version":[{"id":2700,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2699\/revisions\/2700"}],"wp:attachment":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/media?parent=2699"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/categories?post=2699"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/tags?post=2699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}