/** * 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":2719,"date":"2024-11-28T13:47:52","date_gmt":"2024-11-28T10:47:52","guid":{"rendered":"https:\/\/mizantechinstitute.com\/group5dm\/?p=2719"},"modified":"2025-11-14T19:22:27","modified_gmt":"2025-11-14T16:22:27","slug":"login-to-official-ten-bet-casino-in-uk-18","status":"publish","type":"post","link":"https:\/\/mizantechinstitute.com\/group5dm\/login-to-official-ten-bet-casino-in-uk-18\/","title":{"rendered":"Login to Official Ten Bet Casino in UK"},"content":{"rendered":"

Alternatively, you can contact TenoBet customer support via live chat to get your questions directly answered before you start. Our brand is more than just an online casino \u2013 we’re also a reliable bookmaker trusted across the UK. TenBet is optimized for all mobile devices, offering the same features as the desktop version. Players can place bets, play slots, access promotions, and contact support directly from their smartphones or tablets. The mobile interface loads quickly and adapts smoothly to all screen sizes. TenBet Casino stands out with its generous and structured approach to bonuses.<\/p>\n

Winzter Casino<\/h2>\n

With Tenobet Casino\u2019s live casino section, you can experience a real live casino atmosphere while interacting with live dealers, live croupiers as well as other participants. In this section, we found live dealer casino games like Mega Wheel, Live Poker, Dragon Tiger, as well as different variants of Roulette and Blackjack. However, the casino does offer an exclusive welcome offer for new customers. There\u2019s also a VIP program and many other attractive promotions that are worthwhile for regular players. In this review, we\u2019ll cover all the important aspects of Tenobet Casino \u2014from its diverse games and exciting bonuses to its fast payouts and friendly customer service.<\/p>\n

Sports Betting Options at TenoBet<\/h2>\n

Thanks to the mobile-optimized website, you can simply open the online casino in the browser of your mobile device. This gives you access to almost all of Tenobet\u2019s games, including the live casino. The app is clear, loads quickly and works equally well for Android and iOS users. TenoBet offers a robust and extensive sportsbook, featuring a wide range of betting markets. It covers popular sports like football, basketball, and tennis, as well as niche sports such as ice hockey, tenobet<\/a> table tennis, and eSports. The platform offers competitive odds for both pre-match and in-play betting, allowing players to place wagers as the action unfolds.
\nThe table highlights each payment option, typical minimum deposit amounts, and how quickly your funds should appear in your casino balance. Payment methods widely used in the UK, such as debit cards, e-wallets, and PayPal, are included for your convenience. The table highlights each payment method, the typical minimum deposit, and how quickly your funds usually appear in your casino balance. These options are widely used in the UK, reflecting the secure and fast transactions British punters expect. At TenBet Casino, sports betting is a core feature tailored for every kind of player\u2014from weekend punters to seasoned strategists.<\/p>\n

Sports and Lotteries<\/h2>\n

The help desk handles everything from bonus activation issues to wagering clarification and VIP inquiries. Minimum withdrawal amounts and any related fees depend on the payment provider but are clearly listed in the cashier section. Deposits are instant, while withdrawals are processed rapidly depending on method and user status (VIPs receive priority). Players can activate this as soon as they make their first deposit, with the ability to monitor wagering directly in their dashboard.<\/p>\n

Slottio Casino<\/h2>\n

Tenbet Casino is built for play on the go, using responsive design that adjusts to all common smartphones and tablets. The mobile browser supports the complete game and sportsbook menu, with fast load times and touch-friendly interfaces. Players can deposit, withdraw, and access support without switching devices. Whether on Android or iOS, players can enjoy the same games, bets, and promotions without needing a dedicated app. The layout adapts seamlessly to smaller screens, and the menus are touch-friendly and intuitive. The platform supports both pre-match and in-play betting across hundreds of daily events, including international tournaments and local leagues.<\/p>\n

While Tenbet operates under a Curacao licence, it must still adhere to UK-specific policies and best practices regarding player protection and responsible gambling. Although it does not hold a UK Gambling Commission licence, it ensures compliance with necessary Know Your Customer protocols and fair play standards1. Tenbet Casino uses SSL encryption to protect all transactions and personal data. We understand that reviews play a big part in picking the right casino. That\u2019s why it\u2019s wise to read genuine opinions and real player experiences on reliable, independent UK review sites before placing your bets.<\/p>\n

    \n
  • They can assist with account recovery, login errors, and reactivation if needed.<\/li>\n
  • New users simply choose their preferred welcome package\u2014either the 400% Slots bonus or the 300% Sports bonus\u2014and proceed with basic registration.<\/li>\n
  • TenoBet places a strong emphasis on providing responsive and helpful customer support.<\/li>\n
  • From Premier League matches to niche sports like Alpine Skiing or Archery, TenBet ensures deep coverage.<\/li>\n
  • There\u2019s also a \u2018Statistics Center\u2019, which you can access from the left-hand menu.<\/li>\n
  • The most attention-grabbing promotion we saw during our TenoBet bookmaker review was the welcome bonus.<\/li>\n<\/ul>\n

    Compare their processing times and limits, then choose the option that suits you best. With plenty of choices popular in the UK\u2014like debit cards, bank transfers, and e-wallets\u2014you can easily find a way to cash out your winnings that fits your needs. However, users occasionally receive tailored deals via email after account verification, especially high-value players.
    \nWhether you\u2019re spinning the slots or placing a bet on your favourite football team, you\u2019ll enjoy the same top-notch experience as on desktop. Your security is a priority too, with SSL encryption keeping your details safe. Plus, everything loads quickly and you\u2019ll have full access to all features, just like on your computer. We’ve put together a list of the top payment options available to UK players for depositing and withdrawing funds at our online casino. With a whopping 400% welcome bonus up to \u20ac5,000 and cashback perks for VIPs, TenBet targets both new and seasoned players seeking value-packed entertainment.<\/p>\n

      \n
    • Here are the payment methods accepted at Tenobet Casino presented in a table so you can quickly see if your preferred payment method is accepted.<\/li>\n
    • With professional dealers guiding the gameplay, participants can interact and enjoy the thrill of a genuine casino atmosphere from the comfort of their own homes.<\/li>\n
    • The minimum deposit of \u20ac20 and the instant bonus credit are significant advantages for new players.<\/li>\n
    • TenoBet is recognised for its user-friendly interface and contemporary design, which together create a smooth and enjoyable experience for both newcomers and seasoned players.<\/li>\n
    • Players can indulge in classic favourites such as live blackjack, roulette, and baccarat, all expertly streamed in real-time.<\/li>\n
    • TenoBet provides an extensive and diverse collection of games, catering to the tastes of casino enthusiasts.<\/li>\n<\/ul>\n

      Chat support gave me an email address for customer service, but guess what? Tenobet allows the use of Visa and Mastercard debit\/credit cards, e-wallets, and cryptocurrency payment methods for payment transactions at the casino. The fiat currencies which are available are CAD and EUR, while the cryptocurrencies include BTC, USDT, ETH, LTC, SOL, USDC, BCH and many others. Tenobet Casino\u2019s sports welcome package is a huge amount of return and a minimum deposit of \u20ac25 is required to claim the offer which is spread across the first 3 deposits. TenBet Casino is fully optimised for mobile use, offering a seamless experience on both smartphones and tablets.
      \nIf you use an Android device, you can easily get started by downloading and installing the app using an APK file. Bonuses are presented as “packages” that players can open like loot boxes\u2014a gamified twist that adds excitement. These rooms offer real-time interaction, varied stake limits, and attractive presenters. As a precaution, I\u2019ve summarized the answers to some of the most important questions about Tenobet Casino.<\/p>\n","protected":false},"excerpt":{"rendered":"

      Alternatively, you can contact TenoBet customer support via live chat to get your questions directly answered before you start. Our brand is more than just an online casino \u2013 we’re also a reliable bookmaker trusted across the UK. TenBet is optimized for all mobile devices, offering the same features as the desktop version. Players can […]<\/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":[61],"tags":[],"class_list":["post-2719","post","type-post","status-publish","format-standard","hentry","category-tenobet"],"_links":{"self":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2719","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=2719"}],"version-history":[{"count":1,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2719\/revisions"}],"predecessor-version":[{"id":2720,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/posts\/2719\/revisions\/2720"}],"wp:attachment":[{"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/media?parent=2719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/categories?post=2719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mizantechinstitute.com\/group5dm\/wp-json\/wp\/v2\/tags?post=2719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}