Premium Addons for Elementor - Version 4.5.0

Version Description

  • Tweak: Unnecessary code removed in Media Grid for faster editing speed.
  • Tweak: Added Privacy Mode option for Youtube videos in Media Grid widget.
  • Tweak: Compatibility with Elementor v3.4.2.
  • Fixed: Grow Effect in Button widget not working on Safari.
  • Fixed: Metro grid not showing on small screens in Media Grid widget.
Download this release

Release Info

Developer leap13
Plugin Icon 128x128 Premium Addons for Elementor
Version 4.5.0
Comparing to
See all releases

Code changes from version 4.4.9 to 4.5.0

admin/includes/admin-helper.php CHANGED
@@ -1,823 +1,823 @@
1
- <?php
2
- /**
3
- * PA Admin Helper
4
- */
5
-
6
- namespace PremiumAddons\Admin\Includes;
7
-
8
- use PremiumAddons\Includes\Helper_Functions;
9
-
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- exit;
12
- }
13
-
14
- /**
15
- * Class Admin_Helper
16
- */
17
- class Admin_Helper {
18
-
19
- /**
20
- * Admin settings tabs
21
- *
22
- * @var tabs
23
- */
24
- private static $tabs = null;
25
-
26
- /**
27
- * Class instance
28
- *
29
- * @var instance
30
- */
31
- private static $instance = null;
32
-
33
- /**
34
- * Premium Addons Settings Page Slug
35
- *
36
- * @var page_slug
37
- */
38
- protected $page_slug = 'premium-addons';
39
-
40
- /**
41
- * Current Screen ID
42
- *
43
- * @var current_screen
44
- */
45
- public static $current_screen = null;
46
-
47
- /**
48
- * Elements List
49
- *
50
- * @var elements_list
51
- */
52
- public static $elements_list = null;
53
-
54
- /**
55
- * Integrations List
56
- *
57
- * @var integrations_list
58
- */
59
- public static $integrations_list = null;
60
-
61
- /**
62
- * Constructor for the class
63
- */
64
- public function __construct() {
65
-
66
- // Get current screen ID.
67
- add_action( 'current_screen', array( $this, 'get_current_screen' ) );
68
-
69
- // Insert admin settings submenus.
70
- $this->set_admin_tabs();
71
- add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
72
-
73
- // Enqueue required admin scripts.
74
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
75
-
76
- // Plugin Action Links.
77
- add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
78
- add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
79
-
80
- // Register AJAX HOOKS.
81
- add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
82
- add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
83
- add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
84
-
85
- add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
86
-
87
- // Register Rollback hooks.
88
- add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
89
-
90
- // Beta_Testers::get_instance();
91
-
92
- if ( is_admin() ) {
93
- $current_page = $_SERVER['REQUEST_URI'];
94
- if ( false === strpos( $current_page, 'action=elementor' ) ) {
95
- Admin_Notices::get_instance();
96
-
97
- // PA Duplicator.
98
- if ( self::check_duplicator() ) {
99
- Duplicator::get_instance();
100
- }
101
- }
102
- }
103
-
104
- }
105
-
106
- /**
107
- * Get Elements List
108
- *
109
- * Get a list of all the elements available in the plugin
110
- *
111
- * @since 3.20.9
112
- * @access private
113
- *
114
- * @return array widget_list
115
- */
116
- private static function get_elements_list() {
117
-
118
- if ( null === self::$elements_list ) {
119
-
120
- self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
121
-
122
- }
123
-
124
- return self::$elements_list;
125
-
126
- }
127
-
128
- /**
129
- * Get Integrations List
130
- *
131
- * Get a list of all the integrations available in the plugin
132
- *
133
- * @since 3.20.9
134
- * @access private
135
- *
136
- * @return array integrations_list
137
- */
138
- private static function get_integrations_list() {
139
-
140
- if ( null === self::$integrations_list ) {
141
-
142
- self::$integrations_list = array(
143
- 'premium-map-api',
144
- 'premium-youtube-api',
145
- 'premium-map-disable-api',
146
- 'premium-map-cluster',
147
- 'premium-map-locale',
148
- 'is-beta-tester',
149
- );
150
-
151
- }
152
-
153
- return self::$integrations_list;
154
-
155
- }
156
-
157
- /**
158
- * Admin Enqueue Scripts
159
- *
160
- * Enqueue the required assets on our admin pages
161
- *
162
- * @since 1.0.0
163
- * @access public
164
- */
165
- public function admin_enqueue_scripts() {
166
-
167
- wp_enqueue_style(
168
- 'pa_admin_icon',
169
- PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
170
- array(),
171
- PREMIUM_ADDONS_VERSION,
172
- 'all'
173
- );
174
-
175
- $suffix = is_rtl() ? '-rtl' : '';
176
-
177
- $current_screen = self::get_current_screen();
178
-
179
- wp_enqueue_style(
180
- 'pa-notice-css',
181
- PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
182
- array(),
183
- PREMIUM_ADDONS_VERSION,
184
- 'all'
185
- );
186
-
187
- if ( strpos( $current_screen, $this->page_slug ) !== false ) {
188
-
189
- wp_enqueue_style(
190
- 'pa-admin-css',
191
- PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
192
- array(),
193
- PREMIUM_ADDONS_VERSION,
194
- 'all'
195
- );
196
-
197
- wp_enqueue_style(
198
- 'pa-sweetalert-style',
199
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
200
- array(),
201
- PREMIUM_ADDONS_VERSION,
202
- 'all'
203
- );
204
-
205
- wp_enqueue_script(
206
- 'pa-admin',
207
- PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
208
- array( 'jquery' ),
209
- PREMIUM_ADDONS_VERSION,
210
- true
211
- );
212
-
213
- wp_enqueue_script(
214
- 'pa-sweetalert-core',
215
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
216
- array( 'jquery' ),
217
- PREMIUM_ADDONS_VERSION,
218
- true
219
- );
220
-
221
- wp_enqueue_script(
222
- 'pa-sweetalert',
223
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
224
- array( 'jquery', 'pa-sweetalert-core' ),
225
- PREMIUM_ADDONS_VERSION,
226
- true
227
- );
228
-
229
- $theme_slug = Helper_Functions::get_installed_theme();
230
-
231
- $localized_data = array(
232
- 'settings' => array(
233
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
234
- 'nonce' => wp_create_nonce( 'pa-settings-tab' ),
235
- 'theme' => $theme_slug,
236
- ),
237
- 'premiumRollBackConfirm' => array(
238
- 'home_url' => home_url(),
239
- 'i18n' => array(
240
- 'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
241
- /* translators: %s: PA stable version */
242
- 'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
243
- 'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
244
- 'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
245
- ),
246
- ),
247
- );
248
-
249
- // Add PAPRO Rollback Confirm message if PAPRO installed.
250
- if ( Helper_Functions::check_papro_version() ) {
251
- /* translators: %s: PA stable version */
252
- $localized_data['premiumRollBackConfirm']['i18n']['papro_rollback_confirm'] = sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
253
- }
254
-
255
- wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
256
-
257
- }
258
- }
259
-
260
- /**
261
- * Insert action links.
262
- *
263
- * Adds action links to the plugin list table
264
- *
265
- * Fired by `plugin_action_links` filter.
266
- *
267
- * @param array $links plugin action links.
268
- *
269
- * @since 1.0.0
270
- * @access public
271
- */
272
- public function insert_action_links( $links ) {
273
-
274
- $papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
275
-
276
- $is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
277
-
278
- $settings_link = sprintf( '<a href="%1$s">%2$s</a>', admin_url( 'admin.php?page=' . $this->page_slug . '#tab=elements' ), __( 'Settings', 'premium-addons-for-elementor' ) );
279
-
280
- $rollback_link = sprintf( '<a href="%1$s">%2$s %3$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __( 'Rollback to Version ', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
281
-
282
- $new_links = array( $settings_link, $rollback_link );
283
-
284
- if ( ! $is_papro_installed ) {
285
-
286
- $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
287
-
288
- $pro_link = sprintf( '<a href="%s" target="_blank" style="color: #39b54a; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
289
- array_push( $new_links, $pro_link );
290
- }
291
-
292
- $new_links = array_merge( $links, $new_links );
293
-
294
- return $new_links;
295
- }
296
-
297
- /**
298
- * Plugin row meta.
299
- *
300
- * Extends plugin row meta links
301
- *
302
- * Fired by `plugin_row_meta` filter.
303
- *
304
- * @since 3.8.4
305
- * @access public
306
- *
307
- * @param array $meta array of the plugin's metadata.
308
- * @param string $file path to the plugin file.
309
- *
310
- * @return array An array of plugin row meta links.
311
- */
312
- public function plugin_row_meta( $meta, $file ) {
313
-
314
- if ( Helper_Functions::is_hide_row_meta() ) {
315
- return $meta;
316
- }
317
-
318
- if ( PREMIUM_ADDONS_BASENAME === $file ) {
319
-
320
- $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
321
-
322
- $row_meta = array(
323
- 'docs' => '<a href="' . esc_attr( $link ) . '" aria-label="' . esc_attr( __( 'View Premium Addons for Elementor Documentation', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Docs & FAQs', 'premium-addons-for-elementor' ) . '</a>',
324
- 'videos' => '<a href="https://www.youtube.com/watch?v=D3INxWw_jKI&list=PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv" aria-label="' . esc_attr( __( 'View Premium Addons Video Tutorials', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Video Tutorials', 'premium-addons-for-elementor' ) . '</a>',
325
- );
326
-
327
- $meta = array_merge( $meta, $row_meta );
328
- }
329
-
330
- return $meta;
331
-
332
- }
333
-
334
- /**
335
- * Gets current screen slug
336
- *
337
- * @since 3.3.8
338
- * @access public
339
- *
340
- * @return string current screen slug
341
- */
342
- public static function get_current_screen() {
343
-
344
- self::$current_screen = get_current_screen()->id;
345
-
346
- return isset( self::$current_screen ) ? self::$current_screen : false;
347
-
348
- }
349
-
350
- /**
351
- * Set Admin Tabs
352
- *
353
- * @access private
354
- * @since 3.20.8
355
- */
356
- private function set_admin_tabs() {
357
-
358
- $slug = $this->page_slug;
359
-
360
- self::$tabs = array(
361
- 'general' => array(
362
- 'id' => 'general',
363
- 'slug' => $slug . '#tab=general',
364
- 'title' => __( 'General', 'premium-addons-for-elementor' ),
365
- 'href' => '#tab=general',
366
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
367
- ),
368
- 'elements' => array(
369
- 'id' => 'elements',
370
- 'slug' => $slug . '#tab=elements',
371
- 'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
372
- 'href' => '#tab=elements',
373
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
374
- ),
375
- 'features' => array(
376
- 'id' => 'features',
377
- 'slug' => $slug . '#tab=features',
378
- 'title' => __( 'Features', 'premium-addons-for-elementor' ),
379
- 'href' => '#tab=features',
380
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
381
- ),
382
- 'integrations' => array(
383
- 'id' => 'integrations',
384
- 'slug' => $slug . '#tab=integrations',
385
- 'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
386
- 'href' => '#tab=integrations',
387
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
388
- ),
389
- 'version-control' => array(
390
- 'id' => 'vcontrol',
391
- 'slug' => $slug . '#tab=vcontrol',
392
- 'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
393
- 'href' => '#tab=vcontrol',
394
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
395
- ),
396
- 'white-label' => array(
397
- 'id' => 'white-label',
398
- 'slug' => $slug . '#tab=white-label',
399
- 'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
400
- 'href' => '#tab=white-label',
401
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
402
- ),
403
- 'info' => array(
404
- 'id' => 'system-info',
405
- 'slug' => $slug . '#tab=system-info',
406
- 'title' => __( 'System Info', 'premium-addons-for-elementor' ),
407
- 'href' => '#tab=system-info',
408
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
409
- ),
410
- );
411
-
412
- self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
413
-
414
- }
415
-
416
- /**
417
- * Add Menu Tabs
418
- *
419
- * Create Submenu Page
420
- *
421
- * @since 3.20.9
422
- * @access public
423
- *
424
- * @return void
425
- */
426
- public function add_menu_tabs() {
427
-
428
- $plugin_name = Helper_Functions::name();
429
-
430
- call_user_func(
431
- 'add_menu_page',
432
- $plugin_name,
433
- $plugin_name,
434
- 'manage_options',
435
- $this->page_slug,
436
- array( $this, 'render_setting_tabs' ),
437
- '',
438
- 100
439
- );
440
-
441
- foreach ( self::$tabs as $tab ) {
442
-
443
- call_user_func(
444
- 'add_submenu_page',
445
- $this->page_slug,
446
- $tab['title'],
447
- $tab['title'],
448
- 'manage_options',
449
- $tab['slug'],
450
- '__return_null'
451
- );
452
- }
453
-
454
- remove_submenu_page( $this->page_slug, $this->page_slug );
455
- }
456
-
457
- /**
458
- * Render Setting Tabs
459
- *
460
- * Render the final HTML content for admin setting tabs
461
- *
462
- * @access public
463
- * @since 3.20.8
464
- */
465
- public function render_setting_tabs() {
466
-
467
- ?>
468
- <div class="pa-settings-wrap">
469
- <?php do_action( 'pa_before_render_admin_tabs' ); ?>
470
- <div class="pa-settings-tabs">
471
- <ul class="pa-settings-tabs-list">
472
- <?php
473
- foreach ( self::$tabs as $key => $tab ) {
474
- $link = '<li class="pa-settings-tab">';
475
- $link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
476
- $link .= ' href="' . esc_url( $tab['href'] ) . '">';
477
- $link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
478
- $link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
479
- $link .= '</a>';
480
- $link .= '</li>';
481
-
482
- echo $link;
483
- }
484
- ?>
485
- </ul>
486
- </div> <!-- Settings Tabs -->
487
-
488
- <div class="pa-settings-sections">
489
- <?php
490
- foreach ( self::$tabs as $key => $tab ) {
491
- echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
492
- include_once $tab['template'] . '.php';
493
- echo '</div>';
494
- }
495
- ?>
496
- </div> <!-- Settings Sections -->
497
- <?php do_action( 'pa_after_render_admin_tabs' ); ?>
498
- </div> <!-- Settings Wrap -->
499
- <?php
500
- }
501
-
502
- /**
503
- * Render Dashboard Header
504
- *
505
- * @since 4.0.0
506
- * @access public
507
- */
508
- public function render_dashboard_header() {
509
-
510
- $url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
511
-
512
- $show_logo = Helper_Functions::is_hide_logo();
513
-
514
- ?>
515
-
516
- <div class="papro-admin-notice">
517
- <?php if ( ! $show_logo ) : ?>
518
- <div class="papro-admin-notice-left">
519
- <div class="papro-admin-notice-logo">
520
- <img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
521
- </div>
522
- <a href="https://premiumaddons.com" target="_blank"></a>
523
- </div>
524
- <?php endif; ?>
525
-
526
- <?php if ( ! Helper_Functions::check_papro_version() ) : ?>
527
- <div class="papro-admin-notice-right">
528
- <div class="papro-admin-notice-info">
529
- <h4>
530
- <?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
531
- </h4>
532
- <p>
533
- <?php
534
- /* translators: %s: html tags */
535
- echo wp_kses_post( sprintf( __( 'Supercharge your Elementor with %1$sPRO Widgets & Addons%2$s that you won\'t find anywhere else.', 'premium-addons-for-elementor' ), '<span>', '</span>' ) );
536
- ?>
537
- </p>
538
- </div>
539
- <div class="papro-admin-notice-cta">
540
- <a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
541
- <?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
542
- </a>
543
- </div>
544
- </div>
545
- <?php endif; ?>
546
- </div>
547
-
548
- <?php
549
- }
550
-
551
- /**
552
- * Save Settings
553
- *
554
- * Save elements settings using AJAX
555
- *
556
- * @access public
557
- * @since 3.20.8
558
- */
559
- public function save_settings() {
560
-
561
- check_ajax_referer( 'pa-settings-tab', 'security' );
562
-
563
- if ( ! isset( $_POST['fields'] ) ) {
564
- return;
565
- }
566
-
567
- parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
568
-
569
- $defaults = self::get_default_elements();
570
-
571
- $elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
572
-
573
- update_option( 'pa_save_settings', $elements );
574
-
575
- wp_send_json_success();
576
- }
577
-
578
- /**
579
- * Save Integrations Control Settings
580
- *
581
- * Stores integration and version control settings
582
- *
583
- * @since 3.20.8
584
- * @access public
585
- */
586
- public function save_additional_settings() {
587
-
588
- check_ajax_referer( 'pa-settings-tab', 'security' );
589
-
590
- if ( ! isset( $_POST['fields'] ) ) {
591
- return;
592
- }
593
-
594
- parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
595
-
596
- $new_settings = array(
597
- 'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
598
- 'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
599
- 'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
600
- 'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
601
- 'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
602
- 'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
603
- );
604
-
605
- update_option( 'pa_maps_save_settings', $new_settings );
606
-
607
- wp_send_json_success( $settings );
608
-
609
- }
610
-
611
- /**
612
- * Save Global Button Value
613
- *
614
- * Saves value for elements global switcher
615
- *
616
- * @since 4.0.0
617
- * @access public
618
- */
619
- public function save_global_btn_value() {
620
-
621
- check_ajax_referer( 'pa-settings-tab', 'security' );
622
-
623
- if ( ! isset( $_POST['isGlobalOn'] ) ) {
624
- wp_send_json_error();
625
- }
626
-
627
- $global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
628
-
629
- update_option( 'pa_global_btn_value', $global_btn_value );
630
-
631
- wp_send_json_success();
632
-
633
- }
634
-
635
- /**
636
- * Get default Elements
637
- *
638
- * @since 3.20.9
639
- * @access private
640
- *
641
- * @return $default_keys array keys defaults
642
- */
643
- private static function get_default_elements() {
644
-
645
- $elements = self::get_elements_list();
646
-
647
- $keys = array();
648
-
649
- // Now, we need to fill our array with elements keys.
650
- foreach ( $elements as $cat ) {
651
- if ( count( $cat['elements'] ) ) {
652
- foreach ( $cat['elements'] as $elem ) {
653
- array_push( $keys, $elem['key'] );
654
- }
655
- }
656
- }
657
-
658
- $default_keys = array_fill_keys( $keys, true );
659
-
660
- return $default_keys;
661
-
662
- }
663
-
664
- /**
665
- * Get Default Interations
666
- *
667
- * @since 3.20.9
668
- * @access private
669
- *
670
- * @return $default_keys array default keys
671
- */
672
- private static function get_default_integrations() {
673
-
674
- $settings = self::get_integrations_list();
675
-
676
- $default_keys = array_fill_keys( $settings, true );
677
-
678
- // Beta Tester should NOT be enabled by default.
679
- $default_keys['is-beta-tester'] = false;
680
-
681
- return $default_keys;
682
-
683
- }
684
-
685
- /**
686
- * Get enabled widgets
687
- *
688
- * @since 3.20.9
689
- * @access public
690
- *
691
- * @return array $enabled_keys enabled elements
692
- */
693
- public static function get_enabled_elements() {
694
-
695
- $defaults = self::get_default_elements();
696
-
697
- $enabled_keys = get_option( 'pa_save_settings', $defaults );
698
-
699
- foreach ( $defaults as $key => $value ) {
700
- if ( ! isset( $enabled_keys[ $key ] ) ) {
701
- $defaults[ $key ] = 0;
702
- }
703
- }
704
-
705
- return $defaults;
706
-
707
- }
708
-
709
- /**
710
- * Check If Premium Templates is enabled
711
- *
712
- * @since 3.6.0
713
- * @access public
714
- *
715
- * @return boolean
716
- */
717
- public static function check_premium_templates() {
718
-
719
- $settings = self::get_enabled_elements();
720
-
721
- if ( ! isset( $settings['premium-templates'] ) ) {
722
- return true;
723
- }
724
-
725
- $is_enabled = $settings['premium-templates'];
726
-
727
- return $is_enabled;
728
- }
729
-
730
-
731
- /**
732
- * Check If Premium Duplicator is enabled
733
- *
734
- * @since 3.20.9
735
- * @access public
736
- *
737
- * @return boolean
738
- */
739
- public static function check_duplicator() {
740
-
741
- $settings = self::get_enabled_elements();
742
-
743
- if ( ! isset( $settings['premium-duplicator'] ) ) {
744
- return true;
745
- }
746
-
747
- $is_enabled = $settings['premium-duplicator'];
748
-
749
- return $is_enabled;
750
- }
751
-
752
- /**
753
- * Get Integrations Settings
754
- *
755
- * Get plugin integrations settings
756
- *
757
- * @since 3.20.9
758
- * @access public
759
- *
760
- * @return array $settings integrations settings
761
- */
762
- public static function get_integrations_settings() {
763
-
764
- $enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
765
-
766
- return $enabled_keys;
767
-
768
- }
769
-
770
- /**
771
- * Run PA Rollback
772
- *
773
- * Trigger PA Rollback actions
774
- *
775
- * @since 4.2.5
776
- * @access public
777
- */
778
- public function run_pa_rollback() {
779
-
780
- check_admin_referer( 'premium_addons_rollback' );
781
-
782
- $plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
783
-
784
- $pa_rollback = new PA_Rollback(
785
- array(
786
- 'version' => PREMIUM_ADDONS_STABLE_VERSION,
787
- 'plugin_name' => PREMIUM_ADDONS_BASENAME,
788
- 'plugin_slug' => $plugin_slug,
789
- 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
790
- )
791
- );
792
-
793
- $pa_rollback->run();
794
-
795
- wp_die(
796
- '',
797
- esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
798
- array(
799
- 'response' => 200,
800
- )
801
- );
802
-
803
- }
804
-
805
- /**
806
- * Creates and returns an instance of the class
807
- *
808
- * @since 1.0.0
809
- * @access public
810
- *
811
- * @return object
812
- */
813
- public static function get_instance() {
814
-
815
- if ( ! isset( self::$instance ) ) {
816
-
817
- self::$instance = new self();
818
-
819
- }
820
-
821
- return self::$instance;
822
- }
823
- }
1
+ <?php
2
+ /**
3
+ * PA Admin Helper
4
+ */
5
+
6
+ namespace PremiumAddons\Admin\Includes;
7
+
8
+ use PremiumAddons\Includes\Helper_Functions;
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit;
12
+ }
13
+
14
+ /**
15
+ * Class Admin_Helper
16
+ */
17
+ class Admin_Helper {
18
+
19
+ /**
20
+ * Admin settings tabs
21
+ *
22
+ * @var tabs
23
+ */
24
+ private static $tabs = null;
25
+
26
+ /**
27
+ * Class instance
28
+ *
29
+ * @var instance
30
+ */
31
+ private static $instance = null;
32
+
33
+ /**
34
+ * Premium Addons Settings Page Slug
35
+ *
36
+ * @var page_slug
37
+ */
38
+ protected $page_slug = 'premium-addons';
39
+
40
+ /**
41
+ * Current Screen ID
42
+ *
43
+ * @var current_screen
44
+ */
45
+ public static $current_screen = null;
46
+
47
+ /**
48
+ * Elements List
49
+ *
50
+ * @var elements_list
51
+ */
52
+ public static $elements_list = null;
53
+
54
+ /**
55
+ * Integrations List
56
+ *
57
+ * @var integrations_list
58
+ */
59
+ public static $integrations_list = null;
60
+
61
+ /**
62
+ * Constructor for the class
63
+ */
64
+ public function __construct() {
65
+
66
+ // Get current screen ID.
67
+ add_action( 'current_screen', array( $this, 'get_current_screen' ) );
68
+
69
+ // Insert admin settings submenus.
70
+ $this->set_admin_tabs();
71
+ add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
72
+
73
+ // Enqueue required admin scripts.
74
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
75
+
76
+ // Plugin Action Links.
77
+ add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
78
+ add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
79
+
80
+ // Register AJAX HOOKS.
81
+ add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
82
+ add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
83
+ add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
84
+
85
+ add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
86
+
87
+ // Register Rollback hooks.
88
+ add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
89
+
90
+ // Beta_Testers::get_instance();
91
+
92
+ if ( is_admin() ) {
93
+ $current_page = $_SERVER['REQUEST_URI'];
94
+ if ( false === strpos( $current_page, 'action=elementor' ) ) {
95
+ Admin_Notices::get_instance();
96
+
97
+ // PA Duplicator.
98
+ if ( self::check_duplicator() ) {
99
+ Duplicator::get_instance();
100
+ }
101
+ }
102
+ }
103
+
104
+ }
105
+
106
+ /**
107
+ * Get Elements List
108
+ *
109
+ * Get a list of all the elements available in the plugin
110
+ *
111
+ * @since 3.20.9
112
+ * @access private
113
+ *
114
+ * @return array widget_list
115
+ */
116
+ private static function get_elements_list() {
117
+
118
+ if ( null === self::$elements_list ) {
119
+
120
+ self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
121
+
122
+ }
123
+
124
+ return self::$elements_list;
125
+
126
+ }
127
+
128
+ /**
129
+ * Get Integrations List
130
+ *
131
+ * Get a list of all the integrations available in the plugin
132
+ *
133
+ * @since 3.20.9
134
+ * @access private
135
+ *
136
+ * @return array integrations_list
137
+ */
138
+ private static function get_integrations_list() {
139
+
140
+ if ( null === self::$integrations_list ) {
141
+
142
+ self::$integrations_list = array(
143
+ 'premium-map-api',
144
+ 'premium-youtube-api',
145
+ 'premium-map-disable-api',
146
+ 'premium-map-cluster',
147
+ 'premium-map-locale',
148
+ 'is-beta-tester',
149
+ );
150
+
151
+ }
152
+
153
+ return self::$integrations_list;
154
+
155
+ }
156
+
157
+ /**
158
+ * Admin Enqueue Scripts
159
+ *
160
+ * Enqueue the required assets on our admin pages
161
+ *
162
+ * @since 1.0.0
163
+ * @access public
164
+ */
165
+ public function admin_enqueue_scripts() {
166
+
167
+ wp_enqueue_style(
168
+ 'pa_admin_icon',
169
+ PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
170
+ array(),
171
+ PREMIUM_ADDONS_VERSION,
172
+ 'all'
173
+ );
174
+
175
+ $suffix = is_rtl() ? '-rtl' : '';
176
+
177
+ $current_screen = self::get_current_screen();
178
+
179
+ wp_enqueue_style(
180
+ 'pa-notice-css',
181
+ PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
182
+ array(),
183
+ PREMIUM_ADDONS_VERSION,
184
+ 'all'
185
+ );
186
+
187
+ if ( strpos( $current_screen, $this->page_slug ) !== false ) {
188
+
189
+ wp_enqueue_style(
190
+ 'pa-admin-css',
191
+ PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
192
+ array(),
193
+ PREMIUM_ADDONS_VERSION,
194
+ 'all'
195
+ );
196
+
197
+ wp_enqueue_style(
198
+ 'pa-sweetalert-style',
199
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
200
+ array(),
201
+ PREMIUM_ADDONS_VERSION,
202
+ 'all'
203
+ );
204
+
205
+ wp_enqueue_script(
206
+ 'pa-admin',
207
+ PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
208
+ array( 'jquery' ),
209
+ PREMIUM_ADDONS_VERSION,
210
+ true
211
+ );
212
+
213
+ wp_enqueue_script(
214
+ 'pa-sweetalert-core',
215
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
216
+ array( 'jquery' ),
217
+ PREMIUM_ADDONS_VERSION,
218
+ true
219
+ );
220
+
221
+ wp_enqueue_script(
222
+ 'pa-sweetalert',
223
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
224
+ array( 'jquery', 'pa-sweetalert-core' ),
225
+ PREMIUM_ADDONS_VERSION,
226
+ true
227
+ );
228
+
229
+ $theme_slug = Helper_Functions::get_installed_theme();
230
+
231
+ $localized_data = array(
232
+ 'settings' => array(
233
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
234
+ 'nonce' => wp_create_nonce( 'pa-settings-tab' ),
235
+ 'theme' => $theme_slug,
236
+ ),
237
+ 'premiumRollBackConfirm' => array(
238
+ 'home_url' => home_url(),
239
+ 'i18n' => array(
240
+ 'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
241
+ /* translators: %s: PA stable version */
242
+ 'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
243
+ 'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
244
+ 'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
245
+ ),
246
+ ),
247
+ );
248
+
249
+ // Add PAPRO Rollback Confirm message if PAPRO installed.
250
+ if ( Helper_Functions::check_papro_version() ) {
251
+ /* translators: %s: PA stable version */
252
+ $localized_data['premiumRollBackConfirm']['i18n']['papro_rollback_confirm'] = sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
253
+ }
254
+
255
+ wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
256
+
257
+ }
258
+ }
259
+
260
+ /**
261
+ * Insert action links.
262
+ *
263
+ * Adds action links to the plugin list table
264
+ *
265
+ * Fired by `plugin_action_links` filter.
266
+ *
267
+ * @param array $links plugin action links.
268
+ *
269
+ * @since 1.0.0
270
+ * @access public
271
+ */
272
+ public function insert_action_links( $links ) {
273
+
274
+ $papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
275
+
276
+ $is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
277
+
278
+ $settings_link = sprintf( '<a href="%1$s">%2$s</a>', admin_url( 'admin.php?page=' . $this->page_slug . '#tab=elements' ), __( 'Settings', 'premium-addons-for-elementor' ) );
279
+
280
+ $rollback_link = sprintf( '<a href="%1$s">%2$s %3$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __( 'Rollback to Version ', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
281
+
282
+ $new_links = array( $settings_link, $rollback_link );
283
+
284
+ if ( ! $is_papro_installed ) {
285
+
286
+ $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
287
+
288
+ $pro_link = sprintf( '<a href="%s" target="_blank" style="color: #39b54a; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
289
+ array_push( $new_links, $pro_link );
290
+ }
291
+
292
+ $new_links = array_merge( $links, $new_links );
293
+
294
+ return $new_links;
295
+ }
296
+
297
+ /**
298
+ * Plugin row meta.
299
+ *
300
+ * Extends plugin row meta links
301
+ *
302
+ * Fired by `plugin_row_meta` filter.
303
+ *
304
+ * @since 3.8.4
305
+ * @access public
306
+ *
307
+ * @param array $meta array of the plugin's metadata.
308
+ * @param string $file path to the plugin file.
309
+ *
310
+ * @return array An array of plugin row meta links.
311
+ */
312
+ public function plugin_row_meta( $meta, $file ) {
313
+
314
+ if ( Helper_Functions::is_hide_row_meta() ) {
315
+ return $meta;
316
+ }
317
+
318
+ if ( PREMIUM_ADDONS_BASENAME === $file ) {
319
+
320
+ $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
321
+
322
+ $row_meta = array(
323
+ 'docs' => '<a href="' . esc_attr( $link ) . '" aria-label="' . esc_attr( __( 'View Premium Addons for Elementor Documentation', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Docs & FAQs', 'premium-addons-for-elementor' ) . '</a>',
324
+ 'videos' => '<a href="https://www.youtube.com/watch?v=D3INxWw_jKI&list=PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv" aria-label="' . esc_attr( __( 'View Premium Addons Video Tutorials', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Video Tutorials', 'premium-addons-for-elementor' ) . '</a>',
325
+ );
326
+
327
+ $meta = array_merge( $meta, $row_meta );
328
+ }
329
+
330
+ return $meta;
331
+
332
+ }
333
+
334
+ /**
335
+ * Gets current screen slug
336
+ *
337
+ * @since 3.3.8
338
+ * @access public
339
+ *
340
+ * @return string current screen slug
341
+ */
342
+ public static function get_current_screen() {
343
+
344
+ self::$current_screen = get_current_screen()->id;
345
+
346
+ return isset( self::$current_screen ) ? self::$current_screen : false;
347
+
348
+ }
349
+
350
+ /**
351
+ * Set Admin Tabs
352
+ *
353
+ * @access private
354
+ * @since 3.20.8
355
+ */
356
+ private function set_admin_tabs() {
357
+
358
+ $slug = $this->page_slug;
359
+
360
+ self::$tabs = array(
361
+ 'general' => array(
362
+ 'id' => 'general',
363
+ 'slug' => $slug . '#tab=general',
364
+ 'title' => __( 'General', 'premium-addons-for-elementor' ),
365
+ 'href' => '#tab=general',
366
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
367
+ ),
368
+ 'elements' => array(
369
+ 'id' => 'elements',
370
+ 'slug' => $slug . '#tab=elements',
371
+ 'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
372
+ 'href' => '#tab=elements',
373
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
374
+ ),
375
+ 'features' => array(
376
+ 'id' => 'features',
377
+ 'slug' => $slug . '#tab=features',
378
+ 'title' => __( 'Features', 'premium-addons-for-elementor' ),
379
+ 'href' => '#tab=features',
380
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
381
+ ),
382
+ 'integrations' => array(
383
+ 'id' => 'integrations',
384
+ 'slug' => $slug . '#tab=integrations',
385
+ 'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
386
+ 'href' => '#tab=integrations',
387
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
388
+ ),
389
+ 'version-control' => array(
390
+ 'id' => 'vcontrol',
391
+ 'slug' => $slug . '#tab=vcontrol',
392
+ 'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
393
+ 'href' => '#tab=vcontrol',
394
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
395
+ ),
396
+ 'white-label' => array(
397
+ 'id' => 'white-label',
398
+ 'slug' => $slug . '#tab=white-label',
399
+ 'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
400
+ 'href' => '#tab=white-label',
401
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
402
+ ),
403
+ 'info' => array(
404
+ 'id' => 'system-info',
405
+ 'slug' => $slug . '#tab=system-info',
406
+ 'title' => __( 'System Info', 'premium-addons-for-elementor' ),
407
+ 'href' => '#tab=system-info',
408
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
409
+ ),
410
+ );
411
+
412
+ self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
413
+
414
+ }
415
+
416
+ /**
417
+ * Add Menu Tabs
418
+ *
419
+ * Create Submenu Page
420
+ *
421
+ * @since 3.20.9
422
+ * @access public
423
+ *
424
+ * @return void
425
+ */
426
+ public function add_menu_tabs() {
427
+
428
+ $plugin_name = Helper_Functions::name();
429
+
430
+ call_user_func(
431
+ 'add_menu_page',
432
+ $plugin_name,
433
+ $plugin_name,
434
+ 'manage_options',
435
+ $this->page_slug,
436
+ array( $this, 'render_setting_tabs' ),
437
+ '',
438
+ 100
439
+ );
440
+
441
+ foreach ( self::$tabs as $tab ) {
442
+
443
+ call_user_func(
444
+ 'add_submenu_page',
445
+ $this->page_slug,
446
+ $tab['title'],
447
+ $tab['title'],
448
+ 'manage_options',
449
+ $tab['slug'],
450
+ '__return_null'
451
+ );
452
+ }
453
+
454
+ remove_submenu_page( $this->page_slug, $this->page_slug );
455
+ }
456
+
457
+ /**
458
+ * Render Setting Tabs
459
+ *
460
+ * Render the final HTML content for admin setting tabs
461
+ *
462
+ * @access public
463
+ * @since 3.20.8
464
+ */
465
+ public function render_setting_tabs() {
466
+
467
+ ?>
468
+ <div class="pa-settings-wrap">
469
+ <?php do_action( 'pa_before_render_admin_tabs' ); ?>
470
+ <div class="pa-settings-tabs">
471
+ <ul class="pa-settings-tabs-list">
472
+ <?php
473
+ foreach ( self::$tabs as $key => $tab ) {
474
+ $link = '<li class="pa-settings-tab">';
475
+ $link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
476
+ $link .= ' href="' . esc_url( $tab['href'] ) . '">';
477
+ $link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
478
+ $link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
479
+ $link .= '</a>';
480
+ $link .= '</li>';
481
+
482
+ echo $link;
483
+ }
484
+ ?>
485
+ </ul>
486
+ </div> <!-- Settings Tabs -->
487
+
488
+ <div class="pa-settings-sections">
489
+ <?php
490
+ foreach ( self::$tabs as $key => $tab ) {
491
+ echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
492
+ include_once $tab['template'] . '.php';
493
+ echo '</div>';
494
+ }
495
+ ?>
496
+ </div> <!-- Settings Sections -->
497
+ <?php do_action( 'pa_after_render_admin_tabs' ); ?>
498
+ </div> <!-- Settings Wrap -->
499
+ <?php
500
+ }
501
+
502
+ /**
503
+ * Render Dashboard Header
504
+ *
505
+ * @since 4.0.0
506
+ * @access public
507
+ */
508
+ public function render_dashboard_header() {
509
+
510
+ $url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
511
+
512
+ $show_logo = Helper_Functions::is_hide_logo();
513
+
514
+ ?>
515
+
516
+ <div class="papro-admin-notice">
517
+ <?php if ( ! $show_logo ) : ?>
518
+ <div class="papro-admin-notice-left">
519
+ <div class="papro-admin-notice-logo">
520
+ <img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
521
+ </div>
522
+ <a href="https://premiumaddons.com" target="_blank"></a>
523
+ </div>
524
+ <?php endif; ?>
525
+
526
+ <?php if ( ! Helper_Functions::check_papro_version() ) : ?>
527
+ <div class="papro-admin-notice-right">
528
+ <div class="papro-admin-notice-info">
529
+ <h4>
530
+ <?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
531
+ </h4>
532
+ <p>
533
+ <?php
534
+ /* translators: %s: html tags */
535
+ echo wp_kses_post( sprintf( __( 'Supercharge your Elementor with %1$sPRO Widgets & Addons%2$s that you won\'t find anywhere else.', 'premium-addons-for-elementor' ), '<span>', '</span>' ) );
536
+ ?>
537
+ </p>
538
+ </div>
539
+ <div class="papro-admin-notice-cta">
540
+ <a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
541
+ <?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
542
+ </a>
543
+ </div>
544
+ </div>
545
+ <?php endif; ?>
546
+ </div>
547
+
548
+ <?php
549
+ }
550
+
551
+ /**
552
+ * Save Settings
553
+ *
554
+ * Save elements settings using AJAX
555
+ *
556
+ * @access public
557
+ * @since 3.20.8
558
+ */
559
+ public function save_settings() {
560
+
561
+ check_ajax_referer( 'pa-settings-tab', 'security' );
562
+
563
+ if ( ! isset( $_POST['fields'] ) ) {
564
+ return;
565
+ }
566
+
567
+ parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
568
+
569
+ $defaults = self::get_default_elements();
570
+
571
+ $elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
572
+
573
+ update_option( 'pa_save_settings', $elements );
574
+
575
+ wp_send_json_success();
576
+ }
577
+
578
+ /**
579
+ * Save Integrations Control Settings
580
+ *
581
+ * Stores integration and version control settings
582
+ *
583
+ * @since 3.20.8
584
+ * @access public
585
+ */
586
+ public function save_additional_settings() {
587
+
588
+ check_ajax_referer( 'pa-settings-tab', 'security' );
589
+
590
+ if ( ! isset( $_POST['fields'] ) ) {
591
+ return;
592
+ }
593
+
594
+ parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
595
+
596
+ $new_settings = array(
597
+ 'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
598
+ 'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
599
+ 'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
600
+ 'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
601
+ 'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
602
+ 'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
603
+ );
604
+
605
+ update_option( 'pa_maps_save_settings', $new_settings );
606
+
607
+ wp_send_json_success( $settings );
608
+
609
+ }
610
+
611
+ /**
612
+ * Save Global Button Value
613
+ *
614
+ * Saves value for elements global switcher
615
+ *
616
+ * @since 4.0.0
617
+ * @access public
618
+ */
619
+ public function save_global_btn_value() {
620
+
621
+ check_ajax_referer( 'pa-settings-tab', 'security' );
622
+
623
+ if ( ! isset( $_POST['isGlobalOn'] ) ) {
624
+ wp_send_json_error();
625
+ }
626
+
627
+ $global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
628
+
629
+ update_option( 'pa_global_btn_value', $global_btn_value );
630
+
631
+ wp_send_json_success();
632
+
633
+ }
634
+
635
+ /**
636
+ * Get default Elements
637
+ *
638
+ * @since 3.20.9
639
+ * @access private
640
+ *
641
+ * @return $default_keys array keys defaults
642
+ */
643
+ private static function get_default_elements() {
644
+
645
+ $elements = self::get_elements_list();
646
+
647
+ $keys = array();
648
+
649
+ // Now, we need to fill our array with elements keys.
650
+ foreach ( $elements as $cat ) {
651
+ if ( count( $cat['elements'] ) ) {
652
+ foreach ( $cat['elements'] as $elem ) {
653
+ array_push( $keys, $elem['key'] );
654
+ }
655
+ }
656
+ }
657
+
658
+ $default_keys = array_fill_keys( $keys, true );
659
+
660
+ return $default_keys;
661
+
662
+ }
663
+
664
+ /**
665
+ * Get Default Interations
666
+ *
667
+ * @since 3.20.9
668
+ * @access private
669
+ *
670
+ * @return $default_keys array default keys
671
+ */
672
+ private static function get_default_integrations() {
673
+
674
+ $settings = self::get_integrations_list();
675
+
676
+ $default_keys = array_fill_keys( $settings, true );
677
+
678
+ // Beta Tester should NOT be enabled by default.
679
+ $default_keys['is-beta-tester'] = false;
680
+
681
+ return $default_keys;
682
+
683
+ }
684
+
685
+ /**
686
+ * Get enabled widgets
687
+ *
688
+ * @since 3.20.9
689
+ * @access public
690
+ *
691
+ * @return array $enabled_keys enabled elements
692
+ */
693
+ public static function get_enabled_elements() {
694
+
695
+ $defaults = self::get_default_elements();
696
+
697
+ $enabled_keys = get_option( 'pa_save_settings', $defaults );
698
+
699
+ foreach ( $defaults as $key => $value ) {
700
+ if ( ! isset( $enabled_keys[ $key ] ) ) {
701
+ $defaults[ $key ] = 0;
702
+ }
703
+ }
704
+
705
+ return $defaults;
706
+
707
+ }
708
+
709
+ /**
710
+ * Check If Premium Templates is enabled
711
+ *
712
+ * @since 3.6.0
713
+ * @access public
714
+ *
715
+ * @return boolean
716
+ */
717
+ public static function check_premium_templates() {
718
+
719
+ $settings = self::get_enabled_elements();
720
+
721
+ if ( ! isset( $settings['premium-templates'] ) ) {
722
+ return true;
723
+ }
724
+
725
+ $is_enabled = $settings['premium-templates'];
726
+
727
+ return $is_enabled;
728
+ }
729
+
730
+
731
+ /**
732
+ * Check If Premium Duplicator is enabled
733
+ *
734
+ * @since 3.20.9
735
+ * @access public
736
+ *
737
+ * @return boolean
738
+ */
739
+ public static function check_duplicator() {
740
+
741
+ $settings = self::get_enabled_elements();
742
+
743
+ if ( ! isset( $settings['premium-duplicator'] ) ) {
744
+ return true;
745
+ }
746
+
747
+ $is_enabled = $settings['premium-duplicator'];
748
+
749
+ return $is_enabled;
750
+ }
751
+
752
+ /**
753
+ * Get Integrations Settings
754
+ *
755
+ * Get plugin integrations settings
756
+ *
757
+ * @since 3.20.9
758
+ * @access public
759
+ *
760
+ * @return array $settings integrations settings
761
+ */
762
+ public static function get_integrations_settings() {
763
+
764
+ $enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
765
+
766
+ return $enabled_keys;
767
+
768
+ }
769
+
770
+ /**
771
+ * Run PA Rollback
772
+ *
773
+ * Trigger PA Rollback actions
774
+ *
775
+ * @since 4.2.5
776
+ * @access public
777
+ */
778
+ public function run_pa_rollback() {
779
+
780
+ check_admin_referer( 'premium_addons_rollback' );
781
+
782
+ $plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
783
+
784
+ $pa_rollback = new PA_Rollback(
785
+ array(
786
+ 'version' => PREMIUM_ADDONS_STABLE_VERSION,
787
+ 'plugin_name' => PREMIUM_ADDONS_BASENAME,
788
+ 'plugin_slug' => $plugin_slug,
789
+ 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
790
+ )
791
+ );
792
+
793
+ $pa_rollback->run();
794
+
795
+ wp_die(
796
+ '',
797
+ esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
798
+ array(
799
+ 'response' => 200,
800
+ )
801
+ );
802
+
803
+ }
804
+
805
+ /**
806
+ * Creates and returns an instance of the class
807
+ *
808
+ * @since 1.0.0
809
+ * @access public
810
+ *
811
+ * @return object
812
+ */
813
+ public static function get_instance() {
814
+
815
+ if ( ! isset( self::$instance ) ) {
816
+
817
+ self::$instance = new self();
818
+
819
+ }
820
+
821
+ return self::$instance;
822
+ }
823
+ }
assets/frontend/css/premium-addons-rtl.css CHANGED
@@ -1,8192 +1,8196 @@
1
- @font-face {
2
- font-family: "pa-elements";
3
- src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
4
- src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"),
5
- url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"),
6
- url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"),
7
- url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
8
- font-weight: normal;
9
- font-style: normal;
10
- }
11
-
12
- /**************** Premium Banner ****************/
13
- /************************************************/
14
- .premium-banner {
15
- overflow: hidden;
16
- }
17
-
18
- .premium-banner-ib {
19
- display: block;
20
- position: relative;
21
- }
22
-
23
- .premium-banner-ib img {
24
- display: block;
25
- position: relative;
26
- }
27
-
28
- .premium-banner-img-wrap {
29
- -js-display: flex;
30
- display: -webkit-box;
31
- display: -webkit-flex;
32
- display: -moz-box;
33
- display: -ms-flexbox;
34
- display: flex;
35
- height: 100%;
36
- }
37
-
38
- .premium-banner-img-wrap .premium-banner-ib-img {
39
- -webkit-flex-shrink: 0;
40
- -ms-flex-negative: 0;
41
- flex-shrink: 0;
42
- }
43
-
44
- .premium-banner-ib {
45
- z-index: 1;
46
- overflow: hidden;
47
- margin: 0 0 35px;
48
- text-align: center;
49
- -webkit-box-sizing: border-box;
50
- -moz-box-sizing: border-box;
51
- box-sizing: border-box;
52
- }
53
-
54
- .premium-banner-ib-desc .premium-banner-read-more {
55
- z-index: 100;
56
- }
57
-
58
- .premium-banner-ib,
59
- .wpb_column>.wpb_wrapper .premium-banner-ib {
60
- margin-bottom: 0px;
61
- }
62
-
63
- .elementor-widget-premium-addon-banner .premium-banner-ib-title {
64
- background: transparent;
65
- }
66
-
67
- .premium-banner-ib *,
68
- .premium-banner-ib .premium-banner-ib-desc {
69
- -webkit-box-sizing: border-box;
70
- -moz-box-sizing: border-box;
71
- box-sizing: border-box;
72
- }
73
-
74
- .premium-banner-ib img {
75
- min-width: 100%;
76
- max-width: 100%;
77
- -webkit-transition: opacity 0.35s;
78
- transition: opacity 0.35s;
79
- }
80
-
81
- .premium-banner-ib .premium-banner-ib-desc {
82
- padding: 15px;
83
- -webkit-backface-visibility: hidden;
84
- backface-visibility: hidden;
85
- -webkit-box-sizing: border-box;
86
- -moz-box-sizing: border-box;
87
- box-sizing: border-box;
88
- position: absolute;
89
- top: 0;
90
- right: 0;
91
- width: 100%;
92
- height: 100%;
93
- }
94
-
95
- .premium-banner-ib .premium-banner-ib-link {
96
- position: absolute;
97
- top: 0;
98
- right: 0;
99
- width: 100%;
100
- height: 100%;
101
- z-index: 1000;
102
- text-indent: 200%;
103
- white-space: nowrap;
104
- font-size: 0;
105
- opacity: 0;
106
- }
107
-
108
- .premium-banner-ib a.premium-banner-ib-link {
109
- display: block;
110
- background: 100% 0;
111
- }
112
-
113
- .premium-banner-animation1 img {
114
- width: -webkit-calc(100% + 50px) !important;
115
- width: calc(100% + 50px) !important;
116
- max-width: -webkit-calc(100% + 50px) !important;
117
- max-width: calc(100% + 50px) !important;
118
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
119
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
120
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
121
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
122
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
123
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
124
- -webkit-transform: translate3d(40px, 0, 0);
125
- transform: translate3d(40px, 0, 0);
126
- }
127
-
128
- .premium-banner-animation2 .premium-banner-ib-title {
129
- padding: 15px;
130
- }
131
-
132
- .premium-banner-animation1 .premium-banner-ib-desc {
133
- top: auto;
134
- bottom: 0;
135
- min-height: 25%;
136
- height: auto;
137
- max-height: 100%;
138
- text-align: right;
139
- }
140
-
141
- .premium-banner-animation1 .premium-banner-ib-content,
142
- .premium-banner-animation1 .premium-banner-ib-title,
143
- .premium-banner-animation1 .premium-banner-read-more {
144
- -webkit-transform: translate3d(0, 40px, 0);
145
- transform: translate3d(0, 40px, 0);
146
- -webkit-transition-delay: 0.05s;
147
- transition-delay: 0.05s;
148
- -webkit-transition-duration: 0.35s;
149
- transition-duration: 0.35s;
150
- }
151
-
152
- .premium-banner-animation1 .premium-banner-ib-title {
153
- -webkit-transition: -webkit-transform 0.35s;
154
- transition: -webkit-transform 0.35s;
155
- transition: transform 0.35s;
156
- transition: transform 0.35s, -webkit-transform 0.35s;
157
- }
158
-
159
- .premium-banner-animation1 .premium-banner-ib-content,
160
- .premium-banner-animation1 .premium-banner-read-more {
161
- margin-top: 10px;
162
- opacity: 0;
163
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
164
- transition: opacity 0.2s, -webkit-transform 0.35s;
165
- transition: opacity 0.2s, transform 0.35s;
166
- transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
167
- }
168
-
169
- .premium-banner-animation1:hover .premium-banner-ib-content,
170
- .premium-banner-animation1.active .premium-banner-ib-content,
171
- .premium-banner-animation1:hover .premium-banner-read-more,
172
- .premium-banner-animation1.active .premium-banner-read-more {
173
- opacity: 1;
174
- -webkit-transition-delay: 0.05s;
175
- transition-delay: 0.05s;
176
- -webkit-transition-duration: 0.35s;
177
- transition-duration: 0.35s;
178
- }
179
-
180
- .premium-banner-animation1:hover .premium-banner-ib-content,
181
- .premium-banner-animation1.active .premium-banner-ib-content,
182
- .premium-banner-animation1:hover .premium-banner-read-more,
183
- .premium-banner-animation1.active .premium-banner-read-more,
184
- .premium-banner-animation1:hover .premium-banner-ib-title,
185
- .premium-banner-animation1.active .premium-banner-ib-title,
186
- .premium-banner-animation1:hover img,
187
- .premium-banner-animation1.active img {
188
- -webkit-transform: translate3d(0, 0, 0);
189
- transform: translate3d(0, 0, 0);
190
- -webkit-transition-delay: 0.05s;
191
- transition-delay: 0.05s;
192
- -webkit-transition-duration: 0.35s;
193
- transition-duration: 0.35s;
194
- }
195
-
196
- .premium-banner-animation1.zoomout img,
197
- .premium-banner-animation1.scale img {
198
- -webkit-transform: translate3d(40px, 0, 0) scale(1.1);
199
- transform: translate3d(40px, 0, 0) scale(1.1);
200
- }
201
-
202
- .premium-banner-ib.sepia img {
203
- -webkit-filter: sepia(30%);
204
- filter: sepia(30%);
205
- }
206
-
207
- .premium-banner-ib.bright img {
208
- -webkit-filter: brightness(1);
209
- filter: brightness(1);
210
- }
211
-
212
- .premium-banner-ib.sepia:hover img {
213
- -webkit-filter: sepia(0%);
214
- filter: sepia(0%);
215
- }
216
-
217
- .premium-banner-ib.bright:hover img {
218
- -webkit-filter: brightness(1.2);
219
- filter: brightness(1.2);
220
- }
221
-
222
- .premium-banner-animation1.premium-banner-min-height img,
223
- .premium-banner-animation2.premium-banner-min-height img,
224
- .premium-banner-animation4.premium-banner-min-height img,
225
- .premium-banner-animation5.premium-banner-min-height img,
226
- .premium-banner-animation6.premium-banner-min-height img,
227
- .premium-banner-animation13.premium-banner-min-height img {
228
- height: auto;
229
- }
230
-
231
- .premium-banner-animation2 img {
232
- width: 100%;
233
- }
234
-
235
- .premium-banner-animation2 .premium-banner-ib-desc::before {
236
- position: absolute;
237
- content: "";
238
- top: 0;
239
- right: 0;
240
- width: 100%;
241
- height: 100%;
242
- opacity: 0;
243
- -webkit-transform: translate3d(0, 50%, 0);
244
- transform: translate3d(0, 50%, 0);
245
- }
246
-
247
- .premium-banner-animation2 .premium-banner-ib-title {
248
- position: absolute;
249
- top: 50%;
250
- right: 0;
251
- width: 100%;
252
- -webkit-transition: color 0.35s, -webkit-transform 0.35s;
253
- transition: color 0.35s, -webkit-transform 0.35s;
254
- transition: transform 0.35s, color 0.35s;
255
- transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
256
- -webkit-transform: translate3d(0, -50%, 0);
257
- transform: translate3d(0, -50%, 0);
258
- }
259
-
260
- .premium-banner-animation2 .premium-banner-ib-content,
261
- .premium-banner-animation2 .premium-banner-read-more,
262
- .premium-banner-animation2 .premium-banner-ib-desc::before {
263
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
264
- transition: opacity 0.35s, -webkit-transform 0.35s;
265
- transition: opacity 0.35s, transform 0.35s;
266
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
267
- }
268
-
269
- .premium-banner-animation2 .premium-banner-ib-content,
270
- .premium-banner-animation2 .premium-banner-read-more {
271
- position: absolute;
272
- bottom: 0;
273
- right: 0;
274
- padding: 15px;
275
- width: 100%;
276
- max-height: 50%;
277
- opacity: 0;
278
- -webkit-transform: translate3d(0, 10px, 0);
279
- transform: translate3d(0, 10px, 0);
280
- }
281
-
282
- .premium-banner-animation2:hover .premium-banner-ib-title,
283
- .premium-banner-animation2.active .premium-banner-ib-title {
284
- -webkit-transform: translate3d(0, -40px, 0);
285
- transform: translate3d(0, -40px, 0);
286
- }
287
-
288
- .premium-banner-animation2:hover .premium-banner-read-more,
289
- .premium-banner-animation2.active .premium-banner-read-more,
290
- .premium-banner-animation2:hover .premium-banner-ib-desc::before,
291
- .premium-banner-animation2.active .premium-banner-ib-desc::before {
292
- opacity: 1;
293
- -webkit-transform: translate3d(0, 0, 0);
294
- transform: translate3d(0, 0, 0);
295
- }
296
-
297
- .premium-banner-animation2:hover .premium-banner-ib-content,
298
- .premium-banner-animation2.active .premium-banner-ib-content {
299
- opacity: 1;
300
- -webkit-transform: translate3d(0, -30px, 0);
301
- transform: translate3d(0, -30px, 0);
302
- }
303
-
304
- .premium-banner-animation3 .premium-banner-ib-title {
305
- position: absolute;
306
- bottom: 0;
307
- right: 0;
308
- padding: 15px;
309
- width: 100%;
310
- text-align: right;
311
- -webkit-transform: translate3d(0, -30px, 0);
312
- transform: translate3d(0, -30px, 0);
313
- }
314
-
315
- .premium-banner-animation3 .premium-banner-ib-desc::before,
316
- .premium-banner-animation3 .premium-banner-ib-title {
317
- -webkit-transition: -webkit-transform 0.35s;
318
- transition: -webkit-transform 0.35s;
319
- transition: transform 0.35s;
320
- transition: transform 0.35s, -webkit-transform 0.35s;
321
- }
322
-
323
- .premium-banner-animation3:hover .premium-banner-ib-desc::before,
324
- .premium-banner-animation3.active .premium-banner-ib-desc::before,
325
- .premium-banner-animation3:hover .premium-banner-ib-title,
326
- .premium-banner-animation3.active .premium-banner-ib-title {
327
- opacity: 1;
328
- -webkit-transform: translate3d(0, 0, 0);
329
- transform: translate3d(0, 0, 0);
330
- }
331
-
332
- .premium-banner-animation3 .premium-banner-ib-content {
333
- max-height: -webkit-calc(100% - 60px - 1.5em);
334
- max-height: calc(100% - 60px - 1.5em);
335
- overflow: hidden;
336
- }
337
-
338
- .premium-banner-animation4 img {
339
- width: -webkit-calc(100% + 40px) !important;
340
- width: calc(100% + 40px) !important;
341
- max-width: -webkit-calc(100% + 40px) !important;
342
- max-width: calc(100% + 40px) !important;
343
- }
344
-
345
- .premium-banner-animation4 .premium-banner-ib-desc {
346
- padding: 30px;
347
- }
348
-
349
- .premium-banner-animation4 .premium-banner-ib-desc::after {
350
- position: absolute;
351
- content: "";
352
- opacity: 0;
353
- }
354
-
355
- .premium-banner-animation4 .premium-banner-ib-desc::before {
356
- position: absolute;
357
- content: "";
358
- opacity: 0;
359
- top: 50px;
360
- left: 30px;
361
- bottom: 50px;
362
- right: 30px;
363
- border-top: 1px solid #fff;
364
- border-bottom: 1px solid #fff;
365
- -webkit-transform: scale(0, 1);
366
- -ms-transform: scale(0, 1);
367
- transform: scale(0, 1);
368
- -webkit-transform-origin: 100% 0;
369
- -ms-transform-origin: 100% 0;
370
- transform-origin: 100% 0;
371
- }
372
-
373
- .premium-banner-animation4 .premium-banner-ib-desc::after {
374
- top: 30px;
375
- left: 50px;
376
- bottom: 30px;
377
- right: 50px;
378
- border-left: 1px solid #fff;
379
- border-right: 1px solid #fff;
380
- -webkit-transform: scale(1, 0);
381
- -ms-transform: scale(1, 0);
382
- transform: scale(1, 0);
383
- -webkit-transform-origin: 0% 0;
384
- -ms-transform-origin: 0% 0;
385
- transform-origin: 0% 0;
386
- }
387
-
388
- .premium-banner-animation4 .premium-banner-ib-title {
389
- padding: 50px 30px 0 30px;
390
- -webkit-transition: -webkit-transform 0.35s;
391
- transition: -webkit-transform 0.35s;
392
- transition: transform 0.35s;
393
- transition: transform 0.35s, -webkit-transform 0.35s;
394
- }
395
-
396
- .premium-banner-animation4 .premium-banner-ib-content,
397
- .premium-banner-animation4 .premium-banner-read-more {
398
- padding: 10px 30px;
399
- opacity: 0;
400
- overflow: hidden;
401
- -webkit-transform: translate3d(0, -10px, 0);
402
- transform: translate3d(0, -10px, 0);
403
- }
404
-
405
- .premium-banner-animation4 .premium-banner-ib-title,
406
- .premium-banner-animation4 img {
407
- -webkit-transform: translate3d(30px, 0, 0);
408
- transform: translate3d(30px, 0, 0);
409
- }
410
-
411
- .premium-banner-animation4.zoomout img,
412
- .premium-banner-animation4.scale img {
413
- -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
414
- transform: translate3d(30px, 0, 0) scale(1.1);
415
- }
416
-
417
- .premium-banner-animation4 .premium-banner-ib-content,
418
- .premium-banner-animation4 .premium-banner-read-more {
419
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
420
- transition: opacity 0.35s, -webkit-transform 0.35s;
421
- transition: opacity 0.35s, transform 0.35s;
422
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
423
- }
424
-
425
- .premium-banner-animation4 .premium-banner-ib-desc::after,
426
- .premium-banner-animation4 .premium-banner-ib-desc::before {
427
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
428
- transition: opacity 0.35s, -webkit-transform 0.35s;
429
- transition: opacity 0.35s, transform 0.35s;
430
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
431
- }
432
-
433
- .premium-banner-animation4 img {
434
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
435
- transition: opacity 0.35s, -webkit-transform 0.35s;
436
- transition: opacity 0.35s, transform 0.35s;
437
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
438
- }
439
-
440
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
441
- .premium-banner-animation4.active .premium-banner-ib-desc::after,
442
- .premium-banner-animation4:hover .premium-banner-ib-desc::before,
443
- .premium-banner-animation4.active .premium-banner-ib-desc::before {
444
- opacity: 1;
445
- -webkit-transform: scale(1);
446
- -ms-transform: scale(1);
447
- transform: scale(1);
448
- }
449
-
450
- .premium-banner-animation4:hover .premium-banner-ib-content,
451
- .premium-banner-animation4.active .premium-banner-ib-content,
452
- .premium-banner-animation4:hover .premium-banner-read-more,
453
- .premium-banner-animation4.active .premium-banner-read-more,
454
- .premium-banner-animation4:hover .premium-banner-ib-title,
455
- .premium-banner-animation4.active .premium-banner-ib-title {
456
- opacity: 1;
457
- -webkit-transform: translate3d(0, 0, 0);
458
- transform: translate3d(0, 0, 0);
459
- }
460
-
461
- .premium-banner-animation4:hover .premium-banner-ib-content,
462
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
463
- .premium-banner-animation4:hover .premium-banner-ib-title,
464
- .premium-banner-animation4:hover img {
465
- -webkit-transition-delay: 0.15s;
466
- transition-delay: 0.15s;
467
- }
468
-
469
- .premium-banner-animation5 .premium-banner-ib-desc {
470
- top: auto;
471
- bottom: 0;
472
- padding: 15px;
473
- height: auto;
474
- background: #f2f2f2;
475
- color: #3c4a50;
476
- -webkit-transition: -webkit-transform 0.35s;
477
- transition: -webkit-transform 0.35s;
478
- transition: transform 0.35s;
479
- transition: transform 0.35s, -webkit-transform 0.35s;
480
- -webkit-transform: translate3d(0, 100%, 0);
481
- transform: translate3d(0, 100%, 0);
482
- }
483
-
484
- .premium-banner-animation5 .premium-banner-ib-content {
485
- position: absolute;
486
- top: auto;
487
- bottom: 100%;
488
- right: 0;
489
- width: 100%;
490
- padding: 15px;
491
- opacity: 0;
492
- -webkit-transition: opacity 0.35s;
493
- transition: opacity 0.35s;
494
- }
495
-
496
- .premium-banner-animation5 .premium-banner-ib-title,
497
- .premium-banner-animation5 .premium-banner-read-more {
498
- -webkit-transition: -webkit-transform 0.35s;
499
- transition: -webkit-transform 0.35s;
500
- transition: transform 0.35s;
501
- transition: transform 0.35s, -webkit-transform 0.35s;
502
- -webkit-transform: translate3d(0, 200%, 0);
503
- transform: translate3d(0, 200%, 0);
504
- text-align: center;
505
- }
506
-
507
- .premium-banner-animation5 .premium-banner-ib-title {
508
- margin: 10px 0;
509
- }
510
-
511
- .premium-banner-animation5:hover .premium-banner-ib-content,
512
- .premium-banner-animation5.active .premium-banner-ib-content,
513
- .premium-banner-animation5:hover .premium-banner-ib-content *,
514
- .premium-banner-animation5.active .premium-banner-ib-content * {
515
- opacity: 1 !important;
516
- z-index: 99 !important;
517
- -webkit-backface-visibility: hidden !important;
518
- backface-visibility: hidden !important;
519
- }
520
-
521
- .premium-banner-animation5:hover .premium-banner-ib-desc,
522
- .premium-banner-animation5.active .premium-banner-ib-desc,
523
- .premium-banner-animation5:hover .premium-banner-ib-title,
524
- .premium-banner-animation5.active .premium-banner-ib-title,
525
- .premium-banner-animation5:hover .premium-banner-read-more,
526
- .premium-banner-animation5.active .premium-banner-read-more {
527
- -webkit-transform: translateY(0);
528
- -ms-transform: translateY(0);
529
- transform: translateY(0);
530
- }
531
-
532
- .premium-banner-animation5:hover .premium-banner-ib-title {
533
- -webkit-transition-delay: 0.05s;
534
- transition-delay: 0.05s;
535
- }
536
-
537
- .premium-banner-animation5 img {
538
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
539
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
540
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
541
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
542
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
543
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
544
- }
545
-
546
- .premium-banner-animation2 img,
547
- .premium-banner-animation4 img,
548
- .premium-banner-animation6 img {
549
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
550
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
551
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
552
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
553
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
554
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
555
- }
556
-
557
- .premium-banner-animation5.zoomout img,
558
- .premium-banner-animation5.scale img {
559
- -webkit-transform: scale(1.1);
560
- -ms-transform: scale(1.1);
561
- transform: scale(1.1);
562
- }
563
-
564
- .premium-banner-animation2.zoomout img,
565
- .premium-banner-animation2.scale img {
566
- -webkit-transform: scale(1.1);
567
- -ms-transform: scale(1.1);
568
- transform: scale(1.1);
569
- }
570
-
571
- .premium-banner-animation6.zoomout img,
572
- .premium-banner-animation6.scale img {
573
- -webkit-transform: scale(1.1);
574
- -ms-transform: scale(1.1);
575
- transform: scale(1.1);
576
- }
577
-
578
- .premium-banner-animation5.zoomin:hover img,
579
- .premium-banner-animation2.zoomin:hover img,
580
- .premium-banner-animation6.zoomin:hover img {
581
- -webkit-transform: scale(1.1);
582
- -ms-transform: scale(1.1);
583
- transform: scale(1.1);
584
- }
585
-
586
- .premium-banner-animation5.zoomout:hover img,
587
- .premium-banner-animation2.zoomout:hover img,
588
- .premium-banner-animation6.zoomout:hover img {
589
- -webkit-transform: scale(1);
590
- -ms-transform: scale(1);
591
- transform: scale(1);
592
- }
593
-
594
- .premium-banner-animation5.scale:hover img,
595
- .premium-banner-animation2.scale:hover img,
596
- .premium-banner-animation6.scale:hover img {
597
- -webkit-transform: scale(1.2) rotate(-5deg);
598
- -ms-transform: scale(1.2) rotate(-5deg);
599
- transform: scale(1.2) rotate(-5deg);
600
- }
601
-
602
- .premium-banner-animation5.grayscale:hover img,
603
- .premium-banner-animation2.grayscale:hover img,
604
- .premium-banner-animation6.grayscale:hover img {
605
- -webkit-filter: grayscale(100%);
606
- filter: grayscale(100%);
607
- }
608
-
609
- .premium-banner-animation5.blur:hover img,
610
- .premium-banner-animation2.blur:hover img {
611
- -webkit-filter: blur(3px);
612
- filter: blur(3px);
613
- }
614
-
615
- .premium-banner-animation6.blur:hover img {
616
- -webkit-filter: blur(3px);
617
- filter: blur(3px);
618
- }
619
-
620
- .premium-banner-animation6 .premium-banner-ib-desc {
621
- padding: 45px;
622
- }
623
-
624
- .premium-banner-animation6 .premium-banner-ib-desc::before {
625
- position: absolute;
626
- content: "";
627
- top: 30px;
628
- left: 30px;
629
- bottom: 30px;
630
- right: 30px;
631
- border: 1px solid #fff;
632
- }
633
-
634
- .premium-banner-animation6 .premium-banner-ib-title {
635
- margin: 20px 0 10px;
636
- -webkit-transition: -webkit-transform 0.35s;
637
- transition: -webkit-transform 0.35s;
638
- transition: transform 0.35s;
639
- transition: transform 0.35s, -webkit-transform 0.35s;
640
- -webkit-transform: translate3d(0, 100%, 0);
641
- transform: translate3d(0, 100%, 0);
642
- }
643
-
644
- .premium-banner-animation6 .premium-banner-ib-content,
645
- .premium-banner-animation6 .premium-banner-read-more,
646
- .premium-banner-animation6 .premium-banner-ib-desc::before {
647
- opacity: 0;
648
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
649
- transition: opacity 0.35s, -webkit-transform 0.35s;
650
- transition: opacity 0.35s, transform 0.35s;
651
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
652
- -webkit-transform: scale(0);
653
- -ms-transform: scale(0);
654
- transform: scale(0);
655
- }
656
-
657
- .premium-banner-animation6 .premium-banner-read-more {
658
- margin-top: 10px;
659
- }
660
-
661
- .premium-banner-animation6:hover .premium-banner-ib-title,
662
- .premium-banner-animation6.active .premium-banner-ib-title {
663
- -webkit-transform: translate3d(0, 0, 0);
664
- transform: translate3d(0, 0, 0);
665
- }
666
-
667
- .premium-banner-animation6:hover .premium-banner-ib-content,
668
- .premium-banner-animation6.active .premium-banner-ib-content,
669
- .premium-banner-animation6:hover .premium-banner-read-more,
670
- .premium-banner-animation6.active .premium-banner-read-more,
671
- .premium-banner-animation6:hover .premium-banner-ib-desc::before,
672
- .premium-banner-animation6.active .premium-banner-ib-desc::before {
673
- opacity: 1;
674
- -webkit-transform: scale(1);
675
- -ms-transform: scale(1);
676
- transform: scale(1);
677
- }
678
-
679
- .premium-banner-animation12 .premium-banner-ib-desc::after {
680
- position: absolute;
681
- content: "";
682
- left: 30px;
683
- bottom: 30px;
684
- right: 30px;
685
- height: -webkit-calc(50% - 30px);
686
- height: calc(50% - 30px);
687
- border: 7px solid #fff;
688
- -webkit-transition: -webkit-transform 0.35s;
689
- transition: -webkit-transform 0.35s;
690
- transition: transform 0.35s;
691
- transition: transform 0.35s, -webkit-transform 0.35s;
692
- -webkit-transform: translate3d(0, -100%, 0);
693
- transform: translate3d(0, -100%, 0);
694
- }
695
-
696
- .premium-banner-animation12:hover .premium-banner-ib-desc::after,
697
- .premium-banner-animation12.active .premium-banner-ib-desc::after {
698
- -webkit-transform: translate3d(0, 0, 0);
699
- transform: translate3d(0, 0, 0);
700
- }
701
-
702
- .premium-banner-animation12 .premium-banner-ib-desc {
703
- padding: 45px;
704
- text-align: right;
705
- }
706
-
707
- .premium-banner-animation12 .premium-banner-ib-content {
708
- position: absolute;
709
- left: 60px;
710
- bottom: 60px;
711
- right: 60px;
712
- opacity: 0;
713
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
714
- transition: opacity 0.35s, -webkit-transform 0.35s;
715
- transition: opacity 0.35s, transform 0.35s;
716
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
717
- -webkit-transform: translate3d(0, -100px, 0);
718
- transform: translate3d(0, -100px, 0);
719
- }
720
-
721
- .premium-banner-animation12:hover .premium-banner-ib-content,
722
- .premium-banner-animation12.active .premium-banner-ib-content {
723
- opacity: 1;
724
- -webkit-transform: translate3d(0, 0, 0);
725
- transform: translate3d(0, 0, 0);
726
- }
727
-
728
- .premium-banner-animation13 img {
729
- width: -webkit-calc(100% + 20px) !important;
730
- width: calc(100% + 20px) !important;
731
- max-width: -webkit-calc(100% + 20px) !important;
732
- max-width: calc(100% + 20px) !important;
733
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
734
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
735
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
736
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
737
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
738
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
739
- -webkit-transform: translate3d(10px, 0, 0);
740
- transform: translate3d(10px, 0, 0);
741
- -webkit-backface-visibility: hidden;
742
- backface-visibility: hidden;
743
- }
744
-
745
- .premium-banner-animation13.zoomout img,
746
- .premium-banner-animation13.scale img {
747
- -webkit-transform: translate3d(10px, 0, 0) scale(1.1);
748
- transform: translate3d(10px, 0, 0) scale(1.1);
749
- }
750
-
751
- .premium-banner-animation13.none:hover img {
752
- -webkit-transform: translate3d(0, 0, 0);
753
- transform: translate3d(0, 0, 0);
754
- }
755
-
756
- .premium-banner-animation1.none:hover img,
757
- .premium-banner-animation4.none:hover img {
758
- -webkit-transform: translate3d(0, 0, 0);
759
- transform: translate3d(0, 0, 0);
760
- }
761
-
762
- .premium-banner-animation13.zoomin:hover img,
763
- .premium-banner-animation1.zoomin:hover img,
764
- .premium-banner-animation4.zoomin:hover img,
765
- .premium-banner-animation8.zoomin:hover img,
766
- .premium-banner-animation7.zoomin:hover img,
767
- .premium-banner-animation9.zoomin:hover img,
768
- .premium-banner-animation10.zoomin:hover img,
769
- .premium-banner-animation11.zoomin:hover img {
770
- -webkit-transform: translate3d(0, 0, 0) scale(1.1);
771
- transform: translate3d(0, 0, 0) scale(1.1);
772
- }
773
-
774
- .premium-banner-animation13.zoomout:hover img,
775
- .premium-banner-animation1.zoomout:hover img,
776
- .premium-banner-animation4.zoomout:hover img,
777
- .premium-banner-animation8.zoomout:hover img,
778
- .premium-banner-animation7.zoomout:hover img,
779
- .premium-banner-animation9.zoomout:hover img,
780
- .premium-banner-animation10.zoomout:hover img,
781
- .premium-banner-animation11.zoomout:hover img {
782
- -webkit-transform: translate3d(0, 0, 0) scale(1);
783
- transform: translate3d(0, 0, 0) scale(1);
784
- }
785
-
786
- .premium-banner-animation13.scale:hover img,
787
- .premium-banner-animation1.scale:hover img,
788
- .premium-banner-animation4.scale:hover img,
789
- .premium-banner-animation8.scale:hover img,
790
- .premium-banner-animation7.scale:hover img,
791
- .premium-banner-animation9.scale:hover img,
792
- .premium-banner-animation10.scale:hover img,
793
- .premium-banner-animation11.scale:hover img {
794
- -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
795
- transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
796
- }
797
-
798
- .premium-banner-animation13.grayscale:hover img,
799
- .premium-banner-animation1.grayscale:hover img,
800
- .premium-banner-animation4.grayscale:hover img,
801
- .premium-banner-animation8.grayscale:hover img,
802
- .premium-banner-animation7.grayscale:hover img,
803
- .premium-banner-animation9.grayscale:hover img,
804
- .premium-banner-animation10.grayscale:hover img,
805
- .premium-banner-animation11.grayscale:hover img {
806
- -webkit-transform: translate3d(0, 0, 0);
807
- transform: translate3d(0, 0, 0);
808
- -webkit-filter: grayscale(100%);
809
- filter: grayscale(100%);
810
- }
811
-
812
- .premium-banner-animation13.blur:hover img,
813
- .premium-banner-animation1.blur:hover img,
814
- .premium-banner-animation4.blur:hover,
815
- .premium-banner-animation8.blur:hover img,
816
- .premium-banner-animation7.blur:hover img,
817
- .premium-banner-animation9.blur:hover img,
818
- .premium-banner-animation10.blur:hover img,
819
- .premium-banner-animation11.blur:hover img {
820
- -webkit-transform: translate3d(0, 0, 0);
821
- transform: translate3d(0, 0, 0);
822
- -webkit-filter: blur(3px);
823
- filter: blur(3px);
824
- }
825
-
826
- .premium-banner-animation13 .premium-banner-ib-desc {
827
- text-align: right;
828
- }
829
-
830
- .premium-banner-animation13 .premium-banner-ib-title {
831
- position: relative;
832
- overflow: hidden;
833
- padding: 5px 0 10px;
834
- }
835
-
836
- .premium-banner-animation13 .premium-banner-ib-title::after {
837
- position: absolute;
838
- content: "";
839
- bottom: 0;
840
- right: 0;
841
- width: 100%;
842
- height: 2px;
843
- background: #fff;
844
- -webkit-transition: -webkit-transform 0.35s;
845
- transition: -webkit-transform 0.35s;
846
- transition: transform 0.35s;
847
- transition: transform 0.35s, -webkit-transform 0.35s;
848
- -webkit-transform: translate3d(101%, 0, 0);
849
- transform: translate3d(101%, 0, 0);
850
- }
851
-
852
- .premium-banner-animation13:hover .premium-banner-ib-title::after,
853
- .premium-banner-animation13.active .premium-banner-ib-title::after {
854
- -webkit-transform: translate3d(0, 0, 0);
855
- transform: translate3d(0, 0, 0);
856
- }
857
-
858
- .premium-banner-animation13 .premium-banner-ib-content,
859
- .premium-banner-animation13 .premium-banner-read-more {
860
- padding: 15px 0;
861
- opacity: 0;
862
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
863
- transition: opacity 0.35s, -webkit-transform 0.35s;
864
- transition: opacity 0.35s, transform 0.35s;
865
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
866
- -webkit-transform: translate3d(-100%, 0, 0);
867
- transform: translate3d(-100%, 0, 0);
868
- }
869
-
870
- .premium-banner-animation13:hover .premium-banner-ib-content,
871
- .premium-banner-animation13.active .premium-banner-ib-content,
872
- .premium-banner-animation13:hover .premium-banner-read-more,
873
- .premium-banner-animation13.active .premium-banner-read-more {
874
- opacity: 1;
875
- -webkit-transform: translate3d(0, 0, 0);
876
- transform: translate3d(0, 0, 0);
877
- }
878
-
879
- .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
880
- right: 50%;
881
- width: auto !important;
882
- height: 100%;
883
- max-width: none;
884
- -webkit-transform: translateX(50%);
885
- -ms-transform: translateX(50%);
886
- transform: translateX(50%);
887
- }
888
-
889
- .premium-banner-ib img {
890
- border: none;
891
- padding: 0;
892
- margin: 0;
893
- }
894
-
895
- .premium-banner-animation7 img {
896
- width: -webkit-calc(100% + 40px) !important;
897
- width: calc(100% + 40px) !important;
898
- max-width: -webkit-calc(100% + 40px) !important;
899
- max-width: calc(100% + 40px) !important;
900
- }
901
-
902
- .premium-banner-animation7 .premium-banner-brlr {
903
- width: 7px;
904
- }
905
-
906
- .premium-banner-animation7 .premium-banner-brtb {
907
- height: 7px;
908
- }
909
-
910
- .premium-banner-animation7 .premium-banner-br {
911
- position: absolute;
912
- z-index: 1;
913
- background-color: white;
914
- -webkit-transition: all 0.3s ease-in-out;
915
- transition: all 0.3s ease-in-out;
916
- -webkit-transition-delay: 0.2s;
917
- transition-delay: 0.2s;
918
- }
919
-
920
- .premium-banner-animation7 .premium-banner-bleft {
921
- right: 30px;
922
- top: -webkit-calc(100% - 150px);
923
- top: calc(100% - 150px);
924
- height: 0;
925
- }
926
-
927
- .premium-banner-animation7 .premium-banner-bright {
928
- left: 30px;
929
- bottom: -webkit-calc(100% - 150px);
930
- bottom: calc(100% - 150px);
931
- height: 0;
932
- }
933
-
934
- .premium-banner-animation7 .premium-banner-bottom {
935
- left: -webkit-calc(100% - 150px);
936
- left: calc(100% - 150px);
937
- bottom: 30px;
938
- width: 0;
939
- }
940
-
941
- .premium-banner-animation7 .premium-banner-btop {
942
- right: -webkit-calc(100% - 150px);
943
- right: calc(100% - 150px);
944
- top: 30px;
945
- width: 0;
946
- }
947
-
948
- .premium-banner-animation7 .premium-banner-ib-desc {
949
- padding: 70px;
950
- display: table;
951
- }
952
-
953
- .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
954
- display: table-cell;
955
- vertical-align: middle;
956
- }
957
-
958
- .premium-banner-animation7 .premium-banner-ib-title {
959
- margin-top: 0;
960
- }
961
-
962
- .premium-banner-animation7 .premium-banner-ib-title,
963
- .premium-banner-animation7 img {
964
- -webkit-transform: translate3d(30px, 0, 0);
965
- transform: translate3d(30px, 0, 0);
966
- }
967
-
968
- .premium-banner-animation7.zoomout img,
969
- .premium-banner-animation7.scale img {
970
- -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
971
- transform: translate3d(30px, 0, 0) scale(1.1);
972
- }
973
-
974
- .premium-banner-animation7 .premium-banner-ib-content,
975
- .premium-banner-animation7 .premium-banner-read-more {
976
- margin-top: 10px;
977
- }
978
-
979
- .premium-banner-animation7 .premium-banner-ib-desc::after,
980
- .premium-banner-animation7 .premium-banner-ib-desc::before {
981
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
982
- transition: opacity 0.35s, -webkit-transform 0.35s;
983
- transition: opacity 0.35s, transform 0.35s;
984
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
985
- }
986
-
987
- .premium-banner-animation7 .premium-banner-ib-title,
988
- .premium-banner-animation7 .premium-banner-ib-content,
989
- .premium-banner-animation7 .premium-banner-read-more {
990
- opacity: 0;
991
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
992
- transition: opacity 0.35s, -webkit-transform 0.35s;
993
- transition: opacity 0.35s, transform 0.35s;
994
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
995
- }
996
-
997
- .premium-banner-animation7 img {
998
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
999
- transition: opacity 0.35s, -webkit-transform 0.35s;
1000
- transition: opacity 0.35s, transform 0.35s;
1001
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1002
- }
1003
-
1004
- .premium-banner-animation7:hover .premium-banner-ib-content,
1005
- .premium-banner-animation7.active .premium-banner-ib-content,
1006
- .premium-banner-animation7:hover .premium-banner-read-more,
1007
- .premium-banner-animation7.active .premium-banner-read-more,
1008
- .premium-banner-animation7:hover .premium-banner-ib-title,
1009
- .premium-banner-animation7.active .premium-banner-ib-title {
1010
- opacity: 1;
1011
- -webkit-transform: translate3d(0, 0, 0);
1012
- transform: translate3d(0, 0, 0);
1013
- }
1014
-
1015
- .premium-banner-animation7:hover .premium-banner-bleft,
1016
- .premium-banner-animation7.active .premium-banner-bleft {
1017
- top: 30px;
1018
- height: 70px;
1019
- }
1020
-
1021
- .premium-banner-animation7:hover .premium-banner-bright,
1022
- .premium-banner-animation7.active .premium-banner-bright {
1023
- bottom: 30px;
1024
- height: 70px;
1025
- }
1026
-
1027
- .premium-banner-animation7:hover .premium-banner-bottom,
1028
- .premium-banner-animation7.active .premium-banner-bottom {
1029
- left: 30px;
1030
- width: 70px;
1031
- }
1032
-
1033
- .premium-banner-animation7:hover .premium-banner-btop,
1034
- .premium-banner-animation7.active .premium-banner-btop {
1035
- right: 30px;
1036
- width: 70px;
1037
- }
1038
-
1039
- .premium-banner-animation7:hover .premium-banner-ib-content,
1040
- .premium-banner-animation7:hover .premium-banner-read-more,
1041
- .premium-banner-animation7:hover .premium-banner-ib-title,
1042
- .premium-banner-animation7:hover img {
1043
- -webkit-transition-delay: 0.15s;
1044
- transition-delay: 0.15s;
1045
- }
1046
-
1047
- .premium-banner-animation8 img {
1048
- width: -webkit-calc(100% + 40px) !important;
1049
- width: calc(100% + 40px) !important;
1050
- max-width: -webkit-calc(100% + 40px) !important;
1051
- max-width: calc(100% + 40px) !important;
1052
- }
1053
-
1054
- .premium-banner-animation8 .premium-banner-brlr {
1055
- width: 7px;
1056
- }
1057
-
1058
- .premium-banner-animation8 .premium-banner-brtb {
1059
- height: 7px;
1060
- }
1061
-
1062
- .premium-banner-animation8 .premium-banner-br {
1063
- position: absolute;
1064
- z-index: 1;
1065
- background-color: white;
1066
- -webkit-transition: all 0.3s ease-in-out;
1067
- transition: all 0.3s ease-in-out;
1068
- -webkit-transition-delay: 0.2s;
1069
- transition-delay: 0.2s;
1070
- }
1071
-
1072
- .premium-banner-animation8 .premium-banner-bleft {
1073
- right: 30px;
1074
- top: 50%;
1075
- -webkit-transform: translateY(-50%);
1076
- -ms-transform: translateY(-50%);
1077
- transform: translateY(-50%);
1078
- height: 0;
1079
- }
1080
-
1081
- .premium-banner-animation8 .premium-banner-bright {
1082
- left: 30px;
1083
- top: 50%;
1084
- -webkit-transform: translateY(-50%);
1085
- -ms-transform: translateY(-50%);
1086
- transform: translateY(-50%);
1087
- height: 0;
1088
- }
1089
-
1090
- .premium-banner-animation8 .premium-banner-bottom {
1091
- right: 50%;
1092
- -webkit-transform: translateX(50%);
1093
- -ms-transform: translateX(50%);
1094
- transform: translateX(50%);
1095
- bottom: 30px;
1096
- width: 0;
1097
- }
1098
-
1099
- .premium-banner-animation8 .premium-banner-btop {
1100
- right: 50%;
1101
- -webkit-transform: translateX(50%);
1102
- -ms-transform: translateX(50%);
1103
- transform: translateX(50%);
1104
- top: 30px;
1105
- width: 0;
1106
- }
1107
-
1108
- .premium-banner-animation8 .premium-banner-ib-desc {
1109
- padding: 70px;
1110
- display: table;
1111
- }
1112
-
1113
- .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
1114
- display: table-cell;
1115
- vertical-align: middle;
1116
- }
1117
-
1118
- .premium-banner-animation8 .premium-banner-ib-title {
1119
- margin-top: 0;
1120
- }
1121
-
1122
- .premium-banner-animation8 .premium-banner-ib-title,
1123
- .premium-banner-animation8 img {
1124
- -webkit-transform: translate3d(30px, 0, 0);
1125
- transform: translate3d(30px, 0, 0);
1126
- }
1127
-
1128
- .premium-banner-animation8.zoomout img,
1129
- .premium-banner-animation8.scale img {
1130
- -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
1131
- transform: translate3d(30px, 0, 0) scale(1.1);
1132
- }
1133
-
1134
- .premium-banner-animation8 .premium-banner-ib-content,
1135
- .premium-banner-animation8 .premium-banner-read-more {
1136
- margin-top: 10px;
1137
- }
1138
-
1139
- .premium-banner-animation8 .premium-banner-ib-desc::after,
1140
- .premium-banner-animation8 .premium-banner-ib-desc::before {
1141
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1142
- transition: opacity 0.35s, -webkit-transform 0.35s;
1143
- transition: opacity 0.35s, transform 0.35s;
1144
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1145
- }
1146
-
1147
- .premium-banner-animation8 .premium-banner-ib-title,
1148
- .premium-banner-animation8 .premium-banner-ib-content,
1149
- .premium-banner-animation8 .premium-banner-read-more {
1150
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1151
- transition: opacity 0.35s, -webkit-transform 0.35s;
1152
- transition: opacity 0.35s, transform 0.35s;
1153
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1154
- opacity: 0;
1155
- }
1156
-
1157
- .premium-banner-animation8 img {
1158
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1159
- transition: opacity 0.35s, -webkit-transform 0.35s;
1160
- transition: opacity 0.35s, transform 0.35s;
1161
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1162
- }
1163
-
1164
- .premium-banner-animation8:hover .premium-banner-ib-content,
1165
- .premium-banner-animation8.active .premium-banner-ib-content,
1166
- .premium-banner-animation8:hover .premium-banner-read-more,
1167
- .premium-banner-animation8.active .premium-banner-read-more,
1168
- .premium-banner-animation8:hover .premium-banner-ib-title,
1169
- .premium-banner-animation8.active .premium-banner-ib-title {
1170
- opacity: 1;
1171
- -webkit-transform: translate3d(0, 0, 0);
1172
- transform: translate3d(0, 0, 0);
1173
- }
1174
-
1175
- .premium-banner-animation8:hover .premium-banner-bleft,
1176
- .premium-banner-animation8.active .premium-banner-bleft {
1177
- height: -webkit-calc(100% - 61px);
1178
- height: calc(100% - 61px);
1179
- }
1180
-
1181
- .premium-banner-animation8:hover .premium-banner-bright,
1182
- .premium-banner-animation8.active .premium-banner-bright {
1183
- height: -webkit-calc(100% - 61px);
1184
- height: calc(100% - 61px);
1185
- }
1186
-
1187
- .premium-banner-animation8:hover .premium-banner-bottom,
1188
- .premium-banner-animation8.active .premium-banner-bottom {
1189
- width: -webkit-calc(100% - 61px);
1190
- width: calc(100% - 61px);
1191
- }
1192
-
1193
- .premium-banner-animation8:hover .premium-banner-btop,
1194
- .premium-banner-animation8.active .premium-banner-btop {
1195
- width: -webkit-calc(100% - 61px);
1196
- width: calc(100% - 61px);
1197
- }
1198
-
1199
- .premium-banner-animation8:hover .premium-banner-ib-content,
1200
- .premium-banner-animation8:hover .premium-banner-ib-title,
1201
- .premium-banner-animation8:hover .premium-banner-read-more,
1202
- .premium-banner-animation8:hover img {
1203
- -webkit-transition-delay: 0.15s;
1204
- transition-delay: 0.15s;
1205
- }
1206
-
1207
- .premium-banner-animation9 img {
1208
- width: -webkit-calc(100% + 20px) !important;
1209
- width: calc(100% + 20px) !important;
1210
- max-width: -webkit-calc(100% + 20px) !important;
1211
- max-width: calc(100% + 20px) !important;
1212
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1213
- transition: opacity 0.35s, -webkit-transform 0.35s;
1214
- transition: opacity 0.35s, transform 0.35s;
1215
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1216
- -webkit-transform: scale(1.2);
1217
- -ms-transform: scale(1.2);
1218
- transform: scale(1.2);
1219
- }
1220
-
1221
- .premium-banner-animation9 .premium-banner-ib-desc {
1222
- width: 100%;
1223
- height: 100%;
1224
- }
1225
-
1226
- .premium-banner-animation9 .premium-banner-ib-desc::before {
1227
- position: absolute;
1228
- top: 50%;
1229
- right: 50%;
1230
- width: 80%;
1231
- height: 1px;
1232
- background: #fff;
1233
- content: "";
1234
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1235
- transition: opacity 0.35s, -webkit-transform 0.35s;
1236
- transition: opacity 0.35s, transform 0.35s;
1237
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1238
- -webkit-transform: translate3d(50%, -50%, 0);
1239
- transform: translate3d(50%, -50%, 0);
1240
- }
1241
-
1242
- .premium-banner-animation9 .premium-banner-ib-desc::after {
1243
- position: absolute;
1244
- top: 50%;
1245
- right: 50%;
1246
- width: 80%;
1247
- height: 1px;
1248
- background: #fff;
1249
- content: "";
1250
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1251
- transition: opacity 0.35s, -webkit-transform 0.35s;
1252
- transition: opacity 0.35s, transform 0.35s;
1253
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1254
- -webkit-transform: translate3d(50%, -50%, 0);
1255
- transform: translate3d(50%, -50%, 0);
1256
- }
1257
-
1258
- .premium-banner-animation9 .premium-banner-ib-title {
1259
- position: absolute;
1260
- top: 50%;
1261
- right: 0;
1262
- width: 100%;
1263
- -webkit-transition: -webkit-transform 0.35s;
1264
- transition: -webkit-transform 0.35s;
1265
- transition: transform 0.35s;
1266
- transition: transform 0.35s, -webkit-transform 0.35s;
1267
- -webkit-transform: translate3d(0, -70px, 0);
1268
- transform: translate3d(0, -70px, 0);
1269
- margin-top: 0;
1270
- padding: 0 10%;
1271
- }
1272
-
1273
- .premium-banner-animation9:hover .premium-banner-ib-title,
1274
- .premium-banner-animation9.active .premium-banner-ib-title {
1275
- -webkit-transform: translate3d(0, -80px, 0);
1276
- transform: translate3d(0, -80px, 0);
1277
- }
1278
-
1279
- .premium-banner-animation9 .premium-banner-ib-content,
1280
- .premium-banner-animation9 .premium-banner-read-more {
1281
- position: absolute;
1282
- top: 50%;
1283
- right: 0;
1284
- width: 100%;
1285
- -webkit-transition: -webkit-transform 0.35s;
1286
- transition: -webkit-transform 0.35s;
1287
- transition: transform 0.35s;
1288
- transition: transform 0.35s, -webkit-transform 0.35s;
1289
- padding: 0 10%;
1290
- -webkit-transform: translate3d(0, 35px, 0);
1291
- transform: translate3d(0, 35px, 0);
1292
- }
1293
-
1294
- .premium-banner-animation9 .premium-banner-read-more {
1295
- top: 75%;
1296
- }
1297
-
1298
- .premium-banner-animation9:hover .premium-banner-ib-content,
1299
- .premium-banner-animation9.active .premium-banner-ib-content,
1300
- .premium-banner-animation9:hover .premium-banner-read-more,
1301
- .premium-banner-animation9.active .premium-banner-read-more {
1302
- -webkit-transform: translate3d(0, 45px, 0);
1303
- transform: translate3d(0, 45px, 0);
1304
- }
1305
-
1306
- .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1307
- .premium-banner-animation9.active .premium-banner-ib-desc::before {
1308
- opacity: 0.5;
1309
- -webkit-transform: translate3d(50%, -50%, 0) rotate(-45deg);
1310
- transform: translate3d(50%, -50%, 0) rotate(-45deg);
1311
- }
1312
-
1313
- .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1314
- .premium-banner-animation9.active .premium-banner-ib-desc::after {
1315
- opacity: 0.5;
1316
- -webkit-transform: translate3d(50%, -50%, 0) rotate(45deg);
1317
- transform: translate3d(50%, -50%, 0) rotate(45deg);
1318
- }
1319
-
1320
- .premium-banner-animation9:hover img {
1321
- -webkit-transform: scale(1);
1322
- -ms-transform: scale(1);
1323
- transform: scale(1);
1324
- }
1325
-
1326
- .premium-banner-animation10 img {
1327
- width: -webkit-calc(100% + 20px) !important;
1328
- width: calc(100% + 20px) !important;
1329
- max-width: -webkit-calc(100% + 20px) !important;
1330
- max-width: calc(100% + 20px) !important;
1331
- }
1332
-
1333
- .premium-banner-animation10 .premium-banner-ib-title {
1334
- position: relative;
1335
- overflow: hidden;
1336
- padding: 5px 0 15px;
1337
- -webkit-transition: -webkit-transform 0.35s;
1338
- transition: -webkit-transform 0.35s;
1339
- transition: transform 0.35s;
1340
- transition: transform 0.35s, -webkit-transform 0.35s;
1341
- -webkit-transform: translate3d(0, 20px, 0);
1342
- transform: translate3d(0, 20px, 0);
1343
- margin-bottom: 0;
1344
- }
1345
-
1346
- .premium-banner-animation10 .premium-banner-ib-title::after {
1347
- position: absolute;
1348
- content: "";
1349
- bottom: 0;
1350
- right: 0;
1351
- width: 100%;
1352
- height: 3px;
1353
- background: #fff;
1354
- opacity: 0;
1355
- -webkit-transform: translate3d(0, 100%, 0);
1356
- transform: translate3d(0, 100%, 0);
1357
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1358
- transition: opacity 0.35s, -webkit-transform 0.35s;
1359
- transition: opacity 0.35s, transform 0.35s;
1360
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1361
- }
1362
-
1363
- .premium-banner-animation10:hover .premium-banner-ib-title,
1364
- .premium-banner-animation10.active .premium-banner-ib-title {
1365
- -webkit-transform: translate3d(0, 0, 0);
1366
- transform: translate3d(0, 0, 0);
1367
- }
1368
-
1369
- .premium-banner-animation10:hover .premium-banner-ib-title::after,
1370
- .premium-banner-animation10.active .premium-banner-ib-title::after {
1371
- opacity: 1;
1372
- -webkit-transform: translate3d(0, 0, 0);
1373
- transform: translate3d(0, 0, 0);
1374
- }
1375
-
1376
- .premium-banner-animation10 .premium-banner-ib-content,
1377
- .premium-banner-animation10 .premium-banner-read-more {
1378
- padding-top: 15px;
1379
- opacity: 0;
1380
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1381
- transition: opacity 0.35s, -webkit-transform 0.35s;
1382
- transition: opacity 0.35s, transform 0.35s;
1383
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1384
- -webkit-transform: translate3d(0, 100%, 0);
1385
- transform: translate3d(0, 100%, 0);
1386
- }
1387
-
1388
- .premium-banner-animation10 .premium-banner-read-more {
1389
- padding: 0;
1390
- }
1391
-
1392
- .premium-banner-animation10:hover .premium-banner-ib-content,
1393
- .premium-banner-animation10.active .premium-banner-ib-content,
1394
- .premium-banner-animation10:hover .premium-banner-read-more,
1395
- .premium-banner-animation10.active .premium-banner-read-more {
1396
- opacity: 1;
1397
- -webkit-transform: translate3d(0, 0, 0);
1398
- transform: translate3d(0, 0, 0);
1399
- }
1400
-
1401
- .premium-banner-animation11 {
1402
- -webkit-transition: -webkit-transform 1s ease-out;
1403
- transition: -webkit-transform 1s ease-out;
1404
- transition: transform 1s ease-out;
1405
- transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1406
- -webkit-transition-delay: 0.125s;
1407
- transition-delay: 0.125s;
1408
- }
1409
-
1410
- .premium-banner-animation11 .premium-banner-ib-desc {
1411
- position: absolute;
1412
- z-index: 5;
1413
- -webkit-transform: translate3d(30px, 0, 0);
1414
- transform: translate3d(30px, 0, 0);
1415
- opacity: 0;
1416
- top: auto;
1417
- bottom: 0;
1418
- min-height: 25%;
1419
- height: auto;
1420
- max-height: 100%;
1421
- text-align: left;
1422
- padding: 30px;
1423
- -webkit-transition: all 0.6s ease-out;
1424
- transition: all 0.6s ease-out;
1425
- }
1426
-
1427
- .premium-banner-animation11 img {
1428
- width: 100%;
1429
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1430
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1431
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1432
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1433
- }
1434
-
1435
- .premium-banner-animation11 .premium-banner-ib-title {
1436
- margin-bottom: 10px;
1437
- }
1438
-
1439
- .premium-banner-animation11 .premium-banner-gradient {
1440
- position: absolute;
1441
- left: 0;
1442
- top: 0;
1443
- right: 0;
1444
- bottom: 0;
1445
- }
1446
-
1447
- .premium-banner-animation11 .premium-banner-gradient:after,
1448
- .premium-banner-animation11 .premium-banner-gradient:before {
1449
- position: absolute;
1450
- content: "";
1451
- left: 0;
1452
- top: 0;
1453
- right: 0;
1454
- bottom: 0;
1455
- -webkit-transform: translate3d(100%, 0, 0);
1456
- transform: translate3d(100%, 0, 0);
1457
- background-image: -webkit-linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1458
- background-image: -webkit-linear-gradient(130deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1459
- background-image: linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1460
- z-index: 2;
1461
- }
1462
-
1463
- .premium-banner-animation11 .premium-banner-gradient:before {
1464
- mix-blend-mode: color;
1465
- }
1466
-
1467
- .premium-banner-animation11 .premium-banner-gradient:after {
1468
- mix-blend-mode: multiply;
1469
- }
1470
-
1471
- .premium-banner-animation11:hover .premium-banner-ib-desc,
1472
- .premium-banner-animation11.active .premium-banner-ib-desc {
1473
- opacity: 1;
1474
- -webkit-transform: translate3d(0, 0, 0);
1475
- transform: translate3d(0, 0, 0);
1476
- }
1477
-
1478
- .premium-banner-animation11:hover .premium-banner-gradient:after,
1479
- .premium-banner-animation11:hover .premium-banner-gradient:before,
1480
- .premium-banner-animation11.active .premium-banner-gradient:after,
1481
- .premium-banner-animation11.active .premium-banner-gradient:before {
1482
- -webkit-transform: translate3d(0, 0, 0);
1483
- transform: translate3d(0, 0, 0);
1484
- }
1485
-
1486
- .premium-banner-animation11.zoomout img,
1487
- .premium-banner-animation11.scale img {
1488
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1489
- transform: translate3d(-10px, 0, 0) scale(1.1);
1490
- }
1491
-
1492
- /************ Premium Countdown ************/
1493
- /*******************************************/
1494
- .premium-countdown {
1495
- -js-display: flex;
1496
- display: -webkit-box;
1497
- display: -webkit-flex;
1498
- display: -moz-box;
1499
- display: -ms-flexbox;
1500
- display: flex;
1501
- text-align: center;
1502
- }
1503
-
1504
- .countdown-row {
1505
- display: block;
1506
- text-align: center;
1507
- }
1508
-
1509
- .countdown .countdown-section {
1510
- display: inline-block;
1511
- max-width: 100%;
1512
- margin-bottom: 15px;
1513
- -js-display: inline-flex;
1514
- display: -webkit-inline-box;
1515
- display: -webkit-inline-flex;
1516
- display: -moz-inline-box;
1517
- display: -ms-inline-flexbox;
1518
- display: inline-flex;
1519
- -webkit-box-align: center;
1520
- -webkit-align-items: center;
1521
- -moz-box-align: center;
1522
- -ms-flex-align: center;
1523
- align-items: center;
1524
- }
1525
-
1526
- .countdown .countdown-section:last-child {
1527
- margin-left: 0;
1528
- }
1529
-
1530
- .countdown span.countdown-amount {
1531
- font-size: 70px;
1532
- line-height: 1;
1533
- padding: 40px;
1534
- }
1535
-
1536
- .countdown .pre_time-mid {
1537
- display: block;
1538
- }
1539
-
1540
- .premium-countdown-separator-yes .countdown_separator {
1541
- display: block;
1542
- margin: 0 50px;
1543
- font-size: 30px;
1544
- }
1545
-
1546
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1547
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1548
- display: none;
1549
- }
1550
-
1551
- /**
1552
- * Digit and unit styles
1553
- */
1554
- .side .countdown-section .countdown-period {
1555
- vertical-align: bottom;
1556
- }
1557
-
1558
- .countdown .countdown-section .countdown-period {
1559
- font-size: 17px;
1560
- line-height: 3em;
1561
- }
1562
-
1563
- .side .countdown-section .countdown-amount,
1564
- .side .countdown-section .countdown-period {
1565
- display: inline-block;
1566
- }
1567
-
1568
- .side .countdown-section .countdown-amount {
1569
- margin-left: 5px;
1570
- }
1571
-
1572
- .down .countdown-section .countdown-amount,
1573
- .down .countdown-section .countdown-period {
1574
- display: block;
1575
- }
1576
-
1577
- /**
1578
- * Flip Layout
1579
- */
1580
- .premium-countdown-flip .premium-countdown-block {
1581
- text-align: center;
1582
- -js-display: inline-flex;
1583
- display: -webkit-inline-box;
1584
- display: -webkit-inline-flex;
1585
- display: -moz-inline-box;
1586
- display: -ms-inline-flexbox;
1587
- display: inline-flex;
1588
- -webkit-box-align: center;
1589
- -webkit-align-items: center;
1590
- -moz-box-align: center;
1591
- -ms-flex-align: center;
1592
- align-items: center;
1593
- }
1594
-
1595
- .premium-countdown-flip .premium-countdown-block:last-child {
1596
- margin-left: 0;
1597
- }
1598
-
1599
- .premium-countdown-flip .premium-countdown-label {
1600
- overflow: hidden;
1601
- color: #1a1a1a;
1602
- text-transform: uppercase;
1603
- }
1604
-
1605
- .premium-countdown-flip .premium-countdown-figure {
1606
- position: relative;
1607
- height: 110px;
1608
- width: 100px;
1609
- line-height: 107px;
1610
- background-color: #fff;
1611
- -webkit-border-radius: 10px;
1612
- border-radius: 10px;
1613
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1614
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1615
- }
1616
-
1617
- .premium-countdown-flip .premium-countdown-figure:last-child {
1618
- margin-left: 0;
1619
- }
1620
-
1621
- .premium-countdown-flip .premium-countdown-figure>span {
1622
- position: absolute;
1623
- right: 0;
1624
- left: 0;
1625
- margin: auto;
1626
- font-weight: 700;
1627
- }
1628
-
1629
- .premium-countdown-flip .premium-countdown-figure .top {
1630
- z-index: 3;
1631
- -webkit-transform-origin: 50% 100%;
1632
- -ms-transform-origin: 50% 100%;
1633
- transform-origin: 50% 100%;
1634
- -webkit-transform: perspective(200px);
1635
- transform: perspective(200px);
1636
- -webkit-backface-visibility: hidden;
1637
- backface-visibility: hidden;
1638
- }
1639
-
1640
- .premium-countdown-flip .premium-countdown-figure .bottom {
1641
- z-index: 1;
1642
- }
1643
-
1644
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
1645
- content: "";
1646
- position: absolute;
1647
- display: block;
1648
- top: 0;
1649
- right: 0;
1650
- width: 100%;
1651
- height: 50%;
1652
- background-color: rgba(0, 0, 0, 0.02);
1653
- }
1654
-
1655
- .premium-countdown-flip .premium-countdown-figure .top-back {
1656
- -webkit-backface-visibility: hidden;
1657
- backface-visibility: hidden;
1658
- z-index: 4;
1659
- bottom: 0;
1660
- -webkit-transform-origin: 50% 0;
1661
- -ms-transform-origin: 50% 0;
1662
- transform-origin: 50% 0;
1663
- -webkit-transform: perspective(200px) rotateX(180deg);
1664
- transform: perspective(200px) rotateX(180deg);
1665
- }
1666
-
1667
- .premium-countdown-flip .premium-countdown-figure .top-back span {
1668
- position: absolute;
1669
- top: -100%;
1670
- right: 0;
1671
- left: 0;
1672
- margin: auto;
1673
- }
1674
-
1675
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
1676
- z-index: 2;
1677
- top: 0;
1678
- }
1679
-
1680
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1681
- position: absolute;
1682
- top: 0;
1683
- right: 0;
1684
- left: 0;
1685
- margin: auto;
1686
- }
1687
-
1688
- .premium-countdown-flip .premium-countdown-figure .top,
1689
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
1690
- .premium-countdown-flip .premium-countdown-figure .top-back {
1691
- height: 50%;
1692
- overflow: hidden;
1693
- background-color: #f7f7f7;
1694
- -webkit-border-top-right-radius: 10px;
1695
- border-top-right-radius: 10px;
1696
- -webkit-border-top-left-radius: 10px;
1697
- border-top-left-radius: 10px;
1698
- }
1699
-
1700
- .premium-countdown-flip .premium-countdown-figure .top-back {
1701
- -webkit-border-bottom-right-radius: 10px;
1702
- border-bottom-right-radius: 10px;
1703
- -webkit-border-bottom-left-radius: 10px;
1704
- border-bottom-left-radius: 10px;
1705
- }
1706
-
1707
- .premium-countdown-flip .premium-countdown-figure .top::after,
1708
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1709
- content: "";
1710
- position: absolute;
1711
- z-index: -1;
1712
- right: 0;
1713
- bottom: 0;
1714
- width: 100%;
1715
- height: 100%;
1716
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1717
- }
1718
-
1719
- .side .premium-countdown-figure,
1720
- .side .premium-countdown-label {
1721
- display: inline-block;
1722
- }
1723
-
1724
- .side .premium-countdown-figure {
1725
- margin-left: 5px;
1726
- }
1727
-
1728
- .down .premium-countdown-figure,
1729
- .down .premium-countdown-label {
1730
- display: block;
1731
- }
1732
-
1733
- .down .premium-countdown-label {
1734
- width: 100%;
1735
- }
1736
-
1737
- /**************** Premium Carousel **************/
1738
- /************************************************/
1739
- .premium-carousel-wrapper a.carousel-arrow,
1740
- .premium-carousel-wrapper a.ver-carousel-arrow,
1741
- .premium-fb-rev-container a.carousel-arrow,
1742
- .premium-tabs-nav-list a.carousel-arrow,
1743
- .premium-blog-wrap a.carousel-arrow,
1744
- .premium-hscroll-wrap a.carousel-arrow,
1745
- .premium-twitter-feed-wrapper a.carousel-arrow,
1746
- .premium-facebook-feed-wrapper a.carousel-arrow,
1747
- .premium-instafeed-container a.carousel-arrow,
1748
- .premium-persons-container a.carousel-arrow {
1749
- display: -ms-flexbox;
1750
- display: -webkit-flex;
1751
- display: -moz-flex;
1752
- display: -ms-flex;
1753
- -js-display: flex;
1754
- display: -webkit-box;
1755
- display: -moz-box;
1756
- display: flex;
1757
- -webkit-box-align: center;
1758
- -webkit-align-items: center;
1759
- -moz-box-align: center;
1760
- -ms-flex-align: center;
1761
- align-items: center;
1762
- -webkit-box-pack: center;
1763
- -webkit-justify-content: center;
1764
- -moz-box-pack: center;
1765
- -ms-flex-pack: center;
1766
- justify-content: center;
1767
- width: 2em;
1768
- height: 2em;
1769
- line-height: 0;
1770
- text-align: center;
1771
- position: absolute;
1772
- z-index: 99;
1773
- cursor: pointer;
1774
- -webkit-transition: all 0.3s ease-in-out;
1775
- transition: all 0.3s ease-in-out;
1776
- -webkit-appearance: inherit;
1777
- border: none;
1778
- -webkit-box-shadow: none;
1779
- box-shadow: none;
1780
- }
1781
-
1782
- div[class^="premium-"] .slick-arrow i {
1783
- display: block;
1784
- }
1785
-
1786
- .ver-carousel-arrow.carousel-next i {
1787
- margin-bottom: -3px;
1788
- }
1789
-
1790
- .premium-carousel-wrapper a.slick-arrow:hover {
1791
- -webkit-box-shadow: none !important;
1792
- box-shadow: none !important;
1793
- }
1794
-
1795
- .premium-carousel-wrapper .premium-carousel-content-hidden {
1796
- visibility: hidden;
1797
- }
1798
-
1799
- .premium-carousel-wrapper a.carousel-arrow,
1800
- .premium-fb-rev-container a.carousel-arrow,
1801
- .premium-tabs-nav-list a.carousel-arrow,
1802
- .premium-blog-wrap a.carousel-arrow,
1803
- .premium-hscroll-wrap a.carousel-arrow,
1804
- .premium-twitter-feed-wrapper a.carousel-arrow,
1805
- .premium-facebook-feed-wrapper a.carousel-arrow,
1806
- .premium-instafeed-container a.carousel-arrow,
1807
- .premium-persons-container a.carousel-arrow {
1808
- top: 50%;
1809
- -webkit-transform: translateY(-50%);
1810
- -ms-transform: translateY(-50%);
1811
- transform: translateY(-50%);
1812
- }
1813
-
1814
- .premium-carousel-wrapper a.ver-carousel-arrow {
1815
- right: 50%;
1816
- -webkit-transform: translateX(50%);
1817
- -ms-transform: translateX(50%);
1818
- transform: translateX(50%);
1819
- }
1820
-
1821
- a.carousel-arrow.carousel-next {
1822
- right: -20px;
1823
- }
1824
-
1825
- a.carousel-arrow.carousel-prev {
1826
- left: -20px;
1827
- }
1828
-
1829
- a.ver-carousel-arrow.carousel-next {
1830
- bottom: -56px;
1831
- }
1832
-
1833
- a.ver-carousel-arrow.carousel-prev {
1834
- top: -45px;
1835
- }
1836
-
1837
- a.circle-bg {
1838
- -webkit-border-radius: 100%;
1839
- border-radius: 100%;
1840
- }
1841
-
1842
- a.circle-border {
1843
- -webkit-border-radius: 100%;
1844
- border-radius: 100%;
1845
- border: solid black;
1846
- }
1847
-
1848
- a.square-border {
1849
- border: solid black;
1850
- }
1851
-
1852
- .premium-carousel-dots-below,
1853
- .premium-blog-wrap ul.slick-dots,
1854
- .premium-fb-rev-reviews ul.slick-dots {
1855
- position: relative;
1856
- bottom: 0;
1857
- list-style: none;
1858
- text-align: center;
1859
- margin: 0;
1860
- padding: 0;
1861
- }
1862
-
1863
- .premium-carousel-dots-above ul.slick-dots {
1864
- position: absolute;
1865
- display: -ms-flexbox;
1866
- display: -webkit-flex;
1867
- display: -moz-flex;
1868
- display: -ms-flex;
1869
- -js-display: flex;
1870
- display: -webkit-box;
1871
- display: -moz-box;
1872
- display: flex;
1873
- top: 50%;
1874
- -webkit-transform: translateY(-50%);
1875
- -ms-transform: translateY(-50%);
1876
- transform: translateY(-50%);
1877
- -webkit-flex-direction: column;
1878
- -webkit-box-orient: vertical;
1879
- -webkit-box-direction: normal;
1880
- -moz-box-orient: vertical;
1881
- -moz-box-direction: normal;
1882
- -ms-flex-direction: column;
1883
- flex-direction: column;
1884
- }
1885
-
1886
- ul.slick-dots li {
1887
- font-size: 10px;
1888
- display: -webkit-inline-box;
1889
- display: -webkit-inline-flex;
1890
- display: -ms-inline-flexbox;
1891
- -js-display: inline-flex;
1892
- display: -moz-inline-box;
1893
- display: inline-flex;
1894
- -webkit-box-pack: center;
1895
- -webkit-justify-content: center;
1896
- -moz-box-pack: center;
1897
- -ms-flex-pack: center;
1898
- justify-content: center;
1899
- -webkit-box-align: center;
1900
- -webkit-align-items: center;
1901
- -moz-box-align: center;
1902
- -ms-flex-align: center;
1903
- align-items: center;
1904
- margin: 5px;
1905
- width: 20px;
1906
- height: 20px;
1907
- cursor: pointer;
1908
- }
1909
-
1910
- /*
1911
- * Custom Navigation Dot
1912
- */
1913
- .premium-carousel-wrapper .premium-carousel-nav-dot,
1914
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1915
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1916
- display: none;
1917
- }
1918
-
1919
- .premium-carousel-wrapper ul.slick-dots svg {
1920
- width: 20px;
1921
- height: 20px;
1922
- }
1923
-
1924
- /* Ripple Out */
1925
- @-webkit-keyframes hvr-ripple-out {
1926
- 0% {
1927
- -webkit-transform: scale(1);
1928
- transform: scale(1);
1929
- opacity: 1;
1930
- }
1931
-
1932
- 100% {
1933
- -webkit-transform: scale(1.5);
1934
- transform: scale(1.5);
1935
- opacity: 0;
1936
- }
1937
- }
1938
-
1939
- @keyframes hvr-ripple-out {
1940
- 0% {
1941
- -webkit-transform: scale(1);
1942
- transform: scale(1);
1943
- opacity: 1;
1944
- }
1945
-
1946
- 100% {
1947
- -webkit-transform: scale(1.5);
1948
- transform: scale(1.5);
1949
- opacity: 0;
1950
- }
1951
- }
1952
-
1953
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
1954
- padding-bottom: 1px;
1955
- }
1956
-
1957
- .premium-carousel-ripple-yes ul.slick-dots li,
1958
- .premium-carousel-ripple-yes ul.slick-dots li i {
1959
- position: relative;
1960
- }
1961
-
1962
- .premium-carousel-ripple-yes ul.slick-dots li i {
1963
- z-index: 1;
1964
- }
1965
-
1966
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1967
- content: "";
1968
- position: absolute;
1969
- -webkit-transform: scale(1);
1970
- -ms-transform: scale(1);
1971
- transform: scale(1);
1972
- top: 0;
1973
- left: 0;
1974
- bottom: 0;
1975
- right: 0;
1976
- -webkit-border-radius: 50%;
1977
- border-radius: 50%;
1978
- pointer-events: none;
1979
- background-color: rgba(0, 0, 0, 0.15);
1980
- }
1981
-
1982
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1983
- background-color: rgba(0, 0, 0, 0.3);
1984
- }
1985
-
1986
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1987
- -webkit-animation: hvr-ripple-out 1.3s infinite;
1988
- animation: hvr-ripple-out 1.3s infinite;
1989
- }
1990
-
1991
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
1992
- -webkit-transform: scale(1.25, 1.25);
1993
- -ms-transform: scale(1.25, 1.25);
1994
- transform: scale(1.25, 1.25);
1995
- -webkit-transition: all 0.3s ease-in-out !important;
1996
- transition: all 0.3s ease-in-out !important;
1997
- }
1998
-
1999
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2000
- -webkit-transform: scale(1, 1);
2001
- -ms-transform: scale(1, 1);
2002
- transform: scale(1, 1);
2003
- }
2004
-
2005
- [dir="rtl"] .premium-carousel-inner .slick-slide {
2006
- float: right;
2007
- }
2008
-
2009
- /**************** Premium Counter ***************/
2010
- /************************************************/
2011
- .premium-counter-area {
2012
- padding: 10px 0;
2013
- -js-display: flex;
2014
- display: -webkit-box;
2015
- display: -webkit-flex;
2016
- display: -moz-box;
2017
- display: -ms-flexbox;
2018
- display: flex;
2019
- -webkit-box-pack: center;
2020
- -webkit-justify-content: center;
2021
- -moz-box-pack: center;
2022
- -ms-flex-pack: center;
2023
- justify-content: center;
2024
- -webkit-box-align: center;
2025
- -webkit-align-items: center;
2026
- -moz-box-align: center;
2027
- -ms-flex-align: center;
2028
- align-items: center;
2029
- }
2030
-
2031
- .premium-counter-area.top {
2032
- -webkit-box-orient: vertical;
2033
- -webkit-box-direction: normal;
2034
- -webkit-flex-direction: column;
2035
- -moz-box-orient: vertical;
2036
- -moz-box-direction: normal;
2037
- -ms-flex-direction: column;
2038
- flex-direction: column;
2039
- }
2040
-
2041
- .premium-counter-area.right {
2042
- -webkit-box-orient: horizontal;
2043
- -webkit-box-direction: reverse;
2044
- -webkit-flex-direction: row-reverse;
2045
- -moz-box-orient: horizontal;
2046
- -moz-box-direction: reverse;
2047
- -ms-flex-direction: row-reverse;
2048
- flex-direction: row-reverse;
2049
- }
2050
-
2051
- .premium-counter-area.right .premium-counter-icon {
2052
- padding-right: 20px;
2053
- }
2054
-
2055
- .premium-counter-area.left .premium-counter-icon {
2056
- padding-left: 20px;
2057
- }
2058
-
2059
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
2060
- vertical-align: text-top;
2061
- }
2062
-
2063
- .premium-counter-area .premium-counter-icon span.icon {
2064
- text-align: center;
2065
- display: inline-block;
2066
- vertical-align: middle;
2067
- }
2068
-
2069
- .premium-counter-area .premium-counter-icon .circle {
2070
- -webkit-border-radius: 100%;
2071
- border-radius: 100%;
2072
- }
2073
-
2074
- .premium-counter-area .premium-counter-icon img,
2075
- .premium-counter-area .premium-counter-icon svg {
2076
- width: 80px;
2077
- }
2078
-
2079
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2080
- height: 80px;
2081
- }
2082
-
2083
- .premium-counter-area .premium-counter-title {
2084
- padding: 0;
2085
- margin: 0;
2086
- }
2087
-
2088
- .premium-counter-area .premium-counter-value-wrap {
2089
- -js-display: flex;
2090
- display: -webkit-box;
2091
- display: -webkit-flex;
2092
- display: -moz-box;
2093
- display: -ms-flexbox;
2094
- display: flex;
2095
- -webkit-box-align: center;
2096
- -webkit-align-items: center;
2097
- -moz-box-align: center;
2098
- -ms-flex-align: center;
2099
- align-items: center;
2100
- }
2101
-
2102
- .premium-init-wrapper.right {
2103
- text-align: left;
2104
- }
2105
-
2106
- /* * Custom image and simple styles image fix */
2107
- span.icon.flex-width {
2108
- width: auto !important;
2109
- height: auto !important;
2110
- }
2111
-
2112
- .premium-counter-area .premium-counter-init {
2113
- font-size: 35px;
2114
- }
2115
-
2116
- /**************** Premium Image Separator ****************/
2117
- /*********************************************************/
2118
- /*Image Separator Container Style*/
2119
- .premium-image-separator-container {
2120
- position: absolute;
2121
- width: 100%;
2122
- z-index: 2;
2123
- top: auto;
2124
- }
2125
-
2126
- .premium-image-separator-container img {
2127
- display: inline-block !important;
2128
- -webkit-mask-repeat: no-repeat;
2129
- mask-repeat: no-repeat;
2130
- -webkit-mask-position: center;
2131
- mask-position: center;
2132
- }
2133
-
2134
- /*Link on Image Style*/
2135
- .premium-image-separator-link {
2136
- position: absolute;
2137
- z-index: 9999;
2138
- top: 0;
2139
- right: 0;
2140
- width: 100%;
2141
- height: 100%;
2142
- text-decoration: none;
2143
- }
2144
-
2145
- /*Important to override Theme options*/
2146
- a.premium-image-separator-link:hover,
2147
- a.premium-image-separator-link:visited,
2148
- a.premium-image-separator-link:focus,
2149
- a.premium-image-separator-link:active {
2150
- -webkit-box-shadow: none !important;
2151
- box-shadow: none !important;
2152
- outline: none !important;
2153
- border: none !important;
2154
- text-decoration: none !important;
2155
- }
2156
-
2157
- .premium-image-separator-container .img-responsive {
2158
- display: inline-block;
2159
- }
2160
-
2161
- .premium-image-separator-container i {
2162
- padding: 0.1em;
2163
- -webkit-transition: all 0.3s ease-in-out;
2164
- transition: all 0.3s ease-in-out;
2165
- }
2166
-
2167
- /**************** Premium Modal Box ****************/
2168
- /***************************************************/
2169
- .premium-modal-trigger-btn,
2170
- .premium-modal-box-modal-lower-close {
2171
- display: inline-block;
2172
- padding: 6px 12px;
2173
- margin-bottom: 0;
2174
- font-size: 14px;
2175
- font-weight: normal;
2176
- line-height: 1.42857143;
2177
- text-align: center;
2178
- white-space: nowrap;
2179
- vertical-align: middle;
2180
- -ms-touch-action: manipulation;
2181
- touch-action: manipulation;
2182
- cursor: pointer;
2183
- -webkit-user-select: none;
2184
- -moz-user-select: none;
2185
- -ms-user-select: none;
2186
- user-select: none;
2187
- background-image: none;
2188
- border: 1px solid transparent;
2189
- }
2190
-
2191
- .premium-modal-trigger-btn i {
2192
- -webkit-transition: all 0.3s ease-in-out;
2193
- transition: all 0.3s ease-in-out;
2194
- }
2195
-
2196
- .premium-btn-md {
2197
- padding: 8px 14px;
2198
- font-size: 16px;
2199
- line-height: 1.2;
2200
- }
2201
-
2202
- .premium-btn-lg {
2203
- padding: 10px 16px;
2204
- font-size: 18px;
2205
- line-height: 1.3333333;
2206
- }
2207
-
2208
- .premium-btn-block {
2209
- display: block;
2210
- width: 100%;
2211
- }
2212
-
2213
- .premium-modal-box-modal-close {
2214
- float: left;
2215
- font-size: 21px;
2216
- font-weight: bold;
2217
- line-height: 1;
2218
- color: #000;
2219
- }
2220
-
2221
- .premium-modal-box-modal-close:hover,
2222
- .premium-modal-box-modal-close:focus {
2223
- color: #000;
2224
- text-decoration: none;
2225
- cursor: pointer;
2226
- }
2227
-
2228
- button.premium-modal-box-modal-close {
2229
- -webkit-appearance: none;
2230
- padding: 0;
2231
- cursor: pointer;
2232
- background: transparent;
2233
- border: 0;
2234
- }
2235
-
2236
- .premium-modal-box-modal {
2237
- position: fixed;
2238
- top: 0;
2239
- left: 0;
2240
- bottom: 0;
2241
- right: 0;
2242
- z-index: 1050;
2243
- display: none;
2244
- -webkit-overflow-scrolling: touch;
2245
- outline: 0;
2246
- padding: 0 !important;
2247
- background: rgba(0, 0, 0, 0.5);
2248
- -webkit-box-align: center;
2249
- -webkit-align-items: center;
2250
- -moz-box-align: center;
2251
- -ms-flex-align: center;
2252
- align-items: center;
2253
- -webkit-box-pack: center;
2254
- -webkit-justify-content: center;
2255
- -moz-box-pack: center;
2256
- -ms-flex-pack: center;
2257
- justify-content: center;
2258
- }
2259
-
2260
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
2261
- position: absolute;
2262
- max-height: -webkit-calc(100vh - 150px);
2263
- max-height: calc(100vh - 150px);
2264
- -js-display: flex;
2265
- display: -webkit-box;
2266
- display: -webkit-flex;
2267
- display: -moz-box;
2268
- display: -ms-flexbox;
2269
- display: flex;
2270
- -webkit-box-orient: vertical;
2271
- -webkit-box-direction: normal;
2272
- -webkit-flex-direction: column;
2273
- -moz-box-orient: vertical;
2274
- -moz-box-direction: normal;
2275
- -ms-flex-direction: column;
2276
- flex-direction: column;
2277
- opacity: 0;
2278
- }
2279
-
2280
- .premium-modal-box-modal-content {
2281
- background-color: #fff;
2282
- -webkit-background-clip: padding-box;
2283
- background-clip: padding-box;
2284
- border: 1px solid rgba(0, 0, 0, 0.2);
2285
- -webkit-border-radius: 6px;
2286
- border-radius: 6px;
2287
- outline: 0;
2288
- }
2289
-
2290
- .premium-modal-backdrop.premium-in {
2291
- filter: alpha(opacity=50);
2292
- opacity: 0.5 !important;
2293
- }
2294
-
2295
- .premium-modal-fade.premium-in {
2296
- opacity: 1;
2297
- }
2298
-
2299
- .premium-modal-backdrop {
2300
- position: fixed;
2301
- top: 0;
2302
- left: 0;
2303
- bottom: 0;
2304
- right: 0;
2305
- z-index: 1040;
2306
- background-color: #000;
2307
- }
2308
-
2309
- .premium-modal-backdrop.premium-modal-fade {
2310
- filter: alpha(opacity=0);
2311
- opacity: 0;
2312
- }
2313
-
2314
- .premium-modal-fade {
2315
- opacity: 0;
2316
- }
2317
-
2318
- .premium-in {
2319
- -js-display: flex !important;
2320
- display: -webkit-box !important;
2321
- display: -webkit-flex !important;
2322
- display: -moz-box !important;
2323
- display: -ms-flexbox !important;
2324
- display: flex !important;
2325
- }
2326
-
2327
- .premium-modal-box-modal-header {
2328
- -js-display: flex;
2329
- display: -webkit-box;
2330
- display: -webkit-flex;
2331
- display: -moz-box;
2332
- display: -ms-flexbox;
2333
- display: flex;
2334
- -webkit-box-pack: justify;
2335
- -webkit-justify-content: space-between;
2336
- -moz-box-pack: justify;
2337
- -ms-flex-pack: justify;
2338
- justify-content: space-between;
2339
- -webkit-box-align: center;
2340
- -webkit-align-items: center;
2341
- -moz-box-align: center;
2342
- -ms-flex-align: center;
2343
- align-items: center;
2344
- padding: 5px 15px;
2345
- border-bottom: 1px solid #e5e5e5;
2346
- }
2347
-
2348
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
2349
- margin-top: -2px;
2350
- }
2351
-
2352
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
2353
- -js-display: flex;
2354
- display: -webkit-box;
2355
- display: -webkit-flex;
2356
- display: -moz-box;
2357
- display: -ms-flexbox;
2358
- display: flex;
2359
- -webkit-box-align: center;
2360
- -webkit-align-items: center;
2361
- -moz-box-align: center;
2362
- -ms-flex-align: center;
2363
- align-items: center;
2364
- margin: 0;
2365
- padding: 0;
2366
- }
2367
-
2368
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2369
- width: 50px;
2370
- height: 60px;
2371
- }
2372
-
2373
- .premium-modal-box-modal-body {
2374
- position: relative;
2375
- padding: 15px;
2376
- overflow: hidden;
2377
- }
2378
-
2379
- .premium-modal-box-modal-footer {
2380
- padding: 15px;
2381
- text-align: left;
2382
- border-top: 1px solid #e5e5e5;
2383
- }
2384
-
2385
- .premium-modal-scrollbar-measure {
2386
- position: absolute;
2387
- top: -9999px;
2388
- width: 50px;
2389
- height: 50px;
2390
- overflow: scroll;
2391
- }
2392
-
2393
- .premium-modal-trigger-text {
2394
- background: none !important;
2395
- display: inline-block;
2396
- }
2397
-
2398
- .premium-modal-box-container {
2399
- width: 100% !important;
2400
- }
2401
-
2402
- /*Open Modal Button Style*/
2403
- .premium-modal-trigger-container .premium-modal-trigger-btn {
2404
- border: none;
2405
- -webkit-transition: all 0.3s ease-in-out;
2406
- transition: all 0.3s ease-in-out;
2407
- }
2408
-
2409
- .premium-modal-trigger-container .premium-modal-trigger-img,
2410
- .premium-modal-trigger-container .premium-modal-trigger-text,
2411
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2412
- cursor: pointer;
2413
- }
2414
-
2415
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2416
- display: inline-block;
2417
- width: 200px;
2418
- height: 200px;
2419
- -webkit-transition: all 0.3s ease-in-out;
2420
- transition: all 0.3s ease-in-out;
2421
- }
2422
-
2423
- /*Image on Modal Header Style*/
2424
- .premium-modal-box-modal-header img {
2425
- width: 48px;
2426
- padding-left: 5px;
2427
- }
2428
-
2429
- .premium-modal-box-modal-header i,
2430
- .premium-modal-box-modal-header svg {
2431
- padding-left: 6px;
2432
- }
2433
-
2434
- .premium-modal-box-modal-close {
2435
- position: relative;
2436
- z-index: 99;
2437
- }
2438
-
2439
- .premium-modal-trigger-img,
2440
- .premium-modal-trigger-text,
2441
- .premium-modal-box-close-button-container,
2442
- .premium-modal-box-modal-close,
2443
- .premium-modal-box-modal-lower-close {
2444
- -webkit-transition: all 0.3s ease-in-out;
2445
- transition: all 0.3s ease-in-out;
2446
- }
2447
-
2448
- @media (min-width: 768px) {
2449
- .premium-modal-box-modal-dialog {
2450
- width: 700px;
2451
- max-height: 600px;
2452
- overflow: auto;
2453
- }
2454
- }
2455
-
2456
- @media (max-width: 767px) {
2457
- .premium-modal-box-modal-dialog {
2458
- width: 100%;
2459
- max-height: 500px;
2460
- overflow: auto;
2461
- }
2462
- }
2463
-
2464
- .premium-modal-box-container[data-modal-animation*="animated-"] {
2465
- opacity: 0;
2466
- }
2467
-
2468
- /**************** Premium Progress Bar ****************/
2469
- /******************************************************/
2470
- .premium-progressbar-container {
2471
- position: relative;
2472
- }
2473
-
2474
- .premium-progressbar-bar-wrap {
2475
- position: relative;
2476
- text-align: right;
2477
- overflow: hidden;
2478
- height: 25px;
2479
- margin-bottom: 50px;
2480
- background-color: #f5f5f5;
2481
- -webkit-border-radius: 4px;
2482
- border-radius: 4px;
2483
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2484
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2485
- }
2486
-
2487
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
2488
- background-color: transparent;
2489
- width: 100%;
2490
- -js-display: flex;
2491
- display: -webkit-box;
2492
- display: -webkit-flex;
2493
- display: -moz-box;
2494
- display: -ms-flexbox;
2495
- display: flex;
2496
- height: auto;
2497
- -webkit-box-shadow: none;
2498
- box-shadow: none;
2499
- }
2500
-
2501
- .premium-progressbar-bar-wrap .progress-segment {
2502
- position: relative;
2503
- width: 25px;
2504
- height: 25px;
2505
- -webkit-border-radius: 50%;
2506
- border-radius: 50%;
2507
- overflow: hidden;
2508
- background-color: #f5f5f5;
2509
- }
2510
-
2511
- .premium-progressbar-bar-wrap .progress-segment.filled {
2512
- background: #6ec1e4;
2513
- }
2514
-
2515
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2516
- margin: 0 4px;
2517
- }
2518
-
2519
- .premium-progressbar-bar-wrap .progress-segment:first-child {
2520
- margin-left: 4px;
2521
- }
2522
-
2523
- .premium-progressbar-bar-wrap .progress-segment:last-child {
2524
- margin-right: 4px;
2525
- }
2526
-
2527
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2528
- position: absolute;
2529
- top: 0;
2530
- right: 0;
2531
- height: 100%;
2532
- background-color: #6ec1e4;
2533
- }
2534
-
2535
- .premium-progressbar-bar {
2536
- float: right;
2537
- width: 0%;
2538
- height: 100%;
2539
- font-size: 12px;
2540
- line-height: 20px;
2541
- background: #6ec1e4;
2542
- text-align: center;
2543
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2544
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2545
- }
2546
-
2547
- .premium-progressbar-striped .premium-progressbar-bar {
2548
- background-image: -webkit-linear-gradient(-135deg,
2549
- rgba(255, 255, 255, 0.15) 25%,
2550
- transparent 25%,
2551
- transparent 50%,
2552
- rgba(255, 255, 255, 0.15) 50%,
2553
- rgba(255, 255, 255, 0.15) 75%,
2554
- transparent 75%,
2555
- transparent);
2556
- background-image: -webkit-linear-gradient(45deg,
2557
- rgba(255, 255, 255, 0.15) 25%,
2558
- transparent 25%,
2559
- transparent 50%,
2560
- rgba(255, 255, 255, 0.15) 50%,
2561
- rgba(255, 255, 255, 0.15) 75%,
2562
- transparent 75%,
2563
- transparent);
2564
- background-image: linear-gradient(45deg,
2565
- rgba(255, 255, 255, 0.15) 25%,
2566
- transparent 25%,
2567
- transparent 50%,
2568
- rgba(255, 255, 255, 0.15) 50%,
2569
- rgba(255, 255, 255, 0.15) 75%,
2570
- transparent 75%,
2571
- transparent);
2572
- -webkit-background-size: 40px 40px;
2573
- background-size: 40px 40px;
2574
- }
2575
-
2576
- .premium-progressbar-active .premium-progressbar-bar {
2577
- -webkit-animation: progress-bar-stripes 2s linear infinite;
2578
- animation: progress-bar-stripes 2s linear infinite;
2579
- }
2580
-
2581
- .premium-progressbar-gradient .premium-progressbar-bar {
2582
- -webkit-background-size: 400% 400% !important;
2583
- background-size: 400% 400% !important;
2584
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2585
- animation: progress-bar-gradient 10s ease-in-out infinite;
2586
- }
2587
-
2588
- .premium-progressbar-bar {
2589
- position: absolute;
2590
- overflow: hidden;
2591
- line-height: 20px;
2592
- }
2593
-
2594
- .premium-progressbar-container .clearfix {
2595
- clear: both;
2596
- }
2597
-
2598
- .premium-progressbar-bar {
2599
- -webkit-transition: width 0s ease-in-out !important;
2600
- transition: width 0s ease-in-out !important;
2601
- }
2602
-
2603
- .premium-progressbar-container p:first-of-type {
2604
- margin: 0;
2605
- float: right;
2606
- }
2607
-
2608
- .premium-progressbar-container p:nth-of-type(2) {
2609
- margin: 0;
2610
- float: left;
2611
- }
2612
-
2613
- .premium-progressbar-name {
2614
- right: 50%;
2615
- top: 0;
2616
- left: 0;
2617
- -webkit-transform: translateX(12.5px);
2618
- -ms-transform: translateX(12.5px);
2619
- transform: translateX(12.5px);
2620
- z-index: 1;
2621
- }
2622
-
2623
- .premium-progressbar-multiple-label {
2624
- position: relative;
2625
- float: right;
2626
- width: 0;
2627
- right: 50%;
2628
- }
2629
-
2630
- .premium-progressbar-center-label {
2631
- position: relative;
2632
- white-space: nowrap;
2633
- }
2634
-
2635
- .premium-progressbar-arrow {
2636
- height: 15px;
2637
- right: 50%;
2638
- display: inline-block;
2639
- border-right: 7px solid transparent;
2640
- border-left: 7px solid transparent;
2641
- border-top: 11px solid;
2642
- -webkit-transform: translateX(50%);
2643
- -ms-transform: translateX(50%);
2644
- transform: translateX(50%);
2645
- }
2646
-
2647
- .premium-progressbar-pin {
2648
- border-right: 1px solid;
2649
- height: 12px;
2650
- right: 50%;
2651
- display: inline-block;
2652
- }
2653
-
2654
- /**
2655
- * Circle Progress Bar
2656
- */
2657
- .premium-progressbar-circle-wrap {
2658
- width: 200px;
2659
- height: 200px;
2660
- position: relative;
2661
- margin: 0 auto;
2662
- }
2663
-
2664
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
2665
- position: absolute;
2666
- top: 0;
2667
- right: 0;
2668
- width: 100%;
2669
- height: 100%;
2670
- -webkit-clip-path: inset(0 0 0 50%);
2671
- clip-path: inset(0 0 0 50%);
2672
- }
2673
-
2674
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2675
- position: absolute;
2676
- right: 0;
2677
- top: 0;
2678
- height: 100%;
2679
- width: 100%;
2680
- border-width: 6px;
2681
- border-style: solid;
2682
- border-color: #54595f;
2683
- -webkit-border-radius: 50%;
2684
- border-radius: 50%;
2685
- -webkit-clip-path: inset(0 50% 0 0);
2686
- clip-path: inset(0 50% 0 0);
2687
- }
2688
-
2689
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2690
- -webkit-transform: rotate(0);
2691
- -ms-transform: rotate(0);
2692
- transform: rotate(0);
2693
- }
2694
-
2695
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2696
- -webkit-transform: rotate(-180deg);
2697
- -ms-transform: rotate(-180deg);
2698
- transform: rotate(-180deg);
2699
- visibility: hidden;
2700
- }
2701
-
2702
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2703
- width: 100%;
2704
- height: 100%;
2705
- border: 6px solid #eee;
2706
- -webkit-border-radius: 50%;
2707
- border-radius: 50%;
2708
- }
2709
-
2710
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2711
- position: absolute;
2712
- top: 0;
2713
- right: 0;
2714
- width: 100%;
2715
- height: 100%;
2716
- -js-display: flex;
2717
- display: -webkit-box;
2718
- display: -webkit-flex;
2719
- display: -moz-box;
2720
- display: -ms-flexbox;
2721
- display: flex;
2722
- -webkit-box-orient: vertical;
2723
- -webkit-box-direction: normal;
2724
- -webkit-flex-direction: column;
2725
- -moz-box-orient: vertical;
2726
- -moz-box-direction: normal;
2727
- -ms-flex-direction: column;
2728
- flex-direction: column;
2729
- -webkit-box-pack: center;
2730
- -webkit-justify-content: center;
2731
- -moz-box-pack: center;
2732
- -ms-flex-pack: center;
2733
- justify-content: center;
2734
- -webkit-box-align: center;
2735
- -webkit-align-items: center;
2736
- -moz-box-align: center;
2737
- -ms-flex-align: center;
2738
- align-items: center;
2739
- }
2740
-
2741
- .premium-progressbar-circle-wrap .premium-lottie-animation {
2742
- line-height: 1;
2743
- }
2744
-
2745
- @-webkit-keyframes progress-bar-stripes {
2746
- from {
2747
- background-position: 100% 0;
2748
- }
2749
-
2750
- to {
2751
- background-position: 40px 0;
2752
- }
2753
- }
2754
-
2755
- @keyframes progress-bar-stripes {
2756
- from {
2757
- background-position: 100% 0;
2758
- }
2759
-
2760
- to {
2761
- background-position: 40px 0;
2762
- }
2763
- }
2764
-
2765
- @-webkit-keyframes progress-bar-gradient {
2766
- 0% {
2767
- background-position: 100% 50%;
2768
- }
2769
-
2770
- 50% {
2771
- background-position: 0% 50%;
2772
- }
2773
-
2774
- 100% {
2775
- background-position: 100% 50%;
2776
- }
2777
- }
2778
-
2779
- @keyframes progress-bar-gradient {
2780
- 0% {
2781
- background-position: 100% 50%;
2782
- }
2783
-
2784
- 50% {
2785
- background-position: 0% 50%;
2786
- }
2787
-
2788
- 100% {
2789
- background-position: 100% 50%;
2790
- }
2791
- }
2792
-
2793
- /**************** Premium Testimonials ****************/
2794
- /******************************************************/
2795
- .premium-testimonial-box {
2796
- width: 100%;
2797
- background: transparent;
2798
- -webkit-transition: all 0.3s ease-in-out;
2799
- transition: all 0.3s ease-in-out;
2800
- }
2801
-
2802
- .premium-testimonial-box .premium-testimonial-author-info {
2803
- -js-display: flex;
2804
- display: -webkit-box;
2805
- display: -webkit-flex;
2806
- display: -moz-box;
2807
- display: -ms-flexbox;
2808
- display: flex;
2809
- -webkit-box-pack: center;
2810
- -webkit-justify-content: center;
2811
- -moz-box-pack: center;
2812
- -ms-flex-pack: center;
2813
- justify-content: center;
2814
- -webkit-box-align: center;
2815
- -webkit-align-items: center;
2816
- -moz-box-align: center;
2817
- -ms-flex-align: center;
2818
- align-items: center;
2819
- }
2820
-
2821
- .premium-testimonial-box .premium-testimonial-person-name,
2822
- .premium-testimonial-box .premium-testimonial-company-name {
2823
- font-weight: 600;
2824
- margin: 0;
2825
- }
2826
-
2827
- .premium-testimonial-container {
2828
- position: relative;
2829
- }
2830
-
2831
- .premium-testimonial-img-wrapper {
2832
- margin-right: auto;
2833
- margin-left: auto;
2834
- overflow: hidden;
2835
- border-style: solid !important;
2836
- }
2837
-
2838
- .premium-testimonial-img-wrapper.circle {
2839
- -webkit-border-radius: 50%;
2840
- border-radius: 50%;
2841
- }
2842
-
2843
- .premium-testimonial-img-wrapper.rounded {
2844
- -webkit-border-radius: 15px;
2845
- border-radius: 15px;
2846
- }
2847
-
2848
- .premium-testimonial-img-wrapper img {
2849
- -o-object-fit: cover;
2850
- object-fit: cover;
2851
- width: 100%;
2852
- height: 100% !important;
2853
- }
2854
-
2855
- .premium-testimonial-content-wrapper {
2856
- position: relative;
2857
- display: -ms-flexbox;
2858
- display: -webkit-flex;
2859
- display: -moz-flex;
2860
- display: -ms-flex;
2861
- -js-display: flex;
2862
- display: -webkit-box;
2863
- display: -moz-box;
2864
- display: flex;
2865
- -webkit-box-orient: vertical;
2866
- -webkit-box-direction: normal;
2867
- -webkit-flex-direction: column;
2868
- -moz-box-orient: vertical;
2869
- -moz-box-direction: normal;
2870
- -ms-flex-direction: column;
2871
- flex-direction: column;
2872
- z-index: 2;
2873
- width: 100%;
2874
- padding: 20px;
2875
- text-align: center;
2876
- }
2877
-
2878
- .premium-testimonial-clear-float {
2879
- clear: both;
2880
- }
2881
-
2882
- .premium-testimonial-upper-quote,
2883
- .premium-testimonial-lower-quote {
2884
- position: absolute;
2885
- z-index: 1;
2886
- }
2887
-
2888
- /**************** Premium Dual Heading *****************/
2889
- /*******************************************************/
2890
- .premium-dual-header-container .premium-dual-header-first-header,
2891
- .premium-dual-header-container .premium-dual-header-second-header {
2892
- position: relative;
2893
- padding: 0;
2894
- margin: 0;
2895
- display: inline-block;
2896
- -webkit-transform: translate(0, 0);
2897
- -ms-transform: translate(0, 0);
2898
- transform: translate(0, 0);
2899
- }
2900
-
2901
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2902
- .premium-dual-header-second-clip {
2903
- -webkit-text-fill-color: transparent;
2904
- -webkit-background-clip: text;
2905
- }
2906
-
2907
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2908
- .premium-dual-header-second-clip.stroke {
2909
- -webkit-text-stroke-color: transparent;
2910
- -webkit-text-fill-color: #fafafa;
2911
- -webkit-text-stroke-width: 2px;
2912
- }
2913
-
2914
- @media (max-width: 500px) {
2915
-
2916
- .premium-dual-header-container .premium-dual-header-first-header,
2917
- .premium-dual-header-container .premium-dual-header-second-header {
2918
- display: block;
2919
- word-wrap: break-word;
2920
- }
2921
-
2922
- .premium-dual-header-first-container,
2923
- .premium-dual-header-second-container {
2924
- margin: 0;
2925
- }
2926
- }
2927
-
2928
- @media (min-width: 501px) {
2929
- .premium-dual-header-first-container {
2930
- margin-left: 5px;
2931
- }
2932
- }
2933
-
2934
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2935
- .premium-dual-header-second-header.gradient {
2936
- -webkit-background-size: 300% 300% !important;
2937
- background-size: 300% 300% !important;
2938
- -webkit-animation: Gradient 10s ease-in-out infinite;
2939
- animation: Gradient 10s ease-in-out infinite;
2940
- }
2941
-
2942
- @-webkit-keyframes Gradient {
2943
- 0% {
2944
- background-position: 100% 50%;
2945
- }
2946
-
2947
- 50% {
2948
- background-position: 0% 50%;
2949
- }
2950
-
2951
- 100% {
2952
- background-position: 100% 50%;
2953
- }
2954
- }
2955
-
2956
- @keyframes Gradient {
2957
- 0% {
2958
- background-position: 100% 50%;
2959
- }
2960
-
2961
- 50% {
2962
- background-position: 0% 50%;
2963
- }
2964
-
2965
- 100% {
2966
- background-position: 100% 50%;
2967
- }
2968
- }
2969
-
2970
- /**************** Premium Title ****************/
2971
- /***********************************************/
2972
- .premium-title-container {
2973
- position: relative;
2974
- width: 100%;
2975
- clear: both;
2976
- overflow: hidden;
2977
- }
2978
-
2979
- .premium-title-container .premium-title-header {
2980
- position: relative;
2981
- margin: 0;
2982
- padding: 10px;
2983
- }
2984
-
2985
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
2986
- -webkit-box-align: center;
2987
- -webkit-align-items: center;
2988
- -moz-box-align: center;
2989
- -ms-flex-align: center;
2990
- align-items: center;
2991
- }
2992
-
2993
- .premium-title-container .premium-title-header svg {
2994
- width: 40px;
2995
- height: 40px;
2996
- }
2997
-
2998
- .premium-title-container .premium-title-header img {
2999
- width: 40px;
3000
- height: 40px;
3001
- -o-object-fit: cover;
3002
- object-fit: cover;
3003
- }
3004
-
3005
- .premium-title-container .premium-title-header a {
3006
- position: absolute;
3007
- top: 0;
3008
- right: 0;
3009
- width: 100%;
3010
- height: 100%;
3011
- }
3012
-
3013
- .premium-title-container .premium-lottie-animation {
3014
- -js-display: flex;
3015
- display: -webkit-box;
3016
- display: -webkit-flex;
3017
- display: -moz-box;
3018
- display: -ms-flexbox;
3019
- display: flex;
3020
- }
3021
-
3022
- .premium-title-icon-row .premium-title-icon {
3023
- margin-left: 10px;
3024
- }
3025
-
3026
- .premium-title-icon-row-reverse .premium-title-icon {
3027
- margin-right: 10px;
3028
- }
3029
-
3030
- .premium-title-style3,
3031
- .premium-title-style4 {
3032
- -js-display: flex;
3033
- display: -webkit-box;
3034
- display: -webkit-flex;
3035
- display: -moz-box;
3036
- display: -ms-flexbox;
3037
- display: flex;
3038
- }
3039
-
3040
- .premium-title-style1,
3041
- .premium-title-style2,
3042
- .premium-title-style5,
3043
- .premium-title-style6,
3044
- .premium-title-style8,
3045
- .premium-title-style9 {
3046
- -js-display: inline-flex;
3047
- display: -webkit-inline-box;
3048
- display: -webkit-inline-flex;
3049
- display: -moz-inline-box;
3050
- display: -ms-inline-flexbox;
3051
- display: inline-flex;
3052
- }
3053
-
3054
- .premium-title-style7 {
3055
- -js-display: inline-flex;
3056
- display: -webkit-inline-box;
3057
- display: -webkit-inline-flex;
3058
- display: -moz-inline-box;
3059
- display: -ms-inline-flexbox;
3060
- display: inline-flex;
3061
- -webkit-box-orient: vertical;
3062
- -webkit-box-direction: normal;
3063
- -webkit-flex-direction: column;
3064
- -moz-box-orient: vertical;
3065
- -moz-box-direction: normal;
3066
- -ms-flex-direction: column;
3067
- flex-direction: column;
3068
- }
3069
-
3070
- .premium-title-style7 .premium-title-style7-inner {
3071
- -js-display: flex;
3072
- display: -webkit-box;
3073
- display: -webkit-flex;
3074
- display: -moz-box;
3075
- display: -ms-flexbox;
3076
- display: flex;
3077
- -webkit-box-align: center;
3078
- -webkit-align-items: center;
3079
- -moz-box-align: center;
3080
- -ms-flex-align: center;
3081
- align-items: center;
3082
- }
3083
-
3084
- .premium-title-style1 {
3085
- border-right: 3px solid #6ec1e4;
3086
- }
3087
-
3088
- .premium-title-container.style2,
3089
- .premium-title-container.style4,
3090
- .premium-title-container.style5,
3091
- .premium-title-container.style6 {
3092
- border-bottom: 3px solid #6ec1e4;
3093
- }
3094
-
3095
- /*Style 6 Header*/
3096
- .premium-title-style6:before {
3097
- position: absolute;
3098
- right: 50%;
3099
- bottom: 0;
3100
- margin-right: -2px;
3101
- content: "";
3102
- border: 3px solid transparent;
3103
- }
3104
-
3105
- /*Style 6 Trinagle*/
3106
- .premium-title-style7-stripe-wrap {
3107
- -js-display: flex;
3108
- display: -webkit-box;
3109
- display: -webkit-flex;
3110
- display: -moz-box;
3111
- display: -ms-flexbox;
3112
- display: flex;
3113
- }
3114
-
3115
- .premium-title-style7:before {
3116
- display: none;
3117
- }
3118
-
3119
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
3120
- -webkit-background-size: 125px 125px !important;
3121
- background-size: 125px !important;
3122
- color: rgba(255, 255, 255, 0);
3123
- -webkit-background-clip: text !important;
3124
- background-clip: text !important;
3125
- -webkit-animation-name: pa-shinny-text !important;
3126
- animation-name: pa-shinny-text !important;
3127
- -webkit-animation-duration: var(--animation-speed) !important;
3128
- animation-duration: var(--animation-speed) !important;
3129
- -webkit-animation-iteration-count: infinite !important;
3130
- animation-iteration-count: infinite !important;
3131
- background: var(--base-color) -webkit-gradient(linear,
3132
- left top,
3133
- right top,
3134
- from(var(--base-color)),
3135
- to(var(--base-color)),
3136
- color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
3137
- }
3138
-
3139
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
3140
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
3141
- animation: pa-blur-shadow 2s 1 alternate;
3142
- }
3143
-
3144
- .premium-title-gradient-yes .premium-title-text,
3145
- .premium-title-gradient-yes .premium-title-icon {
3146
- -webkit-background-clip: text;
3147
- -webkit-text-fill-color: transparent;
3148
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
3149
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
3150
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
3151
- -webkit-animation: pa-text-gradient 8s infinite;
3152
- animation: pa-text-gradient 8s infinite;
3153
- }
3154
-
3155
- @-webkit-keyframes pa-shinny-text {
3156
- 0% {
3157
- background-position: 100%;
3158
- }
3159
-
3160
- 100% {
3161
- background-position: -100%;
3162
- }
3163
- }
3164
-
3165
- @keyframes pa-shinny-text {
3166
- 0% {
3167
- background-position: 100%;
3168
- }
3169
-
3170
- 100% {
3171
- background-position: -100%;
3172
- }
3173
- }
3174
-
3175
- @-webkit-keyframes pa-blur-shadow {
3176
- from {
3177
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3178
- color: transparent;
3179
- }
3180
-
3181
- to {
3182
- text-shadow: 0;
3183
- }
3184
- }
3185
-
3186
- @keyframes pa-blur-shadow {
3187
- from {
3188
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3189
- color: transparent;
3190
- }
3191
-
3192
- to {
3193
- text-shadow: 0;
3194
- }
3195
- }
3196
-
3197
- @-webkit-keyframes pa-text-gradient {
3198
-
3199
- 0%,
3200
- 100% {
3201
- -webkit-filter: hue-rotate(0deg);
3202
- filter: hue-rotate(0deg);
3203
- }
3204
-
3205
- 50% {
3206
- -webkit-filter: hue-rotate(360deg);
3207
- filter: hue-rotate(360deg);
3208
- }
3209
- }
3210
-
3211
- @keyframes pa-text-gradient {
3212
-
3213
- 0%,
3214
- 100% {
3215
- -webkit-filter: hue-rotate(0deg);
3216
- filter: hue-rotate(0deg);
3217
- }
3218
-
3219
- 50% {
3220
- -webkit-filter: hue-rotate(360deg);
3221
- filter: hue-rotate(360deg);
3222
- }
3223
- }
3224
-
3225
- /*
3226
- * Common Title/Dual Heading
3227
- */
3228
- .premium-title-bg-text:before {
3229
- position: absolute;
3230
- content: attr(data-background);
3231
- top: 0;
3232
- left: 0;
3233
- text-align: left;
3234
- }
3235
-
3236
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
3237
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
3238
- background: inherit;
3239
- }
3240
-
3241
- .premium-mask-yes .premium-mask-span {
3242
- position: relative;
3243
- overflow: hidden;
3244
- -js-display: inline-flex !important;
3245
- display: -webkit-inline-box !important;
3246
- display: -webkit-inline-flex !important;
3247
- display: -moz-inline-box !important;
3248
- display: -ms-inline-flexbox !important;
3249
- display: inline-flex !important;
3250
- }
3251
-
3252
- .premium-mask-yes .premium-mask-span::after {
3253
- content: "";
3254
- position: absolute;
3255
- top: 0;
3256
- right: 0px;
3257
- width: 100%;
3258
- height: 100%;
3259
- background-color: currentColor;
3260
- -webkit-backface-visibility: visible;
3261
- backface-visibility: visible;
3262
- }
3263
-
3264
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
3265
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3266
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3267
- -webkit-transform: translateX(-103%);
3268
- -ms-transform: translateX(-103%);
3269
- transform: translateX(-103%);
3270
- }
3271
-
3272
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
3273
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3274
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3275
- -webkit-transform: translateX(103%);
3276
- -ms-transform: translateX(103%);
3277
- transform: translateX(103%);
3278
- }
3279
-
3280
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
3281
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3282
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3283
- -webkit-transform: translateY(-103%);
3284
- -ms-transform: translateY(-103%);
3285
- transform: translateY(-103%);
3286
- }
3287
-
3288
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
3289
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3290
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3291
- -webkit-transform: translateY(103%);
3292
- -ms-transform: translateY(103%);
3293
- transform: translateY(103%);
3294
- }
3295
-
3296
- @-webkit-keyframes pa-mask-tr {
3297
- 0% {
3298
- -webkit-transform: translateX(0%);
3299
- transform: translateX(0%);
3300
- }
3301
-
3302
- 100% {
3303
- -webkit-transform: translateX(103%);
3304
- transform: translateX(103%);
3305
- }
3306
- }
3307
-
3308
- @keyframes pa-mask-tr {
3309
- 0% {
3310
- -webkit-transform: translateX(0%);
3311
- transform: translateX(0%);
3312
- }
3313
-
3314
- 100% {
3315
- -webkit-transform: translateX(103%);
3316
- transform: translateX(103%);
3317
- }
3318
- }
3319
-
3320
- @-webkit-keyframes pa-mask-tl {
3321
- 0% {
3322
- -webkit-transform: translateX(0%);
3323
- transform: translateX(0%);
3324
- }
3325
-
3326
- 100% {
3327
- -webkit-transform: translateX(-103%);
3328
- transform: translateX(-103%);
3329
- }
3330
- }
3331
-
3332
- @keyframes pa-mask-tl {
3333
- 0% {
3334
- -webkit-transform: translateX(0%);
3335
- transform: translateX(0%);
3336
- }
3337
-
3338
- 100% {
3339
- -webkit-transform: translateX(-103%);
3340
- transform: translateX(-103%);
3341
- }
3342
- }
3343
-
3344
- @-webkit-keyframes pa-mask-tb {
3345
- 0% {
3346
- -webkit-transform: translateY(0%);
3347
- transform: translateY(0%);
3348
- }
3349
-
3350
- 100% {
3351
- -webkit-transform: translateY(103%);
3352
- transform: translateY(103%);
3353
- }
3354
- }
3355
-
3356
- @keyframes pa-mask-tb {
3357
- 0% {
3358
- -webkit-transform: translateY(0%);
3359
- transform: translateY(0%);
3360
- }
3361
-
3362
- 100% {
3363
- -webkit-transform: translateY(103%);
3364
- transform: translateY(103%);
3365
- }
3366
- }
3367
-
3368
- @-webkit-keyframes pa-mask-tt {
3369
- 0% {
3370
- -webkit-transform: translateY(0%);
3371
- transform: translateY(0%);
3372
- }
3373
-
3374
- 100% {
3375
- -webkit-transform: translateY(-103%);
3376
- transform: translateY(-103%);
3377
- }
3378
- }
3379
-
3380
- @keyframes pa-mask-tt {
3381
- 0% {
3382
- -webkit-transform: translateY(0%);
3383
- transform: translateY(0%);
3384
- }
3385
-
3386
- 100% {
3387
- -webkit-transform: translateY(-103%);
3388
- transform: translateY(-103%);
3389
- }
3390
- }
3391
-
3392
- /**************** Premium Video Box ************/
3393
- /***********************************************/
3394
- .premium-video-box-transform {
3395
- -webkit-transform: none !important;
3396
- -ms-transform: none !important;
3397
- transform: none !important;
3398
- }
3399
-
3400
- .premium-video-box-container {
3401
- -js-display: flex;
3402
- display: -webkit-box;
3403
- display: -webkit-flex;
3404
- display: -moz-box;
3405
- display: -ms-flexbox;
3406
- display: flex;
3407
- -webkit-box-orient: vertical;
3408
- -webkit-box-direction: normal;
3409
- -webkit-flex-direction: column;
3410
- -moz-box-orient: vertical;
3411
- -moz-box-direction: normal;
3412
- -ms-flex-direction: column;
3413
- flex-direction: column;
3414
- }
3415
-
3416
- .premium-video-box-container>div {
3417
- position: relative;
3418
- overflow: hidden;
3419
- }
3420
-
3421
- .pa-aspect-ratio-11 .premium-video-box-container>div {
3422
- padding-bottom: 100%;
3423
- }
3424
-
3425
- .pa-aspect-ratio-169 .premium-video-box-container>div {
3426
- padding-bottom: 56.25%;
3427
- }
3428
-
3429
- .pa-aspect-ratio-43 .premium-video-box-container>div {
3430
- padding-bottom: 75%;
3431
- }
3432
-
3433
- .pa-aspect-ratio-32 .premium-video-box-container>div {
3434
- padding-bottom: 66.6666%;
3435
- }
3436
-
3437
- .pa-aspect-ratio-219 .premium-video-box-container>div {
3438
- padding-bottom: 42.8571%;
3439
- }
3440
-
3441
- .pa-aspect-ratio-916 .premium-video-box-container>div {
3442
- padding-bottom: 177.8%;
3443
- }
3444
-
3445
- .premium-video-box-image-container {
3446
- position: absolute;
3447
- top: 0;
3448
- right: 0;
3449
- bottom: 0;
3450
- left: 0;
3451
- width: 100%;
3452
- height: 100%;
3453
- -webkit-background-size: cover;
3454
- background-size: cover;
3455
- background-position: 50%;
3456
- cursor: pointer;
3457
- margin: auto;
3458
- -webkit-transition: 0.2s all;
3459
- transition: 0.2s all;
3460
- }
3461
-
3462
- .premium-video-box-play-icon-container {
3463
- position: absolute;
3464
- z-index: 2;
3465
- cursor: pointer;
3466
- -webkit-transform: translate(50%, -50%);
3467
- -ms-transform: translate(50%, -50%);
3468
- transform: translate(50%, -50%);
3469
- background: rgba(252, 252, 252, 0.35);
3470
- }
3471
-
3472
- .premium-video-box-description-container {
3473
- position: absolute;
3474
- z-index: 2;
3475
- padding: 5px;
3476
- text-align: center;
3477
- cursor: pointer;
3478
- -webkit-transform: translate(50%, -50%);
3479
- -ms-transform: translate(50%, -50%);
3480
- transform: translate(50%, -50%);
3481
- }
3482
-
3483
- .premium-video-box-text {
3484
- margin-bottom: 0 !important;
3485
- -webkit-transition: all 0.3s ease-in-out;
3486
- transition: all 0.3s ease-in-out;
3487
- }
3488
-
3489
- .premium-video-box-play-icon {
3490
- padding: 15px;
3491
- -webkit-transform: translateX(-4%);
3492
- -ms-transform: translateX(-4%);
3493
- transform: translateX(-4%);
3494
- -webkit-transition: all 0.3s ease-in-out;
3495
- transition: all 0.3s ease-in-out;
3496
- }
3497
-
3498
- .premium-video-box-video-container {
3499
- position: absolute;
3500
- top: 0;
3501
- right: 0;
3502
- z-index: 2;
3503
- width: 100%;
3504
- height: 100%;
3505
- -webkit-transition: opacity 0.8s ease-in-out;
3506
- transition: opacity 0.8s ease-in-out;
3507
- overflow: hidden;
3508
- cursor: pointer;
3509
- }
3510
-
3511
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
3512
- opacity: 0;
3513
- visibility: hidden;
3514
- }
3515
-
3516
- .premium-video-box-video-container iframe {
3517
- max-width: 100%;
3518
- width: 100%;
3519
- height: 100%;
3520
- margin: 0;
3521
- line-height: 1;
3522
- border: none;
3523
- }
3524
-
3525
- .premium-video-box-video-container video {
3526
- max-width: 100%;
3527
- width: 100%;
3528
- height: 100%;
3529
- margin: 0;
3530
- line-height: 1;
3531
- border: none;
3532
- background-color: #000;
3533
- -o-object-fit: contain;
3534
- object-fit: contain;
3535
- }
3536
-
3537
- .premium-video-box-container .premium-video-box-vimeo-wrap {
3538
- -js-display: flex;
3539
- display: -webkit-box;
3540
- display: -webkit-flex;
3541
- display: -moz-box;
3542
- display: -ms-flexbox;
3543
- display: flex;
3544
- position: absolute;
3545
- top: 0;
3546
- right: 0;
3547
- z-index: 3;
3548
- margin: 10px;
3549
- margin-left: 10px;
3550
- -webkit-transition: opacity 0.2s ease-out;
3551
- transition: opacity 0.2s ease-out;
3552
- margin-left: 4.6em;
3553
- }
3554
-
3555
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
3556
- width: 60px;
3557
- height: 60px;
3558
- background: rgba(23, 35, 34, 0.75);
3559
- margin-left: 1px;
3560
- -webkit-box-flex: 1;
3561
- -webkit-flex: 1 0 auto;
3562
- -moz-box-flex: 1;
3563
- -ms-flex: 1 0 auto;
3564
- flex: 1 0 auto;
3565
- padding: 0;
3566
- }
3567
-
3568
- .premium-video-box-vimeo-portrait img {
3569
- width: 50px;
3570
- height: 50px;
3571
- margin: 5px;
3572
- padding: 0;
3573
- border: 0;
3574
- -webkit-border-radius: 50%;
3575
- border-radius: 50%;
3576
- }
3577
-
3578
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
3579
- font-size: 10px;
3580
- }
3581
-
3582
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
3583
- max-width: 100%;
3584
- font-size: 2em !important;
3585
- font-weight: 700;
3586
- margin: 0;
3587
- padding: 0.1em 0.2em;
3588
- background: rgba(23, 35, 34, 0.75);
3589
- display: inline-block;
3590
- text-transform: none;
3591
- line-height: normal;
3592
- letter-spacing: normal;
3593
- }
3594
-
3595
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
3596
- font-size: 1.2em !important;
3597
- font-weight: 400;
3598
- color: #fff;
3599
- margin-top: 0.1em;
3600
- padding: 0.2em 0.5em;
3601
- background: rgba(23, 35, 34, 0.75);
3602
- text-transform: none;
3603
- line-height: normal;
3604
- letter-spacing: normal;
3605
- }
3606
-
3607
- .premium-video-box-playlist-container {
3608
- -js-display: flex;
3609
- display: -webkit-box;
3610
- display: -webkit-flex;
3611
- display: -moz-box;
3612
- display: -ms-flexbox;
3613
- display: flex;
3614
- -webkit-flex-wrap: wrap;
3615
- -ms-flex-wrap: wrap;
3616
- flex-wrap: wrap;
3617
- }
3618
-
3619
- .premium-video-box-playlist-container .premium-video-box-container {
3620
- height: 100%;
3621
- overflow: hidden;
3622
- }
3623
-
3624
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
3625
- -webkit-transform: scale(1.1);
3626
- -ms-transform: scale(1.1);
3627
- transform: scale(1.1);
3628
- }
3629
-
3630
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
3631
- -webkit-transform: scale(1);
3632
- -ms-transform: scale(1);
3633
- transform: scale(1);
3634
- }
3635
-
3636
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
3637
- -webkit-transform: scale(1.3) rotate(-5deg);
3638
- -ms-transform: scale(1.3) rotate(-5deg);
3639
- transform: scale(1.3) rotate(-5deg);
3640
- }
3641
-
3642
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
3643
- -webkit-filter: grayscale(0%);
3644
- filter: grayscale(0%);
3645
- }
3646
-
3647
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
3648
- -webkit-filter: blur(3px);
3649
- filter: blur(3px);
3650
- }
3651
-
3652
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3653
- -webkit-filter: sepia(0%);
3654
- filter: sepia(0%);
3655
- }
3656
-
3657
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
3658
- -webkit-transform: translateX(0px) scale(1.1);
3659
- -ms-transform: translateX(0px) scale(1.1);
3660
- transform: translateX(0px) scale(1.1);
3661
- }
3662
-
3663
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
3664
- -webkit-filter: brightness(1.2);
3665
- filter: brightness(1.2);
3666
- }
3667
-
3668
- .premium-video-box-image-container.gray {
3669
- -webkit-filter: grayscale(100%);
3670
- filter: grayscale(100%);
3671
- }
3672
-
3673
- .premium-video-box-image-container.zoomout,
3674
- .premium-video-box-image-container.scale {
3675
- -webkit-transform: scale(1.2);
3676
- -ms-transform: scale(1.2);
3677
- transform: scale(1.2);
3678
- }
3679
-
3680
- .premium-video-box-image-container.sepia {
3681
- -webkit-filter: sepia(30%);
3682
- filter: sepia(30%);
3683
- }
3684
-
3685
- .premium-video-box-image-container.bright {
3686
- -webkit-filter: brightness(1);
3687
- filter: brightness(1);
3688
- }
3689
-
3690
- .premium-video-box-image-container.trans {
3691
- -webkit-transform: translateX(15px) scale(1.1);
3692
- -ms-transform: translateX(15px) scale(1.1);
3693
- transform: translateX(15px) scale(1.1);
3694
- }
3695
-
3696
- .premium-video-box-mask-media {
3697
- -webkit-mask-repeat: no-repeat;
3698
- mask-repeat: no-repeat;
3699
- }
3700
-
3701
- /* Sticky Video Option */
3702
- .premium-video-box-container.premium-video-box-sticky-apply {
3703
- z-index: 99;
3704
- overflow: unset;
3705
- }
3706
-
3707
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3708
- position: fixed !important;
3709
- z-index: 99999;
3710
- height: 225px;
3711
- width: 400px;
3712
- background: #fff;
3713
- }
3714
-
3715
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3716
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3717
- visibility: hidden;
3718
- }
3719
-
3720
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3721
- -webkit-box-shadow: unset;
3722
- box-shadow: unset;
3723
- }
3724
-
3725
- .premium-video-box-sticky-close,
3726
- .premium-video-box-sticky-infobar {
3727
- display: none;
3728
- }
3729
-
3730
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3731
- position: absolute;
3732
- padding: 5px;
3733
- cursor: pointer;
3734
- z-index: 99999;
3735
- height: 14px;
3736
- width: 14px;
3737
- -webkit-box-sizing: content-box;
3738
- -moz-box-sizing: content-box;
3739
- box-sizing: content-box;
3740
- -webkit-border-radius: 100%;
3741
- border-radius: 100%;
3742
- -js-display: flex;
3743
- display: -webkit-box;
3744
- display: -webkit-flex;
3745
- display: -moz-box;
3746
- display: -ms-flexbox;
3747
- display: flex;
3748
- -webkit-box-pack: center;
3749
- -webkit-justify-content: center;
3750
- -moz-box-pack: center;
3751
- -ms-flex-pack: center;
3752
- justify-content: center;
3753
- -webkit-box-align: center;
3754
- -webkit-align-items: center;
3755
- -moz-box-align: center;
3756
- -ms-flex-align: center;
3757
- align-items: center;
3758
- }
3759
-
3760
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3761
- -js-display: flex;
3762
- display: -webkit-box;
3763
- display: -webkit-flex;
3764
- display: -moz-box;
3765
- display: -ms-flexbox;
3766
- display: flex;
3767
- }
3768
-
3769
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
3770
- -webkit-transition: none;
3771
- transition: none;
3772
- }
3773
-
3774
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3775
- display: block;
3776
- position: relative;
3777
- top: 100%;
3778
- width: 100%;
3779
- padding: 5px;
3780
- text-align: center;
3781
- z-index: 9999;
3782
- margin-top: -1px;
3783
- }
3784
-
3785
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3786
- cursor: move;
3787
- }
3788
-
3789
- .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3790
- left: auto;
3791
- right: 20px;
3792
- top: 20px;
3793
- }
3794
-
3795
- .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3796
- left: auto;
3797
- right: 20px;
3798
- bottom: 20px;
3799
- }
3800
-
3801
- .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3802
- right: auto;
3803
- left: 20px;
3804
- top: 20px;
3805
- }
3806
-
3807
- .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3808
- right: auto;
3809
- left: 20px;
3810
- bottom: 20px;
3811
- }
3812
-
3813
- .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3814
- left: auto;
3815
- right: 20px;
3816
- top: 50%;
3817
- -webkit-transform: translateY(-50%);
3818
- -ms-transform: translateY(-50%);
3819
- transform: translateY(-50%);
3820
- }
3821
-
3822
- .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3823
- right: auto;
3824
- left: 20px;
3825
- top: 50%;
3826
- -webkit-transform: translateY(-50%);
3827
- -ms-transform: translateY(-50%);
3828
- transform: translateY(-50%);
3829
- }
3830
-
3831
- .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
3832
- .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3833
- bottom: 55px;
3834
- }
3835
-
3836
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3837
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3838
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3839
- top: -10px;
3840
- left: -10px;
3841
- }
3842
-
3843
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3844
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3845
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3846
- top: -10px;
3847
- right: -10px;
3848
- }
3849
-
3850
- .premium-video-box-filter-sticky {
3851
- -webkit-filter: none !important;
3852
- filter: none !important;
3853
- }
3854
-
3855
- /**************** Premium Blog *****************/
3856
- /***********************************************/
3857
- .premium-blog-thumb-effect-wrapper {
3858
- position: relative;
3859
- overflow: hidden;
3860
- }
3861
-
3862
- .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3863
- position: absolute;
3864
- top: 0;
3865
- right: 0;
3866
- width: 100%;
3867
- height: 100%;
3868
- z-index: 2;
3869
- padding: 20px;
3870
- }
3871
-
3872
- .premium-blog-bordered-effect .premium-blog-post-link {
3873
- display: block;
3874
- height: 100%;
3875
- position: relative;
3876
- }
3877
-
3878
- /*Thumbnail Img*/
3879
- .premium-blog-thumbnail-container {
3880
- overflow: hidden;
3881
- }
3882
-
3883
- .premium-blog-thumbnail-container img,
3884
- .premium-blog-thumbnail-container .below-entry-meta {
3885
- width: 100%;
3886
- height: 100%;
3887
- margin: 0 !important;
3888
- -webkit-transition: all 0.4s ease-in-out;
3889
- transition: all 0.4s ease-in-out;
3890
- }
3891
-
3892
- .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3893
- .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3894
- -webkit-transform: scale(1.2);
3895
- -ms-transform: scale(1.2);
3896
- transform: scale(1.2);
3897
- }
3898
-
3899
- .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3900
- -webkit-filter: sepia(30%);
3901
- filter: sepia(30%);
3902
- }
3903
-
3904
- .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3905
- -webkit-filter: brightness(1);
3906
- filter: brightness(1);
3907
- }
3908
-
3909
- .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3910
- -webkit-transform: translateX(15px) scale(1.1);
3911
- -ms-transform: translateX(15px) scale(1.1);
3912
- transform: translateX(15px) scale(1.1);
3913
- }
3914
-
3915
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3916
- -webkit-transform: scale(1.2);
3917
- -ms-transform: scale(1.2);
3918
- transform: scale(1.2);
3919
- }
3920
-
3921
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3922
- -webkit-transform: scale(1.1);
3923
- -ms-transform: scale(1.1);
3924
- transform: scale(1.1);
3925
- }
3926
-
3927
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3928
- -webkit-transform: scale(1.3) rotate(-5deg);
3929
- -ms-transform: scale(1.3) rotate(-5deg);
3930
- transform: scale(1.3) rotate(-5deg);
3931
- }
3932
-
3933
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3934
- -webkit-filter: grayscale(100%);
3935
- filter: grayscale(100%);
3936
- }
3937
-
3938
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3939
- -webkit-filter: blur(3px);
3940
- filter: blur(3px);
3941
- }
3942
-
3943
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3944
- -webkit-filter: sepia(0%);
3945
- filter: sepia(0%);
3946
- }
3947
-
3948
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3949
- -webkit-filter: brightness(1.2);
3950
- filter: brightness(1.2);
3951
- }
3952
-
3953
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3954
- -webkit-transform: translateX(0px) scale(1.1);
3955
- -ms-transform: translateX(0px) scale(1.1);
3956
- transform: translateX(0px) scale(1.1);
3957
- }
3958
-
3959
- .premium-blog-post-container {
3960
- overflow: hidden;
3961
- }
3962
-
3963
- .premium-blog-post-container .premium-blog-inner-container {
3964
- -js-display: flex;
3965
- display: -webkit-box;
3966
- display: -webkit-flex;
3967
- display: -moz-box;
3968
- display: -ms-flexbox;
3969
- display: flex;
3970
- }
3971
-
3972
- .premium-blog-post-container .premium-blog-post-content {
3973
- line-height: 1.5em;
3974
- color: #777;
3975
- font-size: 14px;
3976
- margin-bottom: 10px;
3977
- }
3978
-
3979
- .premium-blog-post-container ul.post-categories a:hover,
3980
- .premium-blog-post-container ul.post-categories a:focus,
3981
- .premium-blog-post-container .premium-blog-post-link:hover,
3982
- .premium-blog-post-container .premium-blog-post-link:focus {
3983
- -webkit-box-shadow: none !important;
3984
- box-shadow: none !important;
3985
- outline: none !important;
3986
- }
3987
-
3988
- .premium-blog-post-container .premium-blog-entry-title {
3989
- font-size: 18px;
3990
- margin-bottom: 5px;
3991
- }
3992
-
3993
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
3994
- position: relative;
3995
- z-index: 3;
3996
- top: -50px;
3997
- }
3998
-
3999
- .premium-blog-post-container .premium-blog-content-wrapper {
4000
- background-color: #f5f5f5;
4001
- padding: 30px;
4002
- }
4003
-
4004
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
4005
- top: 0;
4006
- }
4007
-
4008
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
4009
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
4010
- position: absolute;
4011
- content: "";
4012
- z-index: 1;
4013
- top: 50%;
4014
- right: 50%;
4015
- opacity: 0;
4016
- -webkit-transform: translate(50%, -50%);
4017
- -ms-transform: translate(50%, -50%);
4018
- transform: translate(50%, -50%);
4019
- -webkit-transition: all 0.4s linear 0s;
4020
- transition: all 0.4s linear 0s;
4021
- height: 1px;
4022
- width: 100%;
4023
- background-color: #fff;
4024
- }
4025
-
4026
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
4027
- width: 1px;
4028
- height: 100%;
4029
- }
4030
-
4031
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
4032
- width: 20px;
4033
- opacity: 1;
4034
- }
4035
-
4036
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
4037
- height: 20px;
4038
- opacity: 1;
4039
- }
4040
-
4041
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
4042
- margin: 0px 10px 20px;
4043
- clear: both;
4044
- }
4045
-
4046
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
4047
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
4048
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
4049
- position: absolute;
4050
- top: 0;
4051
- right: 0;
4052
- width: 100%;
4053
- height: 100%;
4054
- -webkit-transition: all 0.3s ease-in-out;
4055
- transition: all 0.3s ease-in-out;
4056
- opacity: 0;
4057
- }
4058
-
4059
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
4060
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
4061
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
4062
- -js-display: flex;
4063
- display: -webkit-box;
4064
- display: -webkit-flex;
4065
- display: -moz-box;
4066
- display: -ms-flexbox;
4067
- display: flex;
4068
- -webkit-box-pack: center;
4069
- -webkit-justify-content: center;
4070
- -moz-box-pack: center;
4071
- -ms-flex-pack: center;
4072
- justify-content: center;
4073
- -webkit-box-align: center;
4074
- -webkit-align-items: center;
4075
- -moz-box-align: center;
4076
- -ms-flex-align: center;
4077
- align-items: center;
4078
- width: 100%;
4079
- height: 100%;
4080
- }
4081
-
4082
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
4083
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
4084
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
4085
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
4086
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
4087
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
4088
- -webkit-transition: all 0.3s ease-in-out;
4089
- transition: all 0.3s ease-in-out;
4090
- }
4091
-
4092
- .premium-blog-post-container.premium-blog-skin-side {
4093
- -js-display: flex;
4094
- display: -webkit-box;
4095
- display: -webkit-flex;
4096
- display: -moz-box;
4097
- display: -ms-flexbox;
4098
- display: flex;
4099
- }
4100
-
4101
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
4102
- height: 100%;
4103
- }
4104
-
4105
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
4106
- -webkit-box-flex: 1;
4107
- -webkit-flex: 1;
4108
- -moz-box-flex: 1;
4109
- -ms-flex: 1;
4110
- flex: 1;
4111
- }
4112
-
4113
- .premium-blog-post-container.premium-blog-skin-banner {
4114
- position: relative;
4115
- }
4116
-
4117
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
4118
- position: absolute;
4119
- width: 100%;
4120
- bottom: 0;
4121
- -js-display: flex;
4122
- display: -webkit-box;
4123
- display: -webkit-flex;
4124
- display: -moz-box;
4125
- display: -ms-flexbox;
4126
- display: flex;
4127
- -webkit-box-orient: vertical;
4128
- -webkit-box-direction: normal;
4129
- -webkit-flex-direction: column;
4130
- -moz-box-orient: vertical;
4131
- -moz-box-direction: normal;
4132
- -ms-flex-direction: column;
4133
- flex-direction: column;
4134
- background-color: transparent;
4135
- z-index: 3;
4136
- }
4137
-
4138
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
4139
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
4140
- transition: -webkit-transform 0.3s ease-in-out;
4141
- transition: transform 0.3s ease-in-out;
4142
- transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
4143
- }
4144
-
4145
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
4146
- -webkit-transform: translateY(-5px);
4147
- -ms-transform: translateY(-5px);
4148
- transform: translateY(-5px);
4149
- }
4150
-
4151
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
4152
- margin: 0;
4153
- padding: 0;
4154
- list-style: none;
4155
- -js-display: flex;
4156
- display: -webkit-box;
4157
- display: -webkit-flex;
4158
- display: -moz-box;
4159
- display: -ms-flexbox;
4160
- display: flex;
4161
- }
4162
-
4163
- .premium-blog-post-container .premium-blog-cats-container a {
4164
- display: block;
4165
- font-size: 12px;
4166
- color: #fff;
4167
- background-color: #777;
4168
- margin: 0 0 10px 3px;
4169
- padding: 5px;
4170
- -webkit-transition: all 0.3s ease-in-out;
4171
- transition: all 0.3s ease-in-out;
4172
- }
4173
-
4174
- /*
4175
- * Diagonal Effect
4176
- */
4177
- .premium-blog-diagonal-container {
4178
- position: absolute;
4179
- top: 0;
4180
- right: 0;
4181
- width: 100%;
4182
- height: 100%;
4183
- }
4184
-
4185
- .premium-blog-diagonal-effect:before {
4186
- position: absolute;
4187
- top: 0px;
4188
- right: 0px;
4189
- width: 100%;
4190
- height: 100%;
4191
- content: " ";
4192
- z-index: 1;
4193
- background: rgba(255, 255, 255, 0.2);
4194
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4195
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4196
- -webkit-transition: all 0.3s linear 0s;
4197
- transition: all 0.3s linear 0s;
4198
- }
4199
-
4200
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
4201
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4202
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4203
- }
4204
-
4205
- /*
4206
- * Framed Effect
4207
- */
4208
- .premium-blog-framed-effect {
4209
- position: absolute;
4210
- width: -webkit-calc(100% - 30px);
4211
- width: calc(100% - 30px);
4212
- height: -webkit-calc(100% - 30px);
4213
- height: calc(100% - 30px);
4214
- top: 15px;
4215
- right: 15px;
4216
- opacity: 0;
4217
- -webkit-transform: scale(0.3);
4218
- -ms-transform: scale(0.3);
4219
- transform: scale(0.3);
4220
- -webkit-transition: all 0.3s linear 0s;
4221
- transition: all 0.3s linear 0s;
4222
- }
4223
-
4224
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
4225
- opacity: 0.99;
4226
- -webkit-transform: scale(1);
4227
- -ms-transform: scale(1);
4228
- transform: scale(1);
4229
- }
4230
-
4231
- /*
4232
- * Bordered Effect
4233
- */
4234
- .premium-blog-bordered-effect {
4235
- position: absolute;
4236
- top: 0;
4237
- right: 0;
4238
- width: 100%;
4239
- height: 100%;
4240
- opacity: 0;
4241
- padding: 15px;
4242
- -webkit-transition: all 0.3s linear 0s;
4243
- transition: all 0.3s linear 0s;
4244
- }
4245
-
4246
- .premium-blog-bordered-effect .premium-blog-post-link:before,
4247
- .premium-blog-bordered-effect .premium-blog-post-link:after {
4248
- content: "";
4249
- display: block;
4250
- position: absolute;
4251
- top: 0;
4252
- right: 0;
4253
- width: 100%;
4254
- height: 100%;
4255
- -webkit-transition: all 0.5s linear 0s;
4256
- transition: all 0.5s linear 0s;
4257
- -webkit-transition-delay: 0s;
4258
- transition-delay: 0s;
4259
- border-color: rgba(255, 255, 255, 0.45);
4260
- }
4261
-
4262
- .premium-blog-bordered-effect .premium-blog-post-link:before {
4263
- border-left: 2px solid;
4264
- border-right: 2px solid;
4265
- -webkit-transform: scale(1, 0);
4266
- -ms-transform: scale(1, 0);
4267
- transform: scale(1, 0);
4268
- -webkit-transform-origin: 0% 0;
4269
- -ms-transform-origin: 0% 0;
4270
- transform-origin: 0% 0;
4271
- }
4272
-
4273
- .premium-blog-bordered-effect .premium-blog-post-link:after {
4274
- border-top: 2px solid;
4275
- border-bottom: 2px solid;
4276
- -webkit-transform: scale(0, 1);
4277
- -ms-transform: scale(0, 1);
4278
- transform: scale(0, 1);
4279
- -webkit-transform-origin: 100% 0;
4280
- -ms-transform-origin: 100% 0;
4281
- transform-origin: 100% 0;
4282
- }
4283
-
4284
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
4285
- opacity: 0.99;
4286
- }
4287
-
4288
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
4289
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
4290
- -webkit-transition-delay: 0.15s;
4291
- transition-delay: 0.15s;
4292
- opacity: 1;
4293
- -webkit-transform: scale(1);
4294
- -ms-transform: scale(1);
4295
- transform: scale(1);
4296
- }
4297
-
4298
- /*
4299
- * Squares Effect
4300
- */
4301
- .premium-blog-squares-effect,
4302
- .premium-blog-squares-square-container {
4303
- position: absolute;
4304
- top: 0;
4305
- right: 0;
4306
- width: 100%;
4307
- height: 100%;
4308
- }
4309
-
4310
- .premium-blog-squares-effect:before,
4311
- .premium-blog-squares-effect:after {
4312
- position: absolute;
4313
- content: "";
4314
- top: 0;
4315
- right: 0;
4316
- width: 50%;
4317
- height: 50%;
4318
- -webkit-transform: translate(100%, -100%);
4319
- -ms-transform: translate(100%, -100%);
4320
- transform: translate(100%, -100%);
4321
- opacity: 0.7;
4322
- -webkit-transition: all 0.3s linear 0s;
4323
- transition: all 0.3s linear 0s;
4324
- }
4325
-
4326
- .premium-blog-squares-square-container:before,
4327
- .premium-blog-squares-square-container:after {
4328
- position: absolute;
4329
- content: "";
4330
- top: 0;
4331
- right: 0;
4332
- width: 50%;
4333
- height: 50%;
4334
- -webkit-transform: translate(100%, -100%);
4335
- -ms-transform: translate(100%, -100%);
4336
- transform: translate(100%, -100%);
4337
- opacity: 0.7;
4338
- -webkit-transition: all 0.3s linear 0s;
4339
- transition: all 0.3s linear 0s;
4340
- }
4341
-
4342
- .premium-blog-squares-square-container:before,
4343
- .premium-blog-squares-square-container:after {
4344
- opacity: 0.8;
4345
- }
4346
-
4347
- .premium-blog-squares-effect:after {
4348
- -webkit-transform: translate(-200%, 200%);
4349
- -ms-transform: translate(-200%, 200%);
4350
- transform: translate(-200%, 200%);
4351
- }
4352
-
4353
- .premium-blog-squares-square-container:before {
4354
- -webkit-transform: translate(100%, 200%);
4355
- -ms-transform: translate(100%, 200%);
4356
- transform: translate(100%, 200%);
4357
- }
4358
-
4359
- .premium-blog-squares-square-container:after {
4360
- -webkit-transform: translate(-200%, -100%);
4361
- -ms-transform: translate(-200%, -100%);
4362
- transform: translate(-200%, -100%);
4363
- }
4364
-
4365
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
4366
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4367
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4368
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4369
- }
4370
-
4371
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
4372
- -webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4373
- -ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4374
- transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4375
- }
4376
-
4377
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
4378
- -webkit-transform: translate(0, 100%);
4379
- -ms-transform: translate(0, 100%);
4380
- transform: translate(0, 100%);
4381
- }
4382
-
4383
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
4384
- -webkit-transform: translate(-100%, 0%);
4385
- -ms-transform: translate(-100%, 0%);
4386
- transform: translate(-100%, 0%);
4387
- }
4388
-
4389
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
4390
- opacity: 1;
4391
- }
4392
-
4393
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
4394
- opacity: 1;
4395
- -webkit-transform: scale(1);
4396
- -ms-transform: scale(1);
4397
- transform: scale(1);
4398
- }
4399
-
4400
- .premium-blog-clear-fix {
4401
- clear: both;
4402
- }
4403
-
4404
- .premium-blog-masked .premium-blog-thumbnail-container {
4405
- position: relative;
4406
- overflow: visible;
4407
- }
4408
-
4409
- .premium-blog-masked .premium-blog-thumbnail-container svg {
4410
- position: absolute;
4411
- height: 100px;
4412
- width: 100%;
4413
- bottom: -5px;
4414
- right: 0;
4415
- fill: #f5f5f5;
4416
- z-index: 99;
4417
- }
4418
-
4419
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
4420
- -webkit-transform: rotate(180deg);
4421
- -ms-transform: rotate(180deg);
4422
- transform: rotate(180deg);
4423
- }
4424
-
4425
- .premium-blog-masked .premium-blog-author-thumbnail,
4426
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
4427
- z-index: 999 !important;
4428
- }
4429
-
4430
- /*Post Format Container*/
4431
- .premium-blog-format-link {
4432
- padding: 5px;
4433
- line-height: 0;
4434
- }
4435
-
4436
- /*Post Format Icon*/
4437
- /*Post Format Content Margin */
4438
- .premium-blog-entry-meta {
4439
- line-height: 1.3em;
4440
- font-size: 12px;
4441
- margin-bottom: 13px;
4442
- color: #adadad;
4443
- }
4444
-
4445
- .premium-blog-entry-meta i {
4446
- margin-left: 3px;
4447
- -webkit-transition: all 0.3s ease-in-out;
4448
- transition: all 0.3s ease-in-out;
4449
- }
4450
-
4451
- .premium-blog-meta-data {
4452
- display: inline-block;
4453
- }
4454
-
4455
- .premium-blog-meta-data .premium-blog-meta-separator {
4456
- margin: 0 5px;
4457
- }
4458
-
4459
- .premium-blog-meta-data a,
4460
- .premium-blog-meta-data span {
4461
- color: inherit;
4462
- -webkit-transition: all 0.3s ease-in-out;
4463
- transition: all 0.3s ease-in-out;
4464
- }
4465
-
4466
- .premium-blog-author-thumbnail {
4467
- position: relative;
4468
- padding: 0 30px;
4469
- width: 100%;
4470
- top: -10px;
4471
- height: 0;
4472
- pointer-events: none;
4473
- }
4474
-
4475
- .premium-blog-author-thumbnail img {
4476
- -webkit-border-radius: 50%;
4477
- border-radius: 50%;
4478
- width: 60px;
4479
- pointer-events: all;
4480
- -webkit-transform: translateY(-50%);
4481
- -ms-transform: translateY(-50%);
4482
- transform: translateY(-50%);
4483
- }
4484
-
4485
- .premium-blog-entry-title a,
4486
- .premium-blog-post-tags-container a,
4487
- .premium-blog-post-content .premium-blog-excerpt-link {
4488
- -webkit-transition: all 0.3s ease-in-out;
4489
- transition: all 0.3s ease-in-out;
4490
- }
4491
-
4492
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
4493
- background-color: transparent;
4494
- color: #54595f;
4495
- padding: 0;
4496
- }
4497
-
4498
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
4499
- width: 100%;
4500
- }
4501
-
4502
- .premium-blog-post-tags-container {
4503
- margin-top: 8px;
4504
- -js-display: flex;
4505
- display: -webkit-box;
4506
- display: -webkit-flex;
4507
- display: -moz-box;
4508
- display: -ms-flexbox;
4509
- display: flex;
4510
- -webkit-box-align: center;
4511
- -webkit-align-items: center;
4512
- -moz-box-align: center;
4513
- -ms-flex-align: center;
4514
- align-items: center;
4515
- -webkit-flex-wrap: wrap;
4516
- -ms-flex-wrap: wrap;
4517
- flex-wrap: wrap;
4518
- }
4519
-
4520
- .premium-blog-post-tags-container a {
4521
- color: inherit;
4522
- margin-right: 5px;
4523
- }
4524
-
4525
- .premium-blog-align-center .post-categories,
4526
- .premium-blog-align-center .premium-blog-inner-container,
4527
- .premium-blog-align-center .premium-blog-post-tags-container {
4528
- -webkit-box-pack: center;
4529
- -webkit-justify-content: center;
4530
- -moz-box-pack: center;
4531
- -ms-flex-pack: center;
4532
- justify-content: center;
4533
- }
4534
-
4535
- .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
4536
- .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
4537
- .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
4538
- -webkit-box-pack: end;
4539
- -webkit-justify-content: flex-end;
4540
- -moz-box-pack: end;
4541
- -ms-flex-pack: end;
4542
- justify-content: flex-end;
4543
- }
4544
-
4545
- .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4546
- .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4547
- .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4548
- -webkit-box-pack: start;
4549
- -webkit-justify-content: flex-start;
4550
- -moz-box-pack: start;
4551
- -ms-flex-pack: start;
4552
- justify-content: flex-start;
4553
- }
4554
-
4555
- .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
4556
- .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
4557
- .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
4558
- -webkit-box-pack: start;
4559
- -webkit-justify-content: flex-start;
4560
- -moz-box-pack: start;
4561
- -ms-flex-pack: start;
4562
- justify-content: flex-start;
4563
- }
4564
-
4565
- .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4566
- .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4567
- .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4568
- -webkit-box-pack: end;
4569
- -webkit-justify-content: flex-end;
4570
- -moz-box-pack: end;
4571
- -ms-flex-pack: end;
4572
- justify-content: flex-end;
4573
- }
4574
-
4575
- /* Pagination */
4576
- .premium-blog-pagination-container {
4577
- text-align: left;
4578
- }
4579
-
4580
- .premium-blog-pagination-container span {
4581
- cursor: default;
4582
- }
4583
-
4584
- .premium-blog-pagination-container .page-numbers {
4585
- display: inline-block;
4586
- color: #000;
4587
- line-height: 1;
4588
- font-size: 1em;
4589
- font-weight: 400;
4590
- text-decoration: none;
4591
- padding: 0.75em;
4592
- margin: 0 0 0.4em 0.4em;
4593
- -webkit-transition: all 0.2s ease-in-out;
4594
- transition: all 0.2s ease-in-out;
4595
- }
4596
-
4597
- .premium-blog-wrap .premium-loading-feed {
4598
- display: block;
4599
- position: absolute;
4600
- width: 100%;
4601
- height: 100%;
4602
- top: 0px;
4603
- right: 0px;
4604
- bottom: 0px;
4605
- left: 0px;
4606
- background: rgba(255, 255, 255, 0.2);
4607
- -js-display: flex;
4608
- display: -webkit-box;
4609
- display: -webkit-flex;
4610
- display: -moz-box;
4611
- display: -ms-flexbox;
4612
- display: flex;
4613
- -webkit-box-align: center;
4614
- -webkit-align-items: center;
4615
- -moz-box-align: center;
4616
- -ms-flex-align: center;
4617
- align-items: center;
4618
- z-index: 99;
4619
- }
4620
-
4621
- .premium-blog-wrap {
4622
- -js-display: flex;
4623
- display: -webkit-box;
4624
- display: -webkit-flex;
4625
- display: -moz-box;
4626
- display: -ms-flexbox;
4627
- display: flex;
4628
- -webkit-flex-wrap: wrap;
4629
- -ms-flex-wrap: wrap;
4630
- flex-wrap: wrap;
4631
- }
4632
-
4633
- .premium-blog-wrap ul.slick-dots {
4634
- width: 100%;
4635
- }
4636
-
4637
- /**
4638
- * Even Layout
4639
- */
4640
- .premium-blog-even .premium-blog-post-container {
4641
- height: 100%;
4642
- }
4643
-
4644
- .premium-blog-even .slick-track {
4645
- -js-display: flex;
4646
- display: -webkit-box;
4647
- display: -webkit-flex;
4648
- display: -moz-box;
4649
- display: -ms-flexbox;
4650
- display: flex;
4651
- }
4652
-
4653
- .premium-blog-even .slick-slide {
4654
- height: inherit !important;
4655
- }
4656
-
4657
- /**
4658
- * Responsive Style
4659
- */
4660
- @media (max-width: 768px) {
4661
- .premium-blog-content-wrapper {
4662
- top: 0;
4663
- margin: 0;
4664
- padding: 15px;
4665
- }
4666
-
4667
- .premium-blog-thumb-effect-wrapper {
4668
- margin-bottom: 15px;
4669
- }
4670
- }
4671
-
4672
- [dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
4673
- [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
4674
- direction: ltr;
4675
- }
4676
-
4677
- /************ Premium Team Members ************/
4678
- /*********************************************/
4679
- .premium-person-container {
4680
- position: relative;
4681
- }
4682
-
4683
- .premium-person-image-container {
4684
- position: relative;
4685
- text-align: center;
4686
- }
4687
-
4688
- .premium-person-image-container .premium-person-image-wrap {
4689
- overflow: hidden;
4690
- }
4691
-
4692
- .premium-person-zoomout-effect .premium-person-image-container img,
4693
- .premium-person-scale-effect .premium-person-image-container img {
4694
- -webkit-transform: scale(1.2);
4695
- -ms-transform: scale(1.2);
4696
- transform: scale(1.2);
4697
- }
4698
-
4699
- .premium-person-sepia-effect .premium-person-image-container img {
4700
- -webkit-filter: sepia(30%);
4701
- filter: sepia(30%);
4702
- }
4703
-
4704
- .premium-person-bright-effect .premium-person-image-container img {
4705
- -webkit-filter: brightness(1);
4706
- filter: brightness(1);
4707
- }
4708
-
4709
- .premium-person-trans-effect .premium-person-image-container img {
4710
- -webkit-transform: translateX(15px) scale(1.1);
4711
- -ms-transform: translateX(15px) scale(1.1);
4712
- transform: translateX(15px) scale(1.1);
4713
- }
4714
-
4715
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
4716
- -webkit-transform: scale(1.2);
4717
- -ms-transform: scale(1.2);
4718
- transform: scale(1.2);
4719
- }
4720
-
4721
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
4722
- -webkit-transform: scale(1.1);
4723
- -ms-transform: scale(1.1);
4724
- transform: scale(1.1);
4725
- }
4726
-
4727
- .premium-person-scale-effect:hover .premium-person-image-container img {
4728
- -webkit-transform: scale(1.3) rotate(-5deg);
4729
- -ms-transform: scale(1.3) rotate(-5deg);
4730
- transform: scale(1.3) rotate(-5deg);
4731
- }
4732
-
4733
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
4734
- -webkit-filter: grayscale(100%);
4735
- filter: grayscale(100%);
4736
- }
4737
-
4738
- .premium-person-blur-effect:hover .premium-person-image-container img {
4739
- -webkit-filter: blur(3px);
4740
- filter: blur(3px);
4741
- }
4742
-
4743
- .premium-person-sepia-effect:hover .premium-person-image-container img {
4744
- -webkit-filter: sepia(0%);
4745
- filter: sepia(0%);
4746
- }
4747
-
4748
- .premium-person-bright-effect:hover .premium-person-image-container img {
4749
- -webkit-filter: brightness(1.2);
4750
- filter: brightness(1.2);
4751
- }
4752
-
4753
- .premium-person-trans-effect:hover .premium-person-image-container img {
4754
- -webkit-transform: translateX(0px) scale(1.1);
4755
- -ms-transform: translateX(0px) scale(1.1);
4756
- transform: translateX(0px) scale(1.1);
4757
- }
4758
-
4759
- .premium-person-container .premium-person-image-container img {
4760
- width: 100%;
4761
- height: 100%;
4762
- -o-object-fit: cover;
4763
- object-fit: cover;
4764
- -webkit-transition: all 0.5s ease-in-out;
4765
- transition: all 0.5s ease-in-out;
4766
- }
4767
-
4768
- .premium-person-style2 .premium-person-social {
4769
- position: absolute;
4770
- top: 0;
4771
- right: 0;
4772
- width: 100%;
4773
- height: 100%;
4774
- z-index: 2;
4775
- -js-display: flex;
4776
- display: -webkit-box;
4777
- display: -webkit-flex;
4778
- display: -moz-box;
4779
- display: -ms-flexbox;
4780
- display: flex;
4781
- -webkit-box-pack: center;
4782
- -webkit-justify-content: center;
4783
- -moz-box-pack: center;
4784
- -ms-flex-pack: center;
4785
- justify-content: center;
4786
- -webkit-box-align: center;
4787
- -webkit-align-items: center;
4788
- -moz-box-align: center;
4789
- -ms-flex-align: center;
4790
- align-items: center;
4791
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4792
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4793
- -webkit-transition: all 0.5s linear 0s;
4794
- transition: all 0.5s linear 0s;
4795
- opacity: 0;
4796
- }
4797
-
4798
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4799
- opacity: 1;
4800
- }
4801
-
4802
- .premium-person-list-item a {
4803
- display: inline-block;
4804
- }
4805
-
4806
- .premium-person-style2 .premium-person-list-item a {
4807
- opacity: 0;
4808
- -webkit-transform: scale(0);
4809
- -ms-transform: scale(0);
4810
- transform: scale(0);
4811
- -webkit-transition: all 0.5s ease-in-out 0s;
4812
- transition: all 0.5s ease-in-out 0s;
4813
- }
4814
-
4815
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4816
- opacity: 1;
4817
- -webkit-transform: scale(1);
4818
- -ms-transform: scale(1);
4819
- transform: scale(1);
4820
- }
4821
-
4822
- .premium-person-info-container {
4823
- padding: 30px 15px;
4824
- }
4825
-
4826
- .premium-person-name {
4827
- margin: 0 0 5px;
4828
- font-weight: 700;
4829
- }
4830
-
4831
- .premium-person-title {
4832
- margin: 0 0 20px;
4833
- padding: 0;
4834
- }
4835
-
4836
- .premium-person-content {
4837
- margin: 0 0 30px;
4838
- }
4839
-
4840
- /*Override Theme List Margin*/
4841
- ul.premium-person-social-list {
4842
- margin: 0px !important;
4843
- padding: 0;
4844
- }
4845
-
4846
- .premium-person-social-list .premium-person-list-item {
4847
- display: inline;
4848
- list-style: none;
4849
- }
4850
-
4851
- .premium-person-social-list li {
4852
- position: relative;
4853
- bottom: 0px;
4854
- -webkit-transition: all 0.2s ease-in-out;
4855
- transition: all 0.2s ease-in-out;
4856
- }
4857
-
4858
- .premium-person-social-list li i {
4859
- position: relative;
4860
- bottom: 0px;
4861
- -webkit-transition: all 0.2s ease-in-out;
4862
- transition: all 0.2s ease-in-out;
4863
- }
4864
-
4865
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
4866
- background-color: #3b5998 !important;
4867
- }
4868
-
4869
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
4870
- background-color: #55acee !important;
4871
- }
4872
-
4873
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4874
- background-color: #0077b5 !important;
4875
- }
4876
-
4877
- .premium-person-defaults-yes li.premium-person-google:hover a {
4878
- background-color: #dc4e41 !important;
4879
- }
4880
-
4881
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
4882
- background-color: #b31217 !important;
4883
- }
4884
-
4885
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
4886
- background-color: #e4405f !important;
4887
- }
4888
-
4889
- .premium-person-defaults-yes li.premium-person-skype:hover a {
4890
- background-color: #00aff0 !important;
4891
- }
4892
-
4893
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4894
- background-color: #bd081c !important;
4895
- }
4896
-
4897
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4898
- background-color: #ea4c89 !important;
4899
- }
4900
-
4901
- .premium-person-defaults-yes li.premium-person-mail:hover a {
4902
- background-color: #b23121 !important;
4903
- }
4904
-
4905
- .premium-person-defaults-yes li.premium-person-behance:hover a {
4906
- background-color: #1769ff !important;
4907
- }
4908
-
4909
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4910
- background-color: #25d366 !important;
4911
- }
4912
-
4913
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
4914
- background-color: #0088cc !important;
4915
- }
4916
-
4917
- .premium-person-defaults-yes li.premium-person-site:hover a {
4918
- background-color: #0055a5 !important;
4919
- }
4920
-
4921
- .premium-person-social-list li:hover a {
4922
- -webkit-box-shadow: none;
4923
- box-shadow: none;
4924
- }
4925
-
4926
- .premium-person-social-list li a:focus {
4927
- -webkit-box-shadow: none;
4928
- box-shadow: none;
4929
- outline: none;
4930
- }
4931
-
4932
- .premium-person-social-list li i {
4933
- font-size: 18px;
4934
- }
4935
-
4936
- .elementor-widget-premium-addon-person .elementor-widget-container {
4937
- -js-display: flex;
4938
- display: -webkit-box;
4939
- display: -webkit-flex;
4940
- display: -moz-box;
4941
- display: -ms-flexbox;
4942
- display: flex;
4943
- -webkit-box-pack: center;
4944
- -webkit-justify-content: center;
4945
- -moz-box-pack: center;
4946
- -ms-flex-pack: center;
4947
- justify-content: center;
4948
- }
4949
-
4950
- .premium-persons-container.multiple-persons {
4951
- -js-display: flex;
4952
- display: -webkit-box;
4953
- display: -webkit-flex;
4954
- display: -moz-box;
4955
- display: -ms-flexbox;
4956
- display: flex;
4957
- -webkit-flex-wrap: wrap;
4958
- -ms-flex-wrap: wrap;
4959
- flex-wrap: wrap;
4960
- width: 100%;
4961
- }
4962
-
4963
- .premium-person-style1 .premium-person-container {
4964
- overflow: hidden;
4965
- }
4966
-
4967
- .premium-person-style1 .premium-person-container .premium-person-info {
4968
- position: absolute;
4969
- top: auto;
4970
- left: 0;
4971
- right: 0;
4972
- -webkit-transition: all 500ms ease 0s;
4973
- transition: all 500ms ease 0s;
4974
- -webkit-transform: translate3d(0, 100%, 0);
4975
- transform: translate3d(0, 100%, 0);
4976
- }
4977
-
4978
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
4979
- -webkit-transform: translate3d(0, 0, 0);
4980
- transform: translate3d(0, 0, 0);
4981
- bottom: -1px !important;
4982
- }
4983
-
4984
- .premium-person-style1 .premium-person-social-list li:hover {
4985
- bottom: 5px;
4986
- }
4987
-
4988
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4989
- -webkit-box-align: start;
4990
- -webkit-align-items: flex-start;
4991
- -moz-box-align: start;
4992
- -ms-flex-align: start;
4993
- align-items: flex-start;
4994
- }
4995
-
4996
- .premium-person-style1 .slick-track {
4997
- -js-display: flex;
4998
- display: -webkit-box;
4999
- display: -webkit-flex;
5000
- display: -moz-box;
5001
- display: -ms-flexbox;
5002
- display: flex;
5003
- }
5004
-
5005
- .premium-person-style1 .slick-slide {
5006
- height: inherit !important;
5007
- }
5008
-
5009
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
5010
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
5011
- height: 100%;
5012
- }
5013
-
5014
- .premium-person-style3 .premium-person-info-container {
5015
- position: absolute;
5016
- top: 0;
5017
- right: 0;
5018
- width: 100%;
5019
- height: 100%;
5020
- -js-display: flex;
5021
- display: -webkit-box;
5022
- display: -webkit-flex;
5023
- display: -moz-box;
5024
- display: -ms-flexbox;
5025
- display: flex;
5026
- -webkit-box-orient: vertical;
5027
- -webkit-box-direction: normal;
5028
- -webkit-flex-direction: column;
5029
- -moz-box-orient: vertical;
5030
- -moz-box-direction: normal;
5031
- -ms-flex-direction: column;
5032
- flex-direction: column;
5033
- -webkit-box-pack: justify;
5034
- -webkit-justify-content: space-between;
5035
- -moz-box-pack: justify;
5036
- -ms-flex-pack: justify;
5037
- justify-content: space-between;
5038
- }
5039
-
5040
- .premium-person-style3 .premium-person-title-desc-wrap {
5041
- -js-display: flex;
5042
- display: -webkit-box;
5043
- display: -webkit-flex;
5044
- display: -moz-box;
5045
- display: -ms-flexbox;
5046
- display: flex;
5047
- -webkit-box-orient: horizontal;
5048
- -webkit-box-direction: reverse;
5049
- -webkit-flex-direction: row-reverse;
5050
- -moz-box-orient: horizontal;
5051
- -moz-box-direction: reverse;
5052
- -ms-flex-direction: row-reverse;
5053
- flex-direction: row-reverse;
5054
- -webkit-box-pack: justify;
5055
- -webkit-justify-content: space-between;
5056
- -moz-box-pack: justify;
5057
- -ms-flex-pack: justify;
5058
- justify-content: space-between;
5059
- -webkit-box-align: start;
5060
- -webkit-align-items: flex-start;
5061
- -moz-box-align: start;
5062
- -ms-flex-align: start;
5063
- align-items: flex-start;
5064
- }
5065
-
5066
- .premium-person-style3 .premium-person-name-icons-wrap {
5067
- -js-display: flex;
5068
- display: -webkit-box;
5069
- display: -webkit-flex;
5070
- display: -moz-box;
5071
- display: -ms-flexbox;
5072
- display: flex;
5073
- -webkit-box-pack: justify;
5074
- -webkit-justify-content: space-between;
5075
- -moz-box-pack: justify;
5076
- -ms-flex-pack: justify;
5077
- justify-content: space-between;
5078
- -webkit-box-align: end;
5079
- -webkit-align-items: flex-end;
5080
- -moz-box-align: end;
5081
- -ms-flex-align: end;
5082
- align-items: flex-end;
5083
- }
5084
-
5085
- .premium-person-style3 .premium-person-title {
5086
- opacity: 0;
5087
- -webkit-transition: all 0.3s ease;
5088
- transition: all 0.3s ease;
5089
- width: 0;
5090
- }
5091
-
5092
- .premium-person-style3 .premium-person-title span {
5093
- display: inline-block;
5094
- }
5095
-
5096
- .premium-person-style3 .premium-person-name {
5097
- padding-right: 10px;
5098
- }
5099
-
5100
- .premium-person-style3 .premium-person-social-list {
5101
- -js-display: flex;
5102
- display: -webkit-box;
5103
- display: -webkit-flex;
5104
- display: -moz-box;
5105
- display: -ms-flexbox;
5106
- display: flex;
5107
- -webkit-box-orient: vertical;
5108
- -webkit-box-direction: normal;
5109
- -webkit-flex-direction: column;
5110
- -moz-box-orient: vertical;
5111
- -moz-box-direction: normal;
5112
- -ms-flex-direction: column;
5113
- flex-direction: column;
5114
- -webkit-transform: translateY(20px);
5115
- -ms-transform: translateY(20px);
5116
- transform: translateY(20px);
5117
- opacity: 0;
5118
- -webkit-transition: all 0.3s ease;
5119
- transition: all 0.3s ease;
5120
- }
5121
-
5122
- .premium-person-style3 .premium-person-list-item {
5123
- line-height: 0;
5124
- }
5125
-
5126
- .premium-person-style3 .premium-person-list-item a {
5127
- padding: 5px 0 0 10px;
5128
- margin: 5px 0;
5129
- }
5130
-
5131
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
5132
- opacity: 1;
5133
- }
5134
-
5135
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
5136
- opacity: 1;
5137
- -webkit-transform: translateY(0);
5138
- -ms-transform: translateY(0);
5139
- transform: translateY(0);
5140
- }
5141
-
5142
- .premium-persons-title-cw .premium-person-title {
5143
- -webkit-transform: translateX(-15px) rotate(-90deg);
5144
- -ms-transform: translateX(-15px) rotate(-90deg);
5145
- transform: translateX(-15px) rotate(-90deg);
5146
- -webkit-transform-origin: top;
5147
- -ms-transform-origin: top;
5148
- transform-origin: top;
5149
- }
5150
-
5151
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
5152
- -webkit-transform: translateX(0) rotate(-90deg);
5153
- -ms-transform: translateX(0) rotate(-90deg);
5154
- transform: translateX(0) rotate(-90deg);
5155
- }
5156
-
5157
- .premium-persons-title-ccw .premium-person-title {
5158
- width: auto;
5159
- margin-left: 20px;
5160
- -webkit-transform: translateX(-15px) rotate(90deg);
5161
- -ms-transform: translateX(-15px) rotate(90deg);
5162
- transform: translateX(-15px) rotate(90deg);
5163
- -webkit-transform-origin: center left;
5164
- -ms-transform-origin: center left;
5165
- transform-origin: center left;
5166
- }
5167
-
5168
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
5169
- -webkit-transform: translateX(0) rotate(90deg);
5170
- -ms-transform: translateX(0) rotate(90deg);
5171
- transform: translateX(0) rotate(90deg);
5172
- }
5173
-
5174
- /**************** Premium Fancy Text *******************/
5175
- /*******************************************************/
5176
- .premium-suffix-text,
5177
- .premium-fancy-text,
5178
- .premium-prefix-text {
5179
- font-size: 40px;
5180
- }
5181
-
5182
- .premium-fancy-text-wrapper .premium-fancy-list-items {
5183
- list-style: none;
5184
- }
5185
-
5186
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
5187
- vertical-align: top;
5188
- }
5189
-
5190
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
5191
- margin: 0;
5192
- padding: 0;
5193
- border: none;
5194
- position: relative;
5195
- }
5196
-
5197
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
5198
- position: absolute;
5199
- top: 0;
5200
- left: 0;
5201
- display: inline-block;
5202
- }
5203
-
5204
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
5205
- opacity: 0;
5206
- -webkit-animation: pa-zoom-out 0.8s;
5207
- animation: pa-zoom-out 0.8s;
5208
- }
5209
-
5210
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
5211
- position: relative !important;
5212
- -webkit-animation: pa-zoom-in 0.8s;
5213
- animation: pa-zoom-in 0.8s;
5214
- }
5215
-
5216
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
5217
- -webkit-perspective: 300px;
5218
- perspective: 300px;
5219
- }
5220
-
5221
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
5222
- -webkit-transform-origin: 50% 100%;
5223
- -ms-transform-origin: 50% 100%;
5224
- transform-origin: 50% 100%;
5225
- }
5226
-
5227
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
5228
- opacity: 0;
5229
- -webkit-transform: rotateX(180deg);
5230
- transform: rotateX(180deg);
5231
- -webkit-animation: pa-rotate-out 1.2s;
5232
- animation: pa-rotate-out 1.2s;
5233
- }
5234
-
5235
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
5236
- position: relative !important;
5237
- -webkit-transform: rotateX(0deg);
5238
- transform: rotateX(0deg);
5239
- -webkit-animation: pa-rotate-in 1.2s;
5240
- animation: pa-rotate-in 1.2s;
5241
- }
5242
-
5243
- .premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
5244
- opacity: 0;
5245
- }
5246
-
5247
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
5248
- position: relative !important;
5249
- }
5250
-
5251
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
5252
- display: inline-block;
5253
- width: 200px;
5254
- font-weight: 400;
5255
- }
5256
-
5257
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
5258
- position: relative;
5259
- vertical-align: sub;
5260
- }
5261
-
5262
- .premium-fancy-text-wrapper.auto-fade g>text {
5263
- text-anchor: start;
5264
- shape-rendering: crispEdges;
5265
- opacity: 0;
5266
- font-size: 300px;
5267
- -webkit-animation-name: pa-auto-fade;
5268
- animation-name: pa-auto-fade;
5269
- -moz-animation-name: pa-auto-fade;
5270
- -webkit-animation-duration: 9s;
5271
- animation-duration: 9s;
5272
- -webkit-animation-timing-function: linear;
5273
- animation-timing-function: linear;
5274
- -webkit-animation-iteration-count: infinite;
5275
- animation-iteration-count: infinite;
5276
- }
5277
-
5278
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
5279
- -webkit-animation-delay: 0s;
5280
- animation-delay: 0s;
5281
- }
5282
-
5283
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
5284
- -webkit-animation-delay: 3s;
5285
- animation-delay: 3s;
5286
- }
5287
-
5288
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
5289
- -webkit-animation-delay: 6s;
5290
- animation-delay: 6s;
5291
- }
5292
-
5293
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
5294
- position: relative;
5295
- }
5296
-
5297
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
5298
- position: absolute;
5299
- width: 100%;
5300
- height: 3px;
5301
- bottom: 0;
5302
- left: 0;
5303
- animation: pa-loading-bar 2.5s ease-out infinite;
5304
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
5305
- }
5306
-
5307
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
5308
- -webkit-animation-play-state: paused;
5309
- animation-play-state: paused;
5310
- }
5311
-
5312
- @-webkit-keyframes pa-auto-fade {
5313
- 0% {
5314
- opacity: 0;
5315
- }
5316
-
5317
- 20% {
5318
- opacity: 1;
5319
- }
5320
-
5321
- 35% {
5322
- opacity: 0;
5323
- }
5324
-
5325
- 100% {
5326
- opacity: 0;
5327
- }
5328
- }
5329
-
5330
- @keyframes pa-auto-fade {
5331
- 0% {
5332
- opacity: 0;
5333
- }
5334
-
5335
- 20% {
5336
- opacity: 1;
5337
- }
5338
-
5339
- 35% {
5340
- opacity: 0;
5341
- }
5342
-
5343
- 100% {
5344
- opacity: 0;
5345
- }
5346
- }
5347
-
5348
- @-webkit-keyframes pa-loading-bar {
5349
- 0% {
5350
- width: 0;
5351
- }
5352
-
5353
- 100% {
5354
- width: 100;
5355
- }
5356
- }
5357
-
5358
- @keyframes pa-loading-bar {
5359
- 0% {
5360
- width: 0;
5361
- }
5362
-
5363
- 100% {
5364
- width: 100;
5365
- }
5366
- }
5367
-
5368
- @-webkit-keyframes pa-zoom-in {
5369
- 0% {
5370
- opacity: 0;
5371
- -webkit-transform: translateZ(100px);
5372
- transform: translateZ(100px);
5373
- }
5374
-
5375
- 100% {
5376
- opacity: 1;
5377
- -webkit-transform: translateZ(0);
5378
- transform: translateZ(0);
5379
- }
5380
- }
5381
-
5382
- @keyframes pa-zoom-in {
5383
- 0% {
5384
- opacity: 0;
5385
- -webkit-transform: translateZ(100px);
5386
- transform: translateZ(100px);
5387
- }
5388
-
5389
- 100% {
5390
- opacity: 1;
5391
- -webkit-transform: translateZ(0);
5392
- transform: translateZ(0);
5393
- }
5394
- }
5395
-
5396
- @-webkit-keyframes pa-zoom-out {
5397
- 0% {
5398
- opacity: 1;
5399
- -webkit-transform: translateZ(0);
5400
- transform: translateZ(0);
5401
- }
5402
-
5403
- 100% {
5404
- opacity: 0;
5405
- -webkit-transform: translateZ(-100px);
5406
- transform: translateZ(-100px);
5407
- }
5408
- }
5409
-
5410
- @keyframes pa-zoom-out {
5411
- 0% {
5412
- opacity: 1;
5413
- -webkit-transform: translateZ(0);
5414
- transform: translateZ(0);
5415
- }
5416
-
5417
- 100% {
5418
- opacity: 0;
5419
- -webkit-transform: translateZ(-100px);
5420
- transform: translateZ(-100px);
5421
- }
5422
- }
5423
-
5424
- @-webkit-keyframes pa-rotate-in {
5425
- 0% {
5426
- opacity: 0;
5427
- -webkit-transform: rotateX(180deg);
5428
- transform: rotateX(180deg);
5429
- }
5430
-
5431
- 35% {
5432
- opacity: 0;
5433
- -webkit-transform: rotateX(120deg);
5434
- transform: rotateX(120deg);
5435
- }
5436
-
5437
- 65% {
5438
- opacity: 0;
5439
- }
5440
-
5441
- 100% {
5442
- opacity: 1;
5443
- -webkit-transform: rotateX(360deg);
5444
- transform: rotateX(360deg);
5445
- }
5446
- }
5447
-
5448
- @keyframes pa-rotate-in {
5449
- 0% {
5450
- opacity: 0;
5451
- -webkit-transform: rotateX(180deg);
5452
- transform: rotateX(180deg);
5453
- }
5454
-
5455
- 35% {
5456
- opacity: 0;
5457
- -webkit-transform: rotateX(120deg);
5458
- transform: rotateX(120deg);
5459
- }
5460
-
5461
- 65% {
5462
- opacity: 0;
5463
- }
5464
-
5465
- 100% {
5466
- opacity: 1;
5467
- -webkit-transform: rotateX(360deg);
5468
- transform: rotateX(360deg);
5469
- }
5470
- }
5471
-
5472
- @-webkit-keyframes pa-rotate-out {
5473
- 0% {
5474
- opacity: 1;
5475
- -webkit-transform: rotateX(0deg);
5476
- transform: rotateX(0deg);
5477
- }
5478
-
5479
- 35% {
5480
- opacity: 1;
5481
- -webkit-transform: rotateX(-40deg);
5482
- transform: rotateX(-40deg);
5483
- }
5484
-
5485
- 65% {
5486
- opacity: 0;
5487
- }
5488
-
5489
- 100% {
5490
- opacity: 0;
5491
- -webkit-transform: rotateX(180deg);
5492
- transform: rotateX(180deg);
5493
- }
5494
- }
5495
-
5496
- @keyframes pa-rotate-out {
5497
- 0% {
5498
- opacity: 1;
5499
- -webkit-transform: rotateX(0deg);
5500
- transform: rotateX(0deg);
5501
- }
5502
-
5503
- 35% {
5504
- opacity: 1;
5505
- -webkit-transform: rotateX(-40deg);
5506
- transform: rotateX(-40deg);
5507
- }
5508
-
5509
- 65% {
5510
- opacity: 0;
5511
- }
5512
-
5513
- 100% {
5514
- opacity: 0;
5515
- -webkit-transform: rotateX(180deg);
5516
- transform: rotateX(180deg);
5517
- }
5518
- }
5519
-
5520
- /**************** Premium Pricing Table ****************/
5521
- /*******************************************************/
5522
- .premium-pricing-table-container {
5523
- position: relative;
5524
- overflow: hidden;
5525
- text-align: center;
5526
- -webkit-transition: all 0.3s ease-in-out;
5527
- transition: all 0.3s ease-in-out;
5528
- }
5529
-
5530
- .premium-pricing-icon-container {
5531
- -js-display: flex;
5532
- display: -webkit-box;
5533
- display: -webkit-flex;
5534
- display: -moz-box;
5535
- display: -ms-flexbox;
5536
- display: flex;
5537
- -webkit-box-pack: center;
5538
- -webkit-justify-content: center;
5539
- -moz-box-pack: center;
5540
- -ms-flex-pack: center;
5541
- justify-content: center;
5542
- line-height: 0;
5543
- }
5544
-
5545
- .premium-pricing-icon-container .premium-pricing-icon {
5546
- display: inline-block;
5547
- }
5548
-
5549
- .premium-pricing-icon-container .premium-pricing-image {
5550
- overflow: hidden;
5551
- }
5552
-
5553
- .premium-pricing-icon-container .premium-pricing-image img {
5554
- width: 25px;
5555
- height: 25px;
5556
- -o-object-fit: cover;
5557
- object-fit: cover;
5558
- }
5559
-
5560
- .premium-badge-left {
5561
- position: absolute;
5562
- top: 0;
5563
- }
5564
-
5565
- .premium-badge-right {
5566
- position: absolute;
5567
- top: 0;
5568
- right: 0;
5569
- }
5570
-
5571
- .premium-badge-left {
5572
- left: 0;
5573
- }
5574
-
5575
- .premium-badge-triangle.premium-badge-left .corner {
5576
- width: 0;
5577
- height: 0;
5578
- border-top: 150px solid;
5579
- border-bottom: 150px solid transparent;
5580
- border-right: 150px solid transparent;
5581
- }
5582
-
5583
- .premium-badge-triangle.premium-badge-right .corner {
5584
- width: 0;
5585
- height: 0;
5586
- border-bottom: 150px solid transparent;
5587
- border-right: 150px solid;
5588
- border-left: 150px solid transparent;
5589
- }
5590
-
5591
- .premium-badge-triangle span {
5592
- position: absolute;
5593
- top: 35px;
5594
- width: 100px;
5595
- text-align: center;
5596
- -webkit-transform: rotate(-45deg);
5597
- -ms-transform: rotate(-45deg);
5598
- transform: rotate(-45deg);
5599
- display: block;
5600
- text-transform: uppercase;
5601
- }
5602
-
5603
- .premium-badge-triangle.premium-badge-right span {
5604
- -webkit-transform: rotate(45deg);
5605
- -ms-transform: rotate(45deg);
5606
- transform: rotate(45deg);
5607
- right: 0;
5608
- }
5609
-
5610
- .premium-badge-circle {
5611
- min-width: 4em;
5612
- min-height: 4em;
5613
- line-height: 4em;
5614
- text-align: center;
5615
- -webkit-border-radius: 100%;
5616
- border-radius: 100%;
5617
- position: absolute;
5618
- z-index: 1;
5619
- }
5620
-
5621
- .premium-badge-stripe {
5622
- position: absolute;
5623
- -webkit-transform: rotate(90deg);
5624
- -ms-transform: rotate(90deg);
5625
- transform: rotate(90deg);
5626
- width: 15em;
5627
- overflow: hidden;
5628
- height: 15em;
5629
- }
5630
-
5631
- .premium-badge-stripe.premium-badge-left {
5632
- -webkit-transform: rotate(0);
5633
- -ms-transform: rotate(0);
5634
- transform: rotate(0);
5635
- }
5636
-
5637
- .premium-badge-stripe .corner {
5638
- text-align: center;
5639
- left: 0;
5640
- width: 150%;
5641
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5642
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5643
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5644
- margin-top: 35px;
5645
- font-size: 13px;
5646
- line-height: 2;
5647
- font-weight: 800;
5648
- text-transform: uppercase;
5649
- }
5650
-
5651
- .premium-badge-flag .corner {
5652
- text-align: center;
5653
- -webkit-border-radius: 4px 4px 0 4px;
5654
- border-radius: 4px 4px 0 4px;
5655
- padding: 3px 15px;
5656
- position: absolute;
5657
- top: 10%;
5658
- right: -8px;
5659
- }
5660
-
5661
- .premium-badge-flag .corner::before,
5662
- .premium-badge-flag .corner::after {
5663
- content: "";
5664
- display: block;
5665
- position: absolute;
5666
- width: 0;
5667
- height: 0;
5668
- top: 100%;
5669
- right: 0;
5670
- border-bottom: 8px solid transparent;
5671
- }
5672
-
5673
- .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
5674
- overflow: visible !important;
5675
- }
5676
-
5677
- .premium-badge-flag .corner::after {
5678
- border-left: 8px solid rgba(0, 0, 0, 0.2);
5679
- }
5680
-
5681
- .premium-pricing-price-currency {
5682
- position: relative;
5683
- }
5684
-
5685
- .premium-pricing-button-container {
5686
- display: block;
5687
- }
5688
-
5689
- .premium-pricing-list {
5690
- -js-display: flex;
5691
- display: -webkit-box;
5692
- display: -webkit-flex;
5693
- display: -moz-box;
5694
- display: -ms-flexbox;
5695
- display: flex;
5696
- -webkit-box-orient: vertical;
5697
- -webkit-box-direction: normal;
5698
- -webkit-flex-direction: column;
5699
- -moz-box-orient: vertical;
5700
- -moz-box-direction: normal;
5701
- -ms-flex-direction: column;
5702
- flex-direction: column;
5703
- list-style-type: none;
5704
- margin: 0;
5705
- }
5706
-
5707
- .premium-pricing-list .premium-pricing-list-item {
5708
- -js-display: flex;
5709
- display: -webkit-box;
5710
- display: -webkit-flex;
5711
- display: -moz-box;
5712
- display: -ms-flexbox;
5713
- display: flex;
5714
- -webkit-box-align: center;
5715
- -webkit-align-items: center;
5716
- -moz-box-align: center;
5717
- -ms-flex-align: center;
5718
- align-items: center;
5719
- }
5720
-
5721
- .premium-pricing-list .premium-pricing-list-item svg {
5722
- width: 50px;
5723
- height: 50px;
5724
- }
5725
-
5726
- .premium-pricing-list .premium-pricing-list-item img {
5727
- width: 30px;
5728
- height: 30px;
5729
- -o-object-fit: cover;
5730
- object-fit: cover;
5731
- }
5732
-
5733
- .premium-pricing-list .premium-pricing-list-span {
5734
- position: relative;
5735
- }
5736
-
5737
- .premium-pricing-list .list-item-tooltip {
5738
- border-bottom: 1px dotted;
5739
- }
5740
-
5741
- .premium-pricing-list .premium-pricing-list-tooltip {
5742
- position: absolute;
5743
- top: -webkit-calc(100% + 1px);
5744
- top: calc(100% + 1px);
5745
- right: 0;
5746
- visibility: hidden;
5747
- padding: 15px 20px;
5748
- -webkit-border-radius: 5px;
5749
- border-radius: 5px;
5750
- min-width: 200px;
5751
- overflow: hidden;
5752
- text-align: right;
5753
- font-size: 0.8rem;
5754
- color: #fff;
5755
- background-color: #aaa;
5756
- }
5757
-
5758
- .premium-pricing-features-left .premium-pricing-list-span {
5759
- text-align: right;
5760
- }
5761
-
5762
- .premium-pricing-features-center .premium-pricing-list-span {
5763
- text-align: center;
5764
- }
5765
-
5766
- .premium-pricing-features-right .premium-pricing-list-span {
5767
- text-align: left;
5768
- }
5769
-
5770
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
5771
- z-index: 99;
5772
- visibility: visible;
5773
- opacity: 1;
5774
- }
5775
-
5776
- .premium-pricing-slashed-price-value {
5777
- display: inline-block;
5778
- font-size: 20px;
5779
- font-weight: 400;
5780
- margin-left: 5px;
5781
- }
5782
-
5783
- .premium-pricing-price-value {
5784
- font-size: 70px;
5785
- }
5786
-
5787
- .premium-pricing-description-container li {
5788
- list-style-position: inside;
5789
- text-indent: -40px;
5790
- }
5791
-
5792
- @-moz-document url-prefix() {
5793
- .premium-pricing-description-container li {
5794
- text-indent: 0px;
5795
- }
5796
- }
5797
-
5798
- .premium-pricing-price-button {
5799
- display: block;
5800
- padding: 6px 12px;
5801
- line-height: 1.42857143;
5802
- text-align: center;
5803
- color: #fff;
5804
- background: #6ec1e4;
5805
- margin-bottom: 0;
5806
- -webkit-transition: all 0.3s ease-in-out;
5807
- transition: all 0.3s ease-in-out;
5808
- }
5809
-
5810
- /**************** Premium Google Maps ******************/
5811
- /*******************************************************/
5812
- .premium-maps-info-container {
5813
- margin-top: 10px;
5814
- margin-bottom: 10px;
5815
- }
5816
-
5817
- .premium-maps-info-title,
5818
- .premium-maps-info-desc {
5819
- margin: 0;
5820
- padding: 0;
5821
- }
5822
-
5823
- .premium-maps-container .gm-style-iw {
5824
- text-align: center;
5825
- direction: ltr;
5826
- }
5827
-
5828
- .premium-maps-container .gm-style img {
5829
- max-width: none !important;
5830
- }
5831
-
5832
- /**************** Premium Button ***********************/
5833
- /*******************************************************/
5834
- .premium-button {
5835
- display: inline-block;
5836
- position: relative;
5837
- overflow: hidden;
5838
- cursor: pointer;
5839
- -webkit-transition: all 0.2s ease-in-out !important;
5840
- transition: all 0.2s ease-in-out !important;
5841
- }
5842
-
5843
- .premium-button-sm {
5844
- padding: 12px 24px;
5845
- font-size: 14px;
5846
- line-height: 1;
5847
- }
5848
-
5849
- .premium-button .premium-lottie-animation,
5850
- .premium-image-button .premium-lottie-animation {
5851
- -js-display: flex;
5852
- display: -webkit-box;
5853
- display: -webkit-flex;
5854
- display: -moz-box;
5855
- display: -ms-flexbox;
5856
- display: flex;
5857
- }
5858
-
5859
- .premium-button .premium-lottie-animation svg,
5860
- .premium-image-button .premium-lottie-animation svg {
5861
- width: 50px;
5862
- height: 50px;
5863
- }
5864
-
5865
- .premium-button-md {
5866
- padding: 14px 26px;
5867
- font-size: 16px;
5868
- line-height: 1.2;
5869
- }
5870
-
5871
- .premium-button-lg {
5872
- padding: 16px 28px;
5873
- font-size: 18px;
5874
- line-height: 1.3333;
5875
- }
5876
-
5877
- .premium-button-block {
5878
- font-size: 15px;
5879
- line-height: 1;
5880
- padding: 12px 24px;
5881
- width: 100%;
5882
- text-align: center;
5883
- }
5884
-
5885
- .premium-button-text {
5886
- display: inline-block;
5887
- width: 100%;
5888
- }
5889
-
5890
- .premium-button-style1,
5891
- .premium-button-style2,
5892
- .premium-button-style5,
5893
- .premium-button-style7 {
5894
- display: inline-block;
5895
- vertical-align: middle;
5896
- -webkit-transform: perspective(1px) translateZ(0);
5897
- transform: perspective(1px) translateZ(0);
5898
- -webkit-box-shadow: 0 0 1px transparent;
5899
- box-shadow: 0 0 1px transparent;
5900
- position: relative;
5901
- -webkit-transition-property: color;
5902
- transition-property: color;
5903
- -webkit-transition-duration: 0.15s;
5904
- transition-duration: 0.15s;
5905
- }
5906
-
5907
- .premium-button-style1:before,
5908
- .premium-button-style2:before,
5909
- .premium-button-style5:before {
5910
- content: "";
5911
- position: absolute;
5912
- z-index: -1;
5913
- top: 0;
5914
- right: 0;
5915
- left: 0;
5916
- bottom: 0;
5917
- -webkit-transform: scaleY(0);
5918
- -ms-transform: scaleY(0);
5919
- transform: scaleY(0);
5920
- -webkit-transform-origin: 50% 0;
5921
- -ms-transform-origin: 50% 0;
5922
- transform-origin: 50% 0;
5923
- -webkit-transition-property: -webkit-transform;
5924
- transition-property: -webkit-transform;
5925
- transition-property: transform;
5926
- transition-property: transform, -webkit-transform;
5927
- -webkit-transition-duration: 0.15s;
5928
- transition-duration: 0.15s;
5929
- -webkit-transition-timing-function: ease-out;
5930
- transition-timing-function: ease-out;
5931
- }
5932
-
5933
- .premium-button-style5-radialin:before,
5934
- .premium-button-style5-radialout:before {
5935
- -webkit-transform-origin: 50%;
5936
- -ms-transform-origin: 50%;
5937
- transform-origin: 50%;
5938
- -webkit-border-radius: 100%;
5939
- border-radius: 100%;
5940
- -webkit-transform: scale(0);
5941
- -ms-transform: scale(0);
5942
- transform: scale(0);
5943
- }
5944
-
5945
- .premium-button-style5-radialin:before {
5946
- -webkit-transform: scale(2);
5947
- -ms-transform: scale(2);
5948
- transform: scale(2);
5949
- }
5950
-
5951
- .premium-button-style5-rectin:before {
5952
- -webkit-transform-origin: 50%;
5953
- -ms-transform-origin: 50%;
5954
- transform-origin: 50%;
5955
- -webkit-transform: scale(1);
5956
- -ms-transform: scale(1);
5957
- transform: scale(1);
5958
- }
5959
-
5960
- .premium-button-style5-rectout:before {
5961
- -webkit-transform-origin: 50%;
5962
- -ms-transform-origin: 50%;
5963
- transform-origin: 50%;
5964
- -webkit-transform: scale(0);
5965
- -ms-transform: scale(0);
5966
- transform: scale(0);
5967
- }
5968
-
5969
- .premium-button-style5-rectout:hover:before {
5970
- -webkit-transform: scale(1);
5971
- -ms-transform: scale(1);
5972
- transform: scale(1);
5973
- }
5974
-
5975
- .premium-button-style5-rectin:hover:before {
5976
- -webkit-transform: scale(0);
5977
- -ms-transform: scale(0);
5978
- transform: scale(0);
5979
- }
5980
-
5981
- .premium-button-style5-radialout:hover:before {
5982
- -webkit-transform: scale(2);
5983
- -ms-transform: scale(2);
5984
- transform: scale(2);
5985
- }
5986
-
5987
- .premium-button-style5-radialin:hover:before {
5988
- -webkit-transform: scale(0);
5989
- -ms-transform: scale(0);
5990
- transform: scale(0);
5991
- }
5992
-
5993
- .premium-button-style1-top:before {
5994
- -webkit-transform-origin: 50% 100%;
5995
- -ms-transform-origin: 50% 100%;
5996
- transform-origin: 50% 100%;
5997
- }
5998
-
5999
- .premium-button-style1-right:before {
6000
- -webkit-transform: scaleX(0);
6001
- -ms-transform: scaleX(0);
6002
- transform: scaleX(0);
6003
- -webkit-transform-origin: 100% 50%;
6004
- -ms-transform-origin: 100% 50%;
6005
- transform-origin: 100% 50%;
6006
- }
6007
-
6008
- .premium-button-style1-left:before {
6009
- -webkit-transform: scaleX(0);
6010
- -ms-transform: scaleX(0);
6011
- transform: scaleX(0);
6012
- -webkit-transform-origin: 0% 50%;
6013
- -ms-transform-origin: 0% 50%;
6014
- transform-origin: 0% 50%;
6015
- }
6016
-
6017
- .premium-button-style2-shutouthor:before,
6018
- .premium-button-style2-scshutoutver:before {
6019
- -webkit-transform: scaleY(0);
6020
- -ms-transform: scaleY(0);
6021
- transform: scaleY(0);
6022
- -webkit-transform-origin: 0% 50%;
6023
- -ms-transform-origin: 0% 50%;
6024
- transform-origin: 0% 50%;
6025
- }
6026
-
6027
- .premium-button-style2-shutoutver:before,
6028
- .premium-button-style2-scshutouthor:before {
6029
- -webkit-transform: scaleX(0);
6030
- -ms-transform: scaleX(0);
6031
- transform: scaleX(0);
6032
- -webkit-transform-origin: 50% 50%;
6033
- -ms-transform-origin: 50% 50%;
6034
- transform-origin: 50% 50%;
6035
- }
6036
-
6037
- .premium-button-style2-shutinhor:before {
6038
- -webkit-transform: scaleX(1);
6039
- -ms-transform: scaleX(1);
6040
- transform: scaleX(1);
6041
- -webkit-transform-origin: 50%;
6042
- -ms-transform-origin: 50%;
6043
- transform-origin: 50%;
6044
- }
6045
-
6046
- .premium-button-style2-shutinver:before {
6047
- -webkit-transform: scaleY(1);
6048
- -ms-transform: scaleY(1);
6049
- transform: scaleY(1);
6050
- -webkit-transform-origin: 50%;
6051
- -ms-transform-origin: 50%;
6052
- transform-origin: 50%;
6053
- }
6054
-
6055
- .premium-button-style1-bottom:hover:before,
6056
- .premium-button-style1-top:hover:before {
6057
- -webkit-transform: scaleY(1);
6058
- -ms-transform: scaleY(1);
6059
- transform: scaleY(1);
6060
- }
6061
-
6062
- .premium-button-style1-left:hover:before,
6063
- .premium-button-style1-right:hover:before,
6064
- .premium-button-style2-shutouthor:hover:before,
6065
- .premium-button-style2-shutoutver:hover:before {
6066
- -webkit-transform: scaleX(1);
6067
- -ms-transform: scaleX(1);
6068
- transform: scaleX(1);
6069
- }
6070
-
6071
- .premium-button-style2-shutinhor:hover:before {
6072
- -webkit-transform: scaleX(0);
6073
- -ms-transform: scaleX(0);
6074
- transform: scaleX(0);
6075
- }
6076
-
6077
- .premium-button-style2-shutinver:hover:before {
6078
- -webkit-transform: scaleY(0);
6079
- -ms-transform: scaleY(0);
6080
- transform: scaleY(0);
6081
- }
6082
-
6083
- .premium-button-style2-scshutouthor:hover:before {
6084
- -webkit-transform: scaleX(0.9);
6085
- -ms-transform: scaleX(0.9);
6086
- transform: scaleX(0.9);
6087
- }
6088
-
6089
- .premium-button-style2-scshutoutver:hover:before {
6090
- -webkit-transform: scaleY(0.8);
6091
- -ms-transform: scaleY(0.8);
6092
- transform: scaleY(0.8);
6093
- }
6094
-
6095
- /*Diagonal*/
6096
- .premium-button-style2-dshutinhor:before {
6097
- top: 50%;
6098
- right: 50%;
6099
- width: 120%;
6100
- height: 0%;
6101
- -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
6102
- -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
6103
- transform: translateX(50%) translateY(-50%) rotate(45deg);
6104
- -webkit-transform-origin: 50%;
6105
- -ms-transform-origin: 50%;
6106
- transform-origin: 50%;
6107
- -webkit-transition-property: all;
6108
- transition-property: all;
6109
- }
6110
-
6111
- .premium-button-style2-dshutinver:before {
6112
- top: 50%;
6113
- right: 50%;
6114
- width: 120%;
6115
- height: 0%;
6116
- -webkit-transform-origin: 50%;
6117
- -ms-transform-origin: 50%;
6118
- transform-origin: 50%;
6119
- -webkit-transition-property: all;
6120
- transition-property: all;
6121
- -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6122
- -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6123
- transform: translateX(50%) translateY(-50%) rotate(-45deg);
6124
- }
6125
-
6126
- .premium-button-style2-dshutinhor:hover:before,
6127
- .premium-button-style2-dshutinver:hover:before {
6128
- height: 220%;
6129
- }
6130
-
6131
- .premium-button-style3-before i,
6132
- .premium-button-style3-before svg {
6133
- opacity: 0;
6134
- -webkit-transform: translateX(5px);
6135
- -ms-transform: translateX(5px);
6136
- transform: translateX(5px);
6137
- -webkit-transition: all 0.5s ease-in-out;
6138
- transition: all 0.5s ease-in-out;
6139
- }
6140
-
6141
- .premium-button-style3-after i,
6142
- .premium-button-style3-after svg {
6143
- opacity: 0;
6144
- -webkit-transform: translateX(5px);
6145
- -ms-transform: translateX(5px);
6146
- transform: translateX(5px);
6147
- -webkit-transition: all 0.5s ease-in-out;
6148
- transition: all 0.5s ease-in-out;
6149
- -webkit-transform: translateX(-5px);
6150
- -ms-transform: translateX(-5px);
6151
- transform: translateX(-5px);
6152
- }
6153
-
6154
- .premium-button-style3-after:hover i,
6155
- .premium-button-style3-after:hover svg {
6156
- opacity: 1;
6157
- }
6158
-
6159
- .premium-button-style3-before:hover i,
6160
- .premium-button-style3-before:hover svg {
6161
- opacity: 1;
6162
- }
6163
-
6164
- .premium-button-text-icon-wrapper {
6165
- -js-display: flex;
6166
- display: -webkit-box;
6167
- display: -webkit-flex;
6168
- display: -moz-box;
6169
- display: -ms-flexbox;
6170
- display: flex;
6171
- -webkit-box-pack: center;
6172
- -webkit-justify-content: center;
6173
- -moz-box-pack: center;
6174
- -ms-flex-pack: center;
6175
- justify-content: center;
6176
- -webkit-box-align: center;
6177
- -webkit-align-items: center;
6178
- -moz-box-align: center;
6179
- -ms-flex-align: center;
6180
- align-items: center;
6181
- -webkit-transition: all 0.2s ease-in-out;
6182
- transition: all 0.2s ease-in-out;
6183
- }
6184
-
6185
- .premium-button-text-icon-wrapper span,
6186
- .premium-button-text-icon-wrapper i,
6187
- .premium-button-text-icon-wrapper svg {
6188
- -webkit-transition: all 0.2s ease-in-out;
6189
- transition: all 0.2s ease-in-out;
6190
- }
6191
-
6192
- .premium-button-style4-icon-wrapper {
6193
- position: absolute;
6194
- z-index: 2;
6195
- width: 100%;
6196
- text-align: center;
6197
- -js-display: flex;
6198
- display: -webkit-box;
6199
- display: -webkit-flex;
6200
- display: -moz-box;
6201
- display: -ms-flexbox;
6202
- display: flex;
6203
- -webkit-box-align: center;
6204
- -webkit-align-items: center;
6205
- -moz-box-align: center;
6206
- -ms-flex-align: center;
6207
- align-items: center;
6208
- -webkit-box-pack: center;
6209
- -webkit-justify-content: center;
6210
- -moz-box-pack: center;
6211
- -ms-flex-pack: center;
6212
- justify-content: center;
6213
- height: 100%;
6214
- opacity: 0;
6215
- -webkit-transition: all 0.3s ease-in-out;
6216
- transition: all 0.3s ease-in-out;
6217
- }
6218
-
6219
- .premium-button-style4-icon-wrapper.top {
6220
- bottom: -100%;
6221
- right: 0;
6222
- }
6223
-
6224
- .premium-button-style4-icon-wrapper.bottom {
6225
- top: -100%;
6226
- right: 0;
6227
- }
6228
-
6229
- .premium-button-style4-icon-wrapper.left {
6230
- top: 0;
6231
- right: -100%;
6232
- }
6233
-
6234
- .premium-button-style4-icon-wrapper.right {
6235
- top: 0;
6236
- left: -100%;
6237
- }
6238
-
6239
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
6240
- top: 0;
6241
- opacity: 1;
6242
- }
6243
-
6244
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
6245
- bottom: 0;
6246
- opacity: 1;
6247
- }
6248
-
6249
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
6250
- right: 0;
6251
- opacity: 1;
6252
- }
6253
-
6254
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
6255
- left: 0;
6256
- opacity: 1;
6257
- }
6258
-
6259
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
6260
- -webkit-transform: translateY(100%);
6261
- -ms-transform: translateY(100%);
6262
- transform: translateY(100%);
6263
- opacity: 0;
6264
- }
6265
-
6266
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
6267
- -webkit-transform: translateY(-100%);
6268
- -ms-transform: translateY(-100%);
6269
- transform: translateY(-100%);
6270
- opacity: 0;
6271
- }
6272
-
6273
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
6274
- -webkit-transform: translateX(-100%);
6275
- -ms-transform: translateX(-100%);
6276
- transform: translateX(-100%);
6277
- opacity: 0;
6278
- }
6279
-
6280
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
6281
- -webkit-transform: translateX(100%);
6282
- -ms-transform: translateX(100%);
6283
- transform: translateX(100%);
6284
- opacity: 0;
6285
- }
6286
-
6287
- .premium-button-style6:before {
6288
- content: "";
6289
- position: absolute;
6290
- right: 50%;
6291
- top: 50%;
6292
- width: 100px;
6293
- height: 100px;
6294
- -webkit-border-radius: 100%;
6295
- border-radius: 100%;
6296
- -webkit-transform: translate(50%, -50%) scale(0);
6297
- -ms-transform: translate(50%, -50%) scale(0);
6298
- transform: translate(50%, -50%) scale(0);
6299
- -webkit-transition: all 0.3s ease-in-out;
6300
- transition: all 0.3s ease-in-out;
6301
- }
6302
-
6303
- .premium-button-style6:hover:before {
6304
- -webkit-transform: translate(50%, -50%) scale(3);
6305
- -ms-transform: translate(50%, -50%) scale(3);
6306
- transform: translate(50%, -50%) scale(3);
6307
- }
6308
-
6309
- .premium-button-style6 .premium-button-text-icon-wrapper {
6310
- position: relative;
6311
- z-index: 1;
6312
- }
6313
-
6314
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
6315
- position: absolute;
6316
- z-index: 0;
6317
- top: 0;
6318
- right: 0;
6319
- width: 0px;
6320
- height: 0px;
6321
- -webkit-border-radius: 50%;
6322
- border-radius: 50%;
6323
- display: block;
6324
- -webkit-transform: translate(50%, -50%);
6325
- -ms-transform: translate(50%, -50%);
6326
- transform: translate(50%, -50%);
6327
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6328
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6329
- }
6330
-
6331
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
6332
- width: 225%;
6333
- height: 560px;
6334
- }
6335
-
6336
- .premium-mouse-detect-yes .premium-button-style6:before {
6337
- width: 0;
6338
- height: 0;
6339
- }
6340
-
6341
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
6342
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6343
- -webkit-transition: width 0.3s ease-out 0.15s;
6344
- transition: width 0.3s ease-out 0.15s;
6345
- }
6346
-
6347
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6348
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
6349
- -webkit-transition: width 0.3s ease-out 0s;
6350
- transition: width 0.3s ease-out 0s;
6351
- }
6352
-
6353
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6354
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6355
- -webkit-transition: height 0.3s ease-out 0.15s;
6356
- transition: height 0.3s ease-out 0.15s;
6357
- }
6358
-
6359
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
6360
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
6361
- -webkit-transition: height 0.3s ease-out 0s;
6362
- transition: height 0.3s ease-out 0s;
6363
- }
6364
-
6365
- .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
6366
- -webkit-transition-delay: 0s;
6367
- transition-delay: 0s;
6368
- }
6369
-
6370
- .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
6371
- -webkit-transition-delay: 0.15s;
6372
- transition-delay: 0.15s;
6373
- }
6374
-
6375
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6376
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
6377
- content: "";
6378
- position: absolute;
6379
- left: 0;
6380
- top: 0;
6381
- right: 0;
6382
- height: 0;
6383
- z-index: -1;
6384
- }
6385
-
6386
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
6387
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6388
- content: "";
6389
- position: absolute;
6390
- left: 0;
6391
- bottom: 0;
6392
- right: 0;
6393
- height: 0;
6394
- z-index: -1;
6395
- }
6396
-
6397
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6398
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
6399
- content: "";
6400
- position: absolute;
6401
- right: 0;
6402
- top: 0;
6403
- bottom: 0;
6404
- width: 0;
6405
- z-index: -1;
6406
- }
6407
-
6408
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
6409
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6410
- content: "";
6411
- position: absolute;
6412
- left: 0;
6413
- top: 0;
6414
- bottom: 0;
6415
- width: 0;
6416
- z-index: -1;
6417
- }
6418
-
6419
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
6420
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
6421
- height: 100%;
6422
- top: 0;
6423
- }
6424
-
6425
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
6426
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
6427
- height: 100%;
6428
- bottom: 0;
6429
- }
6430
-
6431
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
6432
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
6433
- width: 100%;
6434
- left: 0;
6435
- }
6436
-
6437
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
6438
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
6439
- width: 100%;
6440
- right: 0;
6441
- }
6442
-
6443
- /**************** Premium Contact Form7 **********/
6444
- /*************************************************/
6445
- .premium-contact-form-anim-yes .wpcf7-span::after {
6446
- display: block;
6447
- height: 2px;
6448
- content: "";
6449
- top: -2px;
6450
- position: relative;
6451
- width: 0px;
6452
- -webkit-transition: all ease-in-out 0.3s;
6453
- transition: all ease-in-out 0.3s;
6454
- }
6455
-
6456
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
6457
- width: 100%;
6458
- }
6459
-
6460
- /**************** Premium Image Button ***********/
6461
- /*************************************************/
6462
- .premium-image-button {
6463
- display: inline-block;
6464
- position: relative;
6465
- overflow: hidden;
6466
- background: #6ec1e4;
6467
- cursor: pointer;
6468
- -webkit-transition: all 0.2s ease-in-out !important;
6469
- transition: all 0.2s ease-in-out !important;
6470
- }
6471
-
6472
- /*Default background for slide styles*/
6473
- .premium-image-button:hover,
6474
- .premium-image-button-style4-icon-wrapper,
6475
- .premium-image-button-style1-top:before,
6476
- .premium-image-button-style1-bottom:before,
6477
- .premium-image-button-style1-left:before,
6478
- .premium-image-button-style1-right:before {
6479
- background-color: #54595f;
6480
- }
6481
-
6482
- .premium-image-button.premium-image-button-sm {
6483
- padding: 12px 24px;
6484
- font-size: 14px;
6485
- line-height: 1;
6486
- }
6487
-
6488
- .premium-image-button.premium-image-button-md {
6489
- padding: 14px 26px;
6490
- font-size: 16px;
6491
- line-height: 1.2;
6492
- }
6493
-
6494
- .premium-image-button.premium-image-button-lg {
6495
- padding: 16px 28px;
6496
- font-size: 18px;
6497
- line-height: 1.3333;
6498
- }
6499
-
6500
- .premium-image-button.premium-image-button-block {
6501
- font-size: 15px;
6502
- line-height: 1;
6503
- padding: 12px 24px;
6504
- width: 100%;
6505
- text-align: center;
6506
- }
6507
-
6508
- .premium-image-button-text-icon-wrapper {
6509
- display: -webkit-box;
6510
- display: -webkit-flex;
6511
- display: -ms-flexbox;
6512
- -js-display: flex;
6513
- display: -moz-box;
6514
- display: flex;
6515
- -webkit-box-pack: center;
6516
- -webkit-justify-content: center;
6517
- -moz-box-pack: center;
6518
- -ms-flex-pack: center;
6519
- justify-content: center;
6520
- -webkit-box-align: center;
6521
- -webkit-align-items: center;
6522
- -moz-box-align: center;
6523
- -ms-flex-align: center;
6524
- align-items: center;
6525
- position: relative;
6526
- z-index: 3;
6527
- }
6528
-
6529
- .premium-image-button-text-icon-wrapper span,
6530
- .premium-image-button-text-icon-wrapper,
6531
- .premium-image-button-text-icon-wrapper i,
6532
- .premium-image-button-text-icon-wrapper svg {
6533
- -webkit-transition: all 0.2s ease-in-out;
6534
- transition: all 0.2s ease-in-out;
6535
- }
6536
-
6537
- .premium-image-button-style1-bottom:before,
6538
- .premium-image-button-style1-top:before,
6539
- .premium-image-button-style1-left:before,
6540
- .premium-image-button-style1-right:before {
6541
- -webkit-transition: all 0.2s ease-in-out;
6542
- transition: all 0.2s ease-in-out;
6543
- }
6544
-
6545
- .premium-image-button-style1-bottom:before {
6546
- content: "";
6547
- position: absolute;
6548
- width: 100%;
6549
- height: 0;
6550
- top: 0;
6551
- right: 0;
6552
- }
6553
-
6554
- .premium-image-button-style1-top:before {
6555
- content: "";
6556
- position: absolute;
6557
- width: 100%;
6558
- height: 0;
6559
- bottom: 0;
6560
- right: 0;
6561
- }
6562
-
6563
- .premium-image-button-style1-right:before {
6564
- content: "";
6565
- position: absolute;
6566
- width: 0;
6567
- height: 100%;
6568
- bottom: 0;
6569
- right: 0;
6570
- }
6571
-
6572
- .premium-image-button-style1-left:before {
6573
- content: "";
6574
- position: absolute;
6575
- width: 0;
6576
- height: 100%;
6577
- top: 0;
6578
- left: 0;
6579
- }
6580
-
6581
- .premium-image-button-style1-bottom:hover:before {
6582
- height: 100%;
6583
- }
6584
-
6585
- .premium-image-button-style1-top:hover:before {
6586
- height: 100%;
6587
- }
6588
-
6589
- .premium-image-button-style1-right:hover:before {
6590
- width: 100%;
6591
- }
6592
-
6593
- .premium-image-button-style1-left:hover:before {
6594
- width: 100%;
6595
- }
6596
-
6597
- .premium-image-button-diagonal-top,
6598
- .premium-image-button-diagonal-bottom,
6599
- .premium-image-button-diagonal-left,
6600
- .premium-image-button-diagonal-right {
6601
- z-index: 10;
6602
- }
6603
-
6604
- .premium-image-button-diagonal-top:before,
6605
- .premium-image-button-diagonal-bottom:before,
6606
- .premium-image-button-diagonal-left:before,
6607
- .premium-image-button-diagonal-right:before {
6608
- position: absolute;
6609
- top: 0px;
6610
- right: 0px;
6611
- width: 100%;
6612
- height: 100%;
6613
- content: "";
6614
- z-index: 1;
6615
- background: rgba(255, 255, 255, 0.2);
6616
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6617
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6618
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6619
- -webkit-transition: all 0.8s ease-out;
6620
- transition: all 0.8s ease-out;
6621
- }
6622
-
6623
- .premium-image-button-diagonal-right:hover:before,
6624
- .premium-image-button-diagonal-left:before {
6625
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6626
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6627
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6628
- }
6629
-
6630
- .premium-image-button-diagonal-left:hover:before,
6631
- .premium-image-button-diagonal-right:before {
6632
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6633
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6634
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6635
- }
6636
-
6637
- .premium-image-button-diagonal-top:hover:before,
6638
- .premium-image-button-diagonal-bottom:before {
6639
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6640
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6641
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6642
- }
6643
-
6644
- .premium-image-button-diagonal-bottom:hover:before,
6645
- .premium-image-button-diagonal-top:before {
6646
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6647
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6648
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6649
- }
6650
-
6651
- .premium-image-button-style4-icon-wrapper {
6652
- position: absolute;
6653
- z-index: 2;
6654
- width: 100%;
6655
- text-align: center;
6656
- display: -webkit-box;
6657
- display: -webkit-flex;
6658
- display: -ms-flexbox;
6659
- -js-display: flex;
6660
- display: -moz-box;
6661
- display: flex;
6662
- -webkit-box-align: center;
6663
- -webkit-align-items: center;
6664
- -moz-box-align: center;
6665
- -ms-flex-align: center;
6666
- align-items: center;
6667
- -webkit-box-pack: center;
6668
- -webkit-justify-content: center;
6669
- -moz-box-pack: center;
6670
- -ms-flex-pack: center;
6671
- justify-content: center;
6672
- height: 100%;
6673
- opacity: 0;
6674
- -webkit-transition: all 0.3s ease-in-out;
6675
- transition: all 0.3s ease-in-out;
6676
- }
6677
-
6678
- .premium-image-button-style4-icon-wrapper.top {
6679
- bottom: -100%;
6680
- right: 0;
6681
- }
6682
-
6683
- .premium-image-button-style4-icon-wrapper.bottom {
6684
- top: -100%;
6685
- right: 0;
6686
- }
6687
-
6688
- .premium-image-button-style4-icon-wrapper.left {
6689
- top: 0;
6690
- right: -100%;
6691
- }
6692
-
6693
- .premium-image-button-style4-icon-wrapper.right {
6694
- top: 0;
6695
- left: -100%;
6696
- }
6697
-
6698
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
6699
- top: 0;
6700
- opacity: 1;
6701
- }
6702
-
6703
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
6704
- bottom: 0;
6705
- opacity: 1;
6706
- }
6707
-
6708
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
6709
- right: 0;
6710
- opacity: 1;
6711
- }
6712
-
6713
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
6714
- left: 0;
6715
- opacity: 1;
6716
- }
6717
-
6718
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
6719
- -webkit-transform: translateY(100%);
6720
- -ms-transform: translateY(100%);
6721
- transform: translateY(100%);
6722
- opacity: 0;
6723
- }
6724
-
6725
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
6726
- -webkit-transform: translateY(-100%);
6727
- -ms-transform: translateY(-100%);
6728
- transform: translateY(-100%);
6729
- opacity: 0;
6730
- }
6731
-
6732
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
6733
- -webkit-transform: translateX(-100%);
6734
- -ms-transform: translateX(-100%);
6735
- transform: translateX(-100%);
6736
- opacity: 0;
6737
- }
6738
-
6739
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
6740
- -webkit-transform: translateX(100%);
6741
- -ms-transform: translateX(100%);
6742
- transform: translateX(100%);
6743
- opacity: 0;
6744
- }
6745
-
6746
- .premium-image-button-overlap-effect-horizontal:before,
6747
- .premium-image-button-overlap-effect-vertical:before {
6748
- position: absolute;
6749
- content: "";
6750
- top: 0;
6751
- right: 0;
6752
- width: 100%;
6753
- height: 100%;
6754
- opacity: 0;
6755
- -webkit-transition: all 1s ease-in-out;
6756
- transition: all 1s ease-in-out;
6757
- background: rgba(255, 255, 255, 0.2);
6758
- -webkit-animation-name: premium-overlap-effect-done;
6759
- animation-name: premium-overlap-effect-done;
6760
- -webkit-animation-duration: 1s;
6761
- animation-duration: 1s;
6762
- }
6763
-
6764
- .premium-image-button-overlap-effect-vertical:before {
6765
- -webkit-animation-name: premium-overlap-ver-effect-done;
6766
- animation-name: premium-overlap-ver-effect-done;
6767
- -webkit-animation-duration: 1s;
6768
- animation-duration: 1s;
6769
- }
6770
-
6771
- .premium-image-button-overlap-effect-horizontal:hover:before {
6772
- -webkit-animation-name: premium-overlap-effect;
6773
- animation-name: premium-overlap-effect;
6774
- -webkit-animation-duration: 1s;
6775
- animation-duration: 1s;
6776
- }
6777
-
6778
- .premium-image-button-overlap-effect-vertical:hover:before {
6779
- -webkit-animation-name: premium-overlap-ver-effect;
6780
- animation-name: premium-overlap-ver-effect;
6781
- -webkit-animation-duration: 1s;
6782
- animation-duration: 1s;
6783
- }
6784
-
6785
- @-webkit-keyframes premium-overlap-effect {
6786
- 0% {
6787
- opacity: 0;
6788
- -webkit-transform: rotateY(0deg);
6789
- transform: rotateY(0deg);
6790
- }
6791
-
6792
- 50% {
6793
- opacity: 1;
6794
- -webkit-transform: rotateY(180deg);
6795
- transform: rotateY(180deg);
6796
- }
6797
-
6798
- 100% {
6799
- opacity: 0;
6800
- -webkit-transform: rotateY(360deg);
6801
- transform: rotateY(360deg);
6802
- }
6803
- }
6804
-
6805
- @keyframes premium-overlap-effect {
6806
- 0% {
6807
- opacity: 0;
6808
- -webkit-transform: rotateY(0deg);
6809
- transform: rotateY(0deg);
6810
- }
6811
-
6812
- 50% {
6813
- opacity: 1;
6814
- -webkit-transform: rotateY(180deg);
6815
- transform: rotateY(180deg);
6816
- }
6817
-
6818
- 100% {
6819
- opacity: 0;
6820
- -webkit-transform: rotateY(360deg);
6821
- transform: rotateY(360deg);
6822
- }
6823
- }
6824
-
6825
- @-webkit-keyframes premium-overlap-effect-done {
6826
- 0% {
6827
- opacity: 0;
6828
- -webkit-transform: rotateY(0deg);
6829
- transform: rotateY(0deg);
6830
- }
6831
-
6832
- 50% {
6833
- opacity: 1;
6834
- -webkit-transform: rotateY(180deg);
6835
- transform: rotateY(180deg);
6836
- }
6837
-
6838
- 100% {
6839
- opacity: 0;
6840
- -webkit-transform: rotateY(360deg);
6841
- transform: rotateY(360deg);
6842
- }
6843
- }
6844
-
6845
- @keyframes premium-overlap-effect-done {
6846
- 0% {
6847
- opacity: 0;
6848
- -webkit-transform: rotateY(0deg);
6849
- transform: rotateY(0deg);
6850
- }
6851
-
6852
- 50% {
6853
- opacity: 1;
6854
- -webkit-transform: rotateY(180deg);
6855
- transform: rotateY(180deg);
6856
- }
6857
-
6858
- 100% {
6859
- opacity: 0;
6860
- -webkit-transform: rotateY(360deg);
6861
- transform: rotateY(360deg);
6862
- }
6863
- }
6864
-
6865
- @-webkit-keyframes premium-overlap-ver-effect {
6866
- 0% {
6867
- opacity: 0;
6868
- -webkit-transform: rotateX(0deg);
6869
- transform: rotateX(0deg);
6870
- }
6871
-
6872
- 50% {
6873
- opacity: 1;
6874
- -webkit-transform: rotateX(180deg);
6875
- transform: rotateX(180deg);
6876
- }
6877
-
6878
- 100% {
6879
- opacity: 0;
6880
- -webkit-transform: rotateX(360deg);
6881
- transform: rotateX(360deg);
6882
- }
6883
- }
6884
-
6885
- @keyframes premium-overlap-ver-effect {
6886
- 0% {
6887
- opacity: 0;
6888
- -webkit-transform: rotateX(0deg);
6889
- transform: rotateX(0deg);
6890
- }
6891
-
6892
- 50% {
6893
- opacity: 1;
6894
- -webkit-transform: rotateX(180deg);
6895
- transform: rotateX(180deg);
6896
- }
6897
-
6898
- 100% {
6899
- opacity: 0;
6900
- -webkit-transform: rotateX(360deg);
6901
- transform: rotateX(360deg);
6902
- }
6903
- }
6904
-
6905
- @-webkit-keyframes premium-overlap-ver-effect-done {
6906
- 0% {
6907
- opacity: 0;
6908
- -webkit-transform: rotateX(0deg);
6909
- transform: rotateX(0deg);
6910
- }
6911
-
6912
- 50% {
6913
- opacity: 1;
6914
- -webkit-transform: rotateX(180deg);
6915
- transform: rotateX(180deg);
6916
- }
6917
-
6918
- 100% {
6919
- opacity: 0;
6920
- -webkit-transform: rotateX(360deg);
6921
- transform: rotateX(360deg);
6922
- }
6923
- }
6924
-
6925
- @keyframes premium-overlap-ver-effect-done {
6926
- 0% {
6927
- opacity: 0;
6928
- -webkit-transform: rotateX(0deg);
6929
- transform: rotateX(0deg);
6930
- }
6931
-
6932
- 50% {
6933
- opacity: 1;
6934
- -webkit-transform: rotateX(180deg);
6935
- transform: rotateX(180deg);
6936
- }
6937
-
6938
- 100% {
6939
- opacity: 0;
6940
- -webkit-transform: rotateX(360deg);
6941
- transform: rotateX(360deg);
6942
- }
6943
- }
6944
-
6945
- /**************** Premium Grid *******************/
6946
- /*************************************************/
6947
- .premium-img-gallery-filter,
6948
- .premium-blog-filter {
6949
- display: -webkit-box;
6950
- display: -webkit-flex;
6951
- display: -ms-flexbox;
6952
- -js-display: flex;
6953
- display: -moz-box;
6954
- display: flex;
6955
- -webkit-box-align: center;
6956
- -webkit-align-items: center;
6957
- -moz-box-align: center;
6958
- -ms-flex-align: center;
6959
- align-items: center;
6960
- -webkit-box-pack: center;
6961
- -webkit-justify-content: center;
6962
- -moz-box-pack: center;
6963
- -ms-flex-pack: center;
6964
- justify-content: center;
6965
- }
6966
-
6967
- .premium-img-gallery {
6968
- clear: both;
6969
- overflow: hidden;
6970
- }
6971
-
6972
- .premium-gallery-container .premium-gallery-item {
6973
- padding: 10px;
6974
- float: right;
6975
- /* Google Chrome isotope issue */
6976
- }
6977
-
6978
- .premium-gallery-container .grid-sizer {
6979
- width: 33.33%;
6980
- }
6981
-
6982
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
6983
- .premium-blog-filter .premium-blog-filters-container li a.category {
6984
- outline: none;
6985
- text-decoration: none;
6986
- -webkit-border-radius: 75px;
6987
- border-radius: 75px;
6988
- margin: 15px 5px 20px;
6989
- padding: 7px 20px;
6990
- -webkit-transition: all 0.3s ease-in-out;
6991
- transition: all 0.3s ease-in-out;
6992
- }
6993
-
6994
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
6995
- -webkit-transition: all 0.3s ease-in-out;
6996
- transition: all 0.3s ease-in-out;
6997
- }
6998
-
6999
- .pa-gallery-img {
7000
- position: relative;
7001
- }
7002
-
7003
- .pa-gallery-img .pa-gallery-whole-link {
7004
- position: absolute;
7005
- top: 0;
7006
- right: 0;
7007
- width: 100%;
7008
- height: 100%;
7009
- }
7010
-
7011
- .pa-gallery-img.style2 .pa-gallery-whole-link {
7012
- z-index: 99;
7013
- }
7014
-
7015
- .pa-gallery-img-container {
7016
- overflow: hidden;
7017
- -webkit-backface-visibility: hidden;
7018
- -moz-backface-visibility: hidden;
7019
- -webkit-transform: translate3d(0, 0, 0);
7020
- transform: translate3d(0, 0, 0);
7021
- }
7022
-
7023
- .pa-gallery-img-container img {
7024
- display: block;
7025
- width: 100%;
7026
- -webkit-transition: all 0.3s ease-in-out;
7027
- transition: all 0.3s ease-in-out;
7028
- }
7029
-
7030
- .premium-img-gallery.gray img {
7031
- -webkit-filter: grayscale(100%);
7032
- filter: grayscale(100%);
7033
- }
7034
-
7035
- .premium-img-gallery.zoomout img,
7036
- .premium-img-gallery.scale img {
7037
- -webkit-transform: scale(1.2);
7038
- -ms-transform: scale(1.2);
7039
- transform: scale(1.2);
7040
- }
7041
-
7042
- .premium-img-gallery.sepia img {
7043
- -webkit-filter: sepia(30%);
7044
- filter: sepia(30%);
7045
- }
7046
-
7047
- .premium-img-gallery.bright img {
7048
- -webkit-filter: brightness(1);
7049
- filter: brightness(1);
7050
- }
7051
-
7052
- .premium-img-gallery.trans img {
7053
- -webkit-transform: translateX(15px) scale(1.1);
7054
- -ms-transform: translateX(15px) scale(1.1);
7055
- transform: translateX(15px) scale(1.1);
7056
- }
7057
-
7058
- .pa-gallery-img .pa-gallery-magnific-image,
7059
- .pa-gallery-img .pa-gallery-img-link {
7060
- outline: none;
7061
- }
7062
-
7063
- .pa-gallery-img .pa-gallery-magnific-image span,
7064
- .pa-gallery-img .pa-gallery-img-link span {
7065
- line-height: 1;
7066
- display: inline-block;
7067
- opacity: 0;
7068
- margin: 0 5px;
7069
- padding: 15px;
7070
- -webkit-border-radius: 50%;
7071
- border-radius: 50%;
7072
- }
7073
-
7074
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
7075
- .pa-gallery-img.style2 .pa-gallery-img-link span {
7076
- margin: 0 5px 20px;
7077
- }
7078
-
7079
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
7080
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
7081
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
7082
- }
7083
-
7084
- .pa-gallery-img:hover .pa-gallery-img-link span {
7085
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7086
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7087
- }
7088
-
7089
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
7090
- .pa-gallery-img:hover .pa-gallery-img-link span,
7091
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
7092
- opacity: 1;
7093
- }
7094
-
7095
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
7096
- .premium-blog-filter ul.premium-blog-filters-container {
7097
- text-align: center;
7098
- margin: 0;
7099
- padding: 0;
7100
- }
7101
-
7102
- .premium-img-gallery-filter .premium-gallery-cats-container li,
7103
- .premium-blog-filter .premium-blog-filters-container li {
7104
- list-style: none;
7105
- display: -webkit-inline-box;
7106
- display: -webkit-inline-flex;
7107
- display: -ms-inline-flexbox;
7108
- -js-display: inline-flex;
7109
- display: -moz-inline-box;
7110
- display: inline-flex;
7111
- }
7112
-
7113
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
7114
- -webkit-transform: scale(1.1);
7115
- -ms-transform: scale(1.1);
7116
- transform: scale(1.1);
7117
- }
7118
-
7119
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
7120
- -webkit-transform: scale(1);
7121
- -ms-transform: scale(1);
7122
- transform: scale(1);
7123
- }
7124
-
7125
- .premium-img-gallery.scale .pa-gallery-img:hover img {
7126
- -webkit-transform: scale(1.3) rotate(-5deg);
7127
- -ms-transform: scale(1.3) rotate(-5deg);
7128
- transform: scale(1.3) rotate(-5deg);
7129
- }
7130
-
7131
- .premium-img-gallery.gray .pa-gallery-img:hover img {
7132
- -webkit-filter: grayscale(0%);
7133
- filter: grayscale(0%);
7134
- }
7135
-
7136
- .premium-img-gallery.blur .pa-gallery-img:hover img {
7137
- -webkit-filter: blur(3px);
7138
- filter: blur(3px);
7139
- }
7140
-
7141
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
7142
- -webkit-filter: sepia(0%);
7143
- filter: sepia(0%);
7144
- }
7145
-
7146
- .premium-img-gallery.trans .pa-gallery-img:hover img {
7147
- -webkit-transform: translateX(0px) scale(1.1);
7148
- -ms-transform: translateX(0px) scale(1.1);
7149
- transform: translateX(0px) scale(1.1);
7150
- }
7151
-
7152
- .premium-img-gallery.bright .pa-gallery-img:hover img {
7153
- -webkit-filter: brightness(1.2);
7154
- filter: brightness(1.2);
7155
- }
7156
-
7157
- .pa-gallery-img .premium-gallery-caption {
7158
- padding: 10px;
7159
- }
7160
-
7161
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
7162
- margin-bottom: 0;
7163
- }
7164
-
7165
- .pa-gallery-img.style1 {
7166
- overflow: hidden;
7167
- }
7168
-
7169
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
7170
- position: absolute;
7171
- top: 0;
7172
- right: 0;
7173
- width: 100%;
7174
- height: 100%;
7175
- -webkit-transition: all 0.3s ease-in-out;
7176
- transition: all 0.3s ease-in-out;
7177
- }
7178
-
7179
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
7180
- position: absolute;
7181
- top: 33.33%;
7182
- width: 100%;
7183
- text-align: center;
7184
- -webkit-transform: translateY(-50%);
7185
- -ms-transform: translateY(-50%);
7186
- transform: translateY(-50%);
7187
- z-index: 999;
7188
- }
7189
-
7190
- .premium-blog-post-container .premium-blog-entry-container {
7191
- margin: 0 !important;
7192
- }
7193
-
7194
- .pa-gallery-img.style1 .premium-gallery-caption {
7195
- position: absolute;
7196
- top: auto;
7197
- left: 0;
7198
- right: 0;
7199
- width: 100%;
7200
- -webkit-transition: all 500ms ease 0s;
7201
- transition: all 500ms ease 0s;
7202
- -webkit-transform: translate3d(0, 100%, 0);
7203
- -ms-transform: translate3d(0, 100%, 0);
7204
- transform: translate3d(0, 100%, 0);
7205
- }
7206
-
7207
- .pa-gallery-img.default .premium-gallery-caption {
7208
- position: absolute;
7209
- top: auto;
7210
- left: 0;
7211
- right: 0;
7212
- width: 100%;
7213
- bottom: 0;
7214
- }
7215
-
7216
- .pa-gallery-img.style1:hover .premium-gallery-caption {
7217
- -webkit-transform: translate3d(0, 0, 0);
7218
- -ms-transform: translate3d(0, 0, 0);
7219
- transform: translate3d(0, 0, 0);
7220
- bottom: -1px !important;
7221
- }
7222
-
7223
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
7224
- position: absolute;
7225
- top: 0;
7226
- right: 0;
7227
- width: 100%;
7228
- height: 100%;
7229
- opacity: 0;
7230
- -webkit-backface-visibility: hidden;
7231
- backface-visibility: hidden;
7232
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
7233
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
7234
- transition: opacity 0.3s, -webkit-transform 0.3s;
7235
- transition: transform 0.3s, opacity 0.3s;
7236
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
7237
- z-index: 1;
7238
- background-color: rgba(108, 191, 226, 0.68);
7239
- display: -webkit-box;
7240
- display: -webkit-flex;
7241
- display: -ms-flexbox;
7242
- -js-display: flex;
7243
- display: -moz-box;
7244
- display: flex;
7245
- text-align: center;
7246
- -webkit-box-align: center;
7247
- -webkit-align-items: center;
7248
- -moz-box-align: center;
7249
- -ms-flex-align: center;
7250
- align-items: center;
7251
- }
7252
-
7253
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
7254
- width: 100%;
7255
- }
7256
-
7257
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
7258
- opacity: 1;
7259
- -webkit-transform: translate(-15px, 15px);
7260
- -ms-transform: translate(-15px, 15px);
7261
- transform: translate(-15px, 15px);
7262
- }
7263
-
7264
- .premium-clearfix {
7265
- clear: both;
7266
- }
7267
-
7268
- .premium-gallery-container .pa-gallery-item {
7269
- padding: 10px;
7270
- }
7271
-
7272
- /**
7273
- * Metro Layout
7274
- */
7275
- .premium-img-gallery-metro .premium-gallery-item {
7276
- overflow: hidden;
7277
- }
7278
-
7279
- .premium-img-gallery-metro .pa-gallery-img {
7280
- height: 100%;
7281
- }
7282
-
7283
- .premium-img-gallery-metro .pa-gallery-img-container {
7284
- height: 100%;
7285
- }
7286
-
7287
- .premium-img-gallery-metro .pa-gallery-img-container img {
7288
- min-height: 100%;
7289
- width: 100%;
7290
- -o-object-fit: fill;
7291
- object-fit: fill;
7292
- }
7293
-
7294
- .premium-img-gallery .premium-gallery-item-hidden {
7295
- visibility: hidden;
7296
- width: 0 !important;
7297
- height: 0 !important;
7298
- margin: 0 !important;
7299
- padding: 0 !important;
7300
- }
7301
-
7302
- .premium-gallery-load-more .premium-gallery-load-more-btn {
7303
- -webkit-box-shadow: none;
7304
- box-shadow: none;
7305
- text-shadow: none;
7306
- border: none;
7307
- outline: none;
7308
- -webkit-box-align: center;
7309
- -ms-flex-align: center;
7310
- -webkit-align-items: center;
7311
- -moz-box-align: center;
7312
- align-items: center;
7313
- vertical-align: bottom;
7314
- cursor: pointer;
7315
- line-height: 1;
7316
- font-style: normal;
7317
- font-weight: normal;
7318
- background-image: none;
7319
- color: #fff;
7320
- -webkit-transition: all 0.3s ease-in-out;
7321
- transition: all 0.3s ease-in-out;
7322
- }
7323
-
7324
- .premium-gallery-load-more-btn {
7325
- display: -webkit-inline-box;
7326
- display: -webkit-inline-flex;
7327
- display: -ms-inline-flexbox;
7328
- -js-display: inline-flex;
7329
- display: -moz-inline-box;
7330
- display: inline-flex;
7331
- -webkit-box-align: center;
7332
- -webkit-align-items: center;
7333
- -moz-box-align: center;
7334
- -ms-flex-align: center;
7335
- align-items: center;
7336
- }
7337
-
7338
- .premium-loader {
7339
- border: 3px solid #f3f3f3;
7340
- border-top-width: 3px;
7341
- border-top-style: solid;
7342
- border-top-color: rgb(243, 243, 243);
7343
- -webkit-border-radius: 50%;
7344
- border-radius: 50%;
7345
- border-top: 3px solid;
7346
- border-top-color: #bbb;
7347
- width: 30px;
7348
- height: 30px;
7349
- -webkit-animation: spin 2s linear infinite;
7350
- animation: spin 2s linear infinite;
7351
- margin: 0 auto;
7352
- }
7353
-
7354
- .premium-gallery-load-more-btn div {
7355
- margin-right: 3px;
7356
- }
7357
-
7358
- .premium-gallery-load-more-btn .premium-loader {
7359
- display: inline-block;
7360
- width: 20px;
7361
- height: 20px;
7362
- }
7363
-
7364
- /** * Video */
7365
- .pa-gallery-img .pa-gallery-lightbox-wrap {
7366
- display: inline-block;
7367
- }
7368
-
7369
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
7370
- .pa-gallery-img .pa-gallery-video-icon {
7371
- cursor: pointer;
7372
- }
7373
-
7374
- .pa-gallery-img-container iframe,
7375
- .pa-gallery-img-container video {
7376
- position: absolute;
7377
- visibility: hidden;
7378
- top: 0;
7379
- right: 0;
7380
- max-width: 100%;
7381
- width: 100%;
7382
- height: 100%;
7383
- margin: 0;
7384
- line-height: 1;
7385
- border: none;
7386
- }
7387
-
7388
- .pa-gallery-img-container video {
7389
- -o-object-fit: contain;
7390
- object-fit: contain;
7391
- }
7392
-
7393
- .pa-gallery-icons-inner-container svg,
7394
- .pa-gallery-icons-caption-cell svg {
7395
- width: 14px;
7396
- height: 14px;
7397
- }
7398
-
7399
- .premium-gallery-gradient-layer {
7400
- position: absolute;
7401
- bottom: 40px;
7402
- width: 100%;
7403
- height: 20px;
7404
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
7405
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7406
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7407
- }
7408
-
7409
- @-webkit-keyframes spin {
7410
- 0% {
7411
- -webkit-transform: rotate(0deg);
7412
- }
7413
-
7414
- 100% {
7415
- -webkit-transform: rotate(-360deg);
7416
- }
7417
- }
7418
-
7419
- @keyframes spin {
7420
- 0% {
7421
- -webkit-transform: rotate(0deg);
7422
- transform: rotate(0deg);
7423
- }
7424
-
7425
- 100% {
7426
- -webkit-transform: rotate(-360deg);
7427
- transform: rotate(-360deg);
7428
- }
7429
- }
7430
-
7431
- /************ Premium Vertical Scroll ************/
7432
- /*************************************************/
7433
- .premium-vscroll-inner {
7434
- position: relative;
7435
- /* overflow: hidden;
7436
- */
7437
- min-height: 100%;
7438
- }
7439
-
7440
- .premium-vscroll-inner .premium-vscroll-dots {
7441
- position: fixed;
7442
- z-index: 100;
7443
- opacity: 1;
7444
- margin-top: -32px;
7445
- -webkit-transition: all 0.3s ease-in-out;
7446
- transition: all 0.3s ease-in-out;
7447
- }
7448
-
7449
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7450
- opacity: 1;
7451
- -webkit-transition: all 0.3s ease-in-out;
7452
- transition: all 0.3s ease-in-out;
7453
- }
7454
-
7455
- .premium-vscroll-inner .premium-vscroll-dots,
7456
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
7457
- opacity: 0;
7458
- visibility: hidden;
7459
- }
7460
-
7461
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
7462
- opacity: 1;
7463
- visibility: visible;
7464
- }
7465
-
7466
- .premium-vscroll-dots.middle {
7467
- top: 50%;
7468
- }
7469
-
7470
- .premium-vscroll-dots.top {
7471
- top: 40px;
7472
- }
7473
-
7474
- .premium-vscroll-dots.bottom {
7475
- bottom: 30px;
7476
- }
7477
-
7478
- .premium-vscroll-dots.right {
7479
- left: 17px;
7480
- }
7481
-
7482
- .premium-vscroll-dots.left {
7483
- right: 17px;
7484
- }
7485
-
7486
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
7487
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7488
- margin: 0 !important;
7489
- padding: 0;
7490
- }
7491
-
7492
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
7493
- width: 14px;
7494
- height: 13px;
7495
- margin: 7px;
7496
- position: relative;
7497
- display: -webkit-box;
7498
- display: -webkit-flex;
7499
- display: -ms-flexbox;
7500
- -js-display: flex;
7501
- display: -moz-box;
7502
- display: flex;
7503
- -webkit-box-pack: center;
7504
- -ms-flex-pack: center;
7505
- -webkit-justify-content: center;
7506
- -moz-box-pack: center;
7507
- justify-content: center;
7508
- -webkit-box-align: center;
7509
- -ms-flex-align: center;
7510
- -webkit-align-items: center;
7511
- -moz-box-align: center;
7512
- align-items: center;
7513
- overflow: visible;
7514
- }
7515
-
7516
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
7517
- display: block;
7518
- position: relative;
7519
- z-index: 1;
7520
- width: 100%;
7521
- height: 100%;
7522
- cursor: pointer;
7523
- text-decoration: none;
7524
- }
7525
-
7526
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
7527
- top: 2px;
7528
- right: 2.5px;
7529
- width: 8px;
7530
- height: 8px;
7531
- border: 1px solid #000;
7532
- -webkit-border-radius: 50%;
7533
- border-radius: 50%;
7534
- position: absolute;
7535
- z-index: 1;
7536
- -webkit-transition: all 0.3s ease-in-out;
7537
- transition: all 0.3s ease-in-out;
7538
- }
7539
-
7540
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
7541
- -webkit-transform: scale(1.6);
7542
- -ms-transform: scale(1.6);
7543
- transform: scale(1.6);
7544
- }
7545
-
7546
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
7547
- position: absolute;
7548
- color: #fff;
7549
- font-size: 14px;
7550
- font-family: arial, helvetica, sans-serif;
7551
- white-space: nowrap;
7552
- max-width: 220px;
7553
- padding-right: 0.4em;
7554
- padding-left: 0.4em;
7555
- }
7556
-
7557
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
7558
- left: 27px;
7559
- }
7560
-
7561
- /* * Lines */
7562
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
7563
- width: 4px;
7564
- height: 30px;
7565
- }
7566
-
7567
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
7568
- width: 100%;
7569
- height: 100%;
7570
- -webkit-border-radius: 0;
7571
- border-radius: 0;
7572
- }
7573
-
7574
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
7575
- -webkit-transform: scale(1);
7576
- -ms-transform: scale(1);
7577
- transform: scale(1);
7578
- }
7579
-
7580
- @media (max-width: 768px) {
7581
- .premium-vscroll-dots.right {
7582
- left: 7px;
7583
- }
7584
-
7585
- .premium-vscroll-dots.left {
7586
- right: 7px;
7587
- }
7588
- }
7589
-
7590
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
7591
- position: absolute;
7592
- top: 50%;
7593
- content: "";
7594
- right: -webkit-calc(100% - 1px);
7595
- right: calc(100% - 1px);
7596
- width: 10px;
7597
- height: 0;
7598
- border-top: 6px solid transparent;
7599
- border-bottom: 6px solid transparent;
7600
- border-right: 6px solid;
7601
- -webkit-transform: translateY(-50%);
7602
- -ms-transform: translateY(-50%);
7603
- transform: translateY(-50%);
7604
- }
7605
-
7606
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
7607
- position: absolute;
7608
- top: 50%;
7609
- content: "";
7610
- left: -webkit-calc(100% - 1px);
7611
- left: calc(100% - 1px);
7612
- width: 10px;
7613
- height: 0;
7614
- border-top: 6px solid transparent;
7615
- border-bottom: 6px solid transparent;
7616
- border-left: 6px solid;
7617
- -webkit-transform: translateY(-50%);
7618
- -ms-transform: translateY(-50%);
7619
- transform: translateY(-50%);
7620
- }
7621
-
7622
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
7623
- right: 27px;
7624
- }
7625
-
7626
- .premium-vscroll-nav-menu {
7627
- position: fixed;
7628
- top: 20px;
7629
- height: 40px;
7630
- z-index: 100;
7631
- padding: 0;
7632
- margin: 0;
7633
- }
7634
-
7635
- .premium-vscroll-nav-menu.left {
7636
- right: 0;
7637
- }
7638
-
7639
- .premium-vscroll-nav-menu.right {
7640
- left: 0;
7641
- }
7642
-
7643
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
7644
- display: inline-block;
7645
- margin: 10px;
7646
- color: #000;
7647
- background: #fff;
7648
- background: rgba(255, 255, 255, 0.3);
7649
- }
7650
-
7651
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
7652
- padding: 9px 18px;
7653
- display: block;
7654
- cursor: pointer;
7655
- }
7656
-
7657
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
7658
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
7659
- color: #000;
7660
- }
7661
-
7662
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
7663
- .multiscroll-nav li a:focus {
7664
- outline: none;
7665
- }
7666
-
7667
- .premium-vscroll-temp .slimScrollBar {
7668
- visibility: hidden;
7669
- }
7670
-
7671
- /************ Premium Image Scroll ***************/
7672
- /*************************************************/
7673
- .premium-image-scroll-section,
7674
- .premium-image-scroll-container {
7675
- -webkit-transition: all 0.3s ease-in-out;
7676
- transition: all 0.3s ease-in-out;
7677
- }
7678
-
7679
- .premium-image-scroll-section {
7680
- position: relative;
7681
- overflow: hidden;
7682
- width: 100%;
7683
- -webkit-mask-image: -webkit-radial-gradient(white, black);
7684
- }
7685
-
7686
- .premium-image-scroll-container {
7687
- width: 100%;
7688
- }
7689
-
7690
- .premium-image-scroll-container .premium-image-scroll-mask-media {
7691
- -webkit-mask-repeat: no-repeat;
7692
- mask-repeat: no-repeat;
7693
- -webkit-mask-position: center;
7694
- mask-position: center;
7695
- }
7696
-
7697
- .premium-container-scroll {
7698
- overflow: auto;
7699
- }
7700
-
7701
- .premium-image-scroll-container .premium-image-scroll-horizontal {
7702
- position: relative;
7703
- width: 100%;
7704
- height: 100%;
7705
- }
7706
-
7707
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
7708
- max-width: none;
7709
- height: 100%;
7710
- }
7711
-
7712
- .premium-image-scroll-container .premium-image-scroll-vertical img {
7713
- width: 100%;
7714
- max-width: 100%;
7715
- height: auto;
7716
- }
7717
-
7718
- .premium-image-scroll-ver {
7719
- position: relative;
7720
- }
7721
-
7722
- .premium-image-scroll-container .premium-image-scroll-overlay {
7723
- background: rgba(2, 2, 2, 0.3);
7724
- }
7725
-
7726
- .premium-image-scroll-container .premium-image-scroll-link,
7727
- .premium-image-scroll-container .premium-image-scroll-overlay {
7728
- position: absolute;
7729
- top: 0;
7730
- bottom: 0;
7731
- right: 0;
7732
- left: 0;
7733
- z-index: 4;
7734
- }
7735
-
7736
- .premium-image-scroll-content {
7737
- display: inline-block;
7738
- position: absolute;
7739
- height: auto;
7740
- top: 50%;
7741
- right: 50%;
7742
- text-align: center;
7743
- z-index: 5;
7744
- -webkit-transform: translate(50%, -50%);
7745
- -ms-transform: translate(50%, -50%);
7746
- transform: translate(50%, -50%);
7747
- }
7748
-
7749
- .premium-container-scroll-instant .premium-image-scroll-image {
7750
- -webkit-transition: all 0s ease-in-out !important;
7751
- transition: all 0s ease-in-out !important;
7752
- }
7753
-
7754
- .premium-image-scroll-container img {
7755
- -webkit-transition: -webkit-transform 3s ease-in-out;
7756
- transition: -webkit-transform 3s ease-in-out;
7757
- transition: transform 3s ease-in-out;
7758
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
7759
- }
7760
-
7761
- .premium-image-scroll-container .premium-image-scroll-overlay,
7762
- .premium-image-scroll-container .premium-image-scroll-content {
7763
- -webkit-transition: all 0.3s ease-in-out;
7764
- transition: all 0.3s ease-in-out;
7765
- opacity: 1;
7766
- }
7767
-
7768
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
7769
- opacity: 0;
7770
- }
7771
-
7772
- .premium-image-scroll-container:hover .premium-image-scroll-content {
7773
- opacity: 0;
7774
- visibility: hidden;
7775
- }
7776
-
7777
- .premium-image-scroll-content .premium-image-scroll-icon {
7778
- display: inline-block;
7779
- font-family: "pa-elements" !important;
7780
- speak: none;
7781
- font-style: normal;
7782
- font-weight: normal;
7783
- font-variant: normal;
7784
- text-transform: none;
7785
- line-height: 1;
7786
- -webkit-font-smoothing: antialiased;
7787
- -moz-osx-font-smoothing: grayscale;
7788
- -webkit-animation-duration: 0.5s;
7789
- animation-duration: 0.5s;
7790
- -webkit-animation-iteration-count: infinite;
7791
- animation-iteration-count: infinite;
7792
- -webkit-animation-direction: alternate;
7793
- animation-direction: alternate;
7794
- -webkit-animation-timing-function: ease-in-out;
7795
- animation-timing-function: ease-in-out;
7796
- }
7797
-
7798
- .pa-horizontal-mouse-scroll:before {
7799
- content: "\e917";
7800
- }
7801
-
7802
- .pa-vertical-mouse-scroll:before {
7803
- content: "\e918";
7804
- }
7805
-
7806
- .pa-horizontal-mouse-scroll {
7807
- -webkit-animation-name: pa-scroll-horizontal;
7808
- animation-name: pa-scroll-horizontal;
7809
- }
7810
-
7811
- .pa-vertical-mouse-scroll {
7812
- -webkit-animation-name: pa-scroll-vertical;
7813
- animation-name: pa-scroll-vertical;
7814
- }
7815
-
7816
- @-webkit-keyframes pa-scroll-vertical {
7817
- 0% {
7818
- -webkit-transform: translateY(0px);
7819
- transform: translateY(0px);
7820
- }
7821
-
7822
- 100% {
7823
- -webkit-transform: translateY(5px);
7824
- transform: translateY(5px);
7825
- }
7826
- }
7827
-
7828
- @keyframes pa-scroll-vertical {
7829
- 0% {
7830
- -webkit-transform: translateY(0px);
7831
- transform: translateY(0px);
7832
- }
7833
-
7834
- 100% {
7835
- -webkit-transform: translateY(5px);
7836
- transform: translateY(5px);
7837
- }
7838
- }
7839
-
7840
- @-webkit-keyframes pa-scroll-horizontal {
7841
- 0% {
7842
- -webkit-transform: translateX(0px);
7843
- transform: translateX(0px);
7844
- }
7845
-
7846
- 100% {
7847
- -webkit-transform: translateX(-5px);
7848
- transform: translateX(-5px);
7849
- }
7850
- }
7851
-
7852
- @keyframes pa-scroll-horizontal {
7853
- 0% {
7854
- -webkit-transform: translateX(0px);
7855
- transform: translateX(0px);
7856
- }
7857
-
7858
- 100% {
7859
- -webkit-transform: translateX(-5px);
7860
- transform: translateX(-5px);
7861
- }
7862
- }
7863
-
7864
- /********* Premium Lottie Animations **********/
7865
- /**********************************************/
7866
- .premium-lottie-wrap .premium-lottie-animation {
7867
- position: relative;
7868
- -js-display: inline-flex;
7869
- display: -webkit-inline-box;
7870
- display: -webkit-inline-flex;
7871
- display: -moz-inline-box;
7872
- display: -ms-inline-flexbox;
7873
- display: inline-flex;
7874
- -webkit-transition: all 0.3s ease-in-out;
7875
- transition: all 0.3s ease-in-out;
7876
- }
7877
-
7878
- .premium-lottie-wrap .premium-lottie-animation a {
7879
- position: absolute;
7880
- left: 0;
7881
- top: 0;
7882
- width: 100%;
7883
- height: 100%;
7884
- }
7885
-
7886
- /**************** Premium Bullet List *****************/
7887
- /******************************************************/
7888
- .premium-icon-list-box {
7889
- -js-display: flex;
7890
- display: -webkit-box;
7891
- display: -webkit-flex;
7892
- display: -moz-box;
7893
- display: -ms-flexbox;
7894
- display: flex;
7895
- -webkit-flex-wrap: wrap;
7896
- -ms-flex-wrap: wrap;
7897
- flex-wrap: wrap;
7898
- -webkit-box-orient: vertical;
7899
- -webkit-box-direction: normal;
7900
- -webkit-flex-direction: column;
7901
- -moz-box-orient: vertical;
7902
- -moz-box-direction: normal;
7903
- -ms-flex-direction: column;
7904
- flex-direction: column;
7905
- }
7906
-
7907
- .premium-icon-list-box .premium-icon-list-content-grow-lc {
7908
- -webkit-transform-origin: right center;
7909
- -ms-transform-origin: right center;
7910
- transform-origin: right center;
7911
- }
7912
-
7913
- .premium-icon-list-box .premium-icon-list-content-grow-rc {
7914
- -webkit-transform-origin: left center;
7915
- -ms-transform-origin: left center;
7916
- transform-origin: left center;
7917
- }
7918
-
7919
- .premium-icon-list-box .premium-icon-list-content-grow-cc {
7920
- -webkit-transform-origin: center center;
7921
- -ms-transform-origin: center center;
7922
- transform-origin: center center;
7923
- }
7924
-
7925
- .premium-icon-list-content {
7926
- -js-display: flex;
7927
- display: -webkit-box;
7928
- display: -webkit-flex;
7929
- display: -moz-box;
7930
- display: -ms-flexbox;
7931
- display: flex;
7932
- -webkit-transition: all 0.3s ease-in-out;
7933
- transition: all 0.3s ease-in-out;
7934
- width: auto;
7935
- position: relative;
7936
- }
7937
-
7938
- .premium-icon-list-content .premium-icon-list-text span,
7939
- .premium-icon-list-content .premium-icon-list-wrapper {
7940
- display: inline-block;
7941
- -webkit-align-self: center;
7942
- -ms-flex-item-align: center;
7943
- align-self: center;
7944
- -webkit-transition: all 0.3s ease-in-out;
7945
- transition: all 0.3s ease-in-out;
7946
- }
7947
-
7948
- .premium-icon-list-content .premium-icon-list-text span {
7949
- margin: 0 5px;
7950
- }
7951
-
7952
- .premium-icon-list-content .premium-icon-list-icon-text p {
7953
- font-size: 18px;
7954
- background-color: #eee;
7955
- padding: 1px 5px;
7956
- -webkit-border-radius: 2px;
7957
- border-radius: 2px;
7958
- }
7959
-
7960
- .premium-icon-list-content .premium-icon-list-text span,
7961
- .premium-icon-list-content .premium-icon-list-icon-text p,
7962
- .premium-icon-list-content .premium-icon-list-wrapper img,
7963
- .premium-icon-list-content .premium-icon-list-wrapper svg,
7964
- .premium-icon-list-content .premium-icon-list-wrapper i {
7965
- -webkit-transition: all 0.3s ease-in-out;
7966
- transition: all 0.3s ease-in-out;
7967
- }
7968
-
7969
- .premium-icon-list-content .premium-icon-list-wrapper {
7970
- position: relative;
7971
- line-height: 0;
7972
- }
7973
-
7974
- .premium-icon-list-content .premium-icon-list-wrapper img,
7975
- .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
7976
- width: 30px !important;
7977
- height: 30px !important;
7978
- position: relative;
7979
- z-index: 500;
7980
- }
7981
-
7982
- .premium-icon-list-content .premium-icon-list-wrapper i,
7983
- .premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
7984
- position: relative;
7985
- z-index: 500;
7986
- }
7987
-
7988
- .premium-icon-list-content .premium-icon-list-link {
7989
- position: absolute;
7990
- top: 0;
7991
- right: 0;
7992
- width: 100%;
7993
- height: 100%;
7994
- z-index: 1000;
7995
- }
7996
-
7997
- .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
7998
- width: 100%;
7999
- height: 100%;
8000
- position: absolute;
8001
- top: 0.5em;
8002
- z-index: 100;
8003
- -js-display: flex;
8004
- display: -webkit-box;
8005
- display: -webkit-flex;
8006
- display: -moz-box;
8007
- display: -ms-flexbox;
8008
- display: flex;
8009
- -webkit-box-pack: center;
8010
- -webkit-justify-content: center;
8011
- -moz-box-pack: center;
8012
- -ms-flex-pack: center;
8013
- justify-content: center;
8014
- }
8015
-
8016
- .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
8017
- content: "";
8018
- border-left-width: 1px;
8019
- border-left-style: solid;
8020
- border-color: #333333;
8021
- display: block;
8022
- height: 100%;
8023
- }
8024
-
8025
- li.premium-icon-list-content.premium-icon-list-content-inline {
8026
- -webkit-align-self: center;
8027
- -ms-flex-item-align: center;
8028
- align-self: center;
8029
- z-index: 2;
8030
- }
8031
-
8032
- li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
8033
- margin: 0 3px;
8034
- }
8035
-
8036
- li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
8037
- margin: 0 0 0 3px;
8038
- }
8039
-
8040
- .premium-icon-list-divider:not(:last-child) {
8041
- width: 100%;
8042
- -webkit-box-flex: 0;
8043
- -webkit-flex: 0 0 100%;
8044
- -moz-box-flex: 0;
8045
- -ms-flex: 0 0 100%;
8046
- flex: 0 0 100%;
8047
- overflow: hidden;
8048
- }
8049
-
8050
- .premium-icon-list-divider:not(:last-child):after {
8051
- content: "";
8052
- display: block;
8053
- border-top-style: solid;
8054
- border-top-width: 1px;
8055
- }
8056
-
8057
- .premium-icon-list-divider-inline:not(:last-child) {
8058
- float: left;
8059
- display: inline-block;
8060
- position: relative;
8061
- height: 100%;
8062
- overflow: hidden;
8063
- -webkit-align-self: center;
8064
- -ms-flex-item-align: center;
8065
- align-self: center;
8066
- margin: 0 3px;
8067
- }
8068
-
8069
- .premium-icon-list-divider-inline:not(:last-child):after {
8070
- content: "";
8071
- display: block;
8072
- border-right-width: 1px;
8073
- height: 33px;
8074
- border-right-style: solid;
8075
- }
8076
-
8077
- .premium-icon-list-icon-text {
8078
- line-height: 1.5;
8079
- }
8080
-
8081
- .premium-icon-list-icon-text p,
8082
- ul.premium-icon-list-box,
8083
- li.premium-icon-list-content {
8084
- margin: 0;
8085
- }
8086
-
8087
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
8088
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
8089
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
8090
- color: transparent !important;
8091
- text-shadow: 0 0 3px #aaa;
8092
- }
8093
-
8094
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
8095
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
8096
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
8097
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
8098
- -webkit-filter: blur(3px);
8099
- filter: blur(3px);
8100
- }
8101
-
8102
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
8103
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
8104
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
8105
- color: #aaa !important;
8106
- text-shadow: 0 0px 0 transparent;
8107
- }
8108
-
8109
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
8110
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
8111
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
8112
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
8113
- -webkit-filter: none;
8114
- filter: none;
8115
- }
8116
-
8117
- .premium-icon-list-content .premium-icon-list-badge {
8118
- font-size: 11px;
8119
- top: auto;
8120
- min-width: -webkit-max-content;
8121
- min-width: -moz-max-content;
8122
- min-width: max-content;
8123
- height: -webkit-fit-content;
8124
- height: -moz-fit-content;
8125
- height: fit-content;
8126
- }
8127
-
8128
- .premium-icon-list-content .premium-icon-list-icon-text p {
8129
- font-size: 13px;
8130
- }
8131
-
8132
- .premium-icon-list-gradient-effect[data-text] {
8133
- display: inline-block;
8134
- position: relative;
8135
- text-decoration: none;
8136
- }
8137
-
8138
- .premium-icon-list-gradient-effect[data-text]::before {
8139
- content: attr(data-text);
8140
- position: absolute;
8141
- z-index: 1;
8142
- overflow: hidden;
8143
- -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8144
- clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8145
- -webkit-background-clip: text;
8146
- background-clip: text;
8147
- -webkit-text-fill-color: transparent;
8148
- -webkit-transition: all 0.4s ease;
8149
- transition: all 0.4s ease;
8150
- }
8151
-
8152
- .premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
8153
- .premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
8154
- -webkit-animation: rtlgradient 1s forwards;
8155
- animation: rtlgradient 1s forwards;
8156
- }
8157
-
8158
- @-webkit-keyframes rtlgradient {
8159
- 0% {
8160
- -webkit-clip-path: circle(0% at 150% 50%);
8161
- clip-path: circle(0% at 150% 50%);
8162
- }
8163
-
8164
- 100% {
8165
- -webkit-clip-path: circle(100% at 50% 50%);
8166
- clip-path: circle(100% at 50% 50%);
8167
- }
8168
- }
8169
-
8170
- @keyframes rtlgradient {
8171
- 0% {
8172
- -webkit-clip-path: circle(0% at 150% 50%);
8173
- clip-path: circle(0% at 150% 50%);
8174
- }
8175
-
8176
- 100% {
8177
- -webkit-clip-path: circle(100% at 50% 50%);
8178
- clip-path: circle(100% at 50% 50%);
8179
- }
8180
- }
8181
-
8182
- ul[data-list-animation*="animated-"] .premium-icon-list-divider,
8183
- ul[data-list-animation*="animated-"] .premium-icon-list-content,
8184
- ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
8185
- opacity: 0;
8186
- }
8187
-
8188
- .premium-icon-list-content-grow-effect:hover {
8189
- -webkit-transform: scale(1.07);
8190
- -ms-transform: scale(1.07);
8191
- transform: scale(1.07);
 
 
 
 
8192
  }
1
+ @font-face {
2
+ font-family: "pa-elements";
3
+ src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
4
+ src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"),
5
+ url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"),
6
+ url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"),
7
+ url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ /**************** Premium Banner ****************/
13
+ /************************************************/
14
+ .premium-banner {
15
+ overflow: hidden;
16
+ }
17
+
18
+ .premium-banner-ib {
19
+ display: block;
20
+ position: relative;
21
+ }
22
+
23
+ .premium-banner-ib img {
24
+ display: block;
25
+ position: relative;
26
+ }
27
+
28
+ .premium-banner-img-wrap {
29
+ -js-display: flex;
30
+ display: -webkit-box;
31
+ display: -webkit-flex;
32
+ display: -moz-box;
33
+ display: -ms-flexbox;
34
+ display: flex;
35
+ height: 100%;
36
+ }
37
+
38
+ .premium-banner-img-wrap .premium-banner-ib-img {
39
+ -webkit-flex-shrink: 0;
40
+ -ms-flex-negative: 0;
41
+ flex-shrink: 0;
42
+ }
43
+
44
+ .premium-banner-ib {
45
+ z-index: 1;
46
+ overflow: hidden;
47
+ margin: 0 0 35px;
48
+ text-align: center;
49
+ -webkit-box-sizing: border-box;
50
+ -moz-box-sizing: border-box;
51
+ box-sizing: border-box;
52
+ }
53
+
54
+ .premium-banner-ib-desc .premium-banner-read-more {
55
+ z-index: 100;
56
+ }
57
+
58
+ .premium-banner-ib,
59
+ .wpb_column>.wpb_wrapper .premium-banner-ib {
60
+ margin-bottom: 0px;
61
+ }
62
+
63
+ .elementor-widget-premium-addon-banner .premium-banner-ib-title {
64
+ background: transparent;
65
+ }
66
+
67
+ .premium-banner-ib *,
68
+ .premium-banner-ib .premium-banner-ib-desc {
69
+ -webkit-box-sizing: border-box;
70
+ -moz-box-sizing: border-box;
71
+ box-sizing: border-box;
72
+ }
73
+
74
+ .premium-banner-ib img {
75
+ min-width: 100%;
76
+ max-width: 100%;
77
+ -webkit-transition: opacity 0.35s;
78
+ transition: opacity 0.35s;
79
+ }
80
+
81
+ .premium-banner-ib .premium-banner-ib-desc {
82
+ padding: 15px;
83
+ -webkit-backface-visibility: hidden;
84
+ backface-visibility: hidden;
85
+ -webkit-box-sizing: border-box;
86
+ -moz-box-sizing: border-box;
87
+ box-sizing: border-box;
88
+ position: absolute;
89
+ top: 0;
90
+ right: 0;
91
+ width: 100%;
92
+ height: 100%;
93
+ }
94
+
95
+ .premium-banner-ib .premium-banner-ib-link {
96
+ position: absolute;
97
+ top: 0;
98
+ right: 0;
99
+ width: 100%;
100
+ height: 100%;
101
+ z-index: 1000;
102
+ text-indent: 200%;
103
+ white-space: nowrap;
104
+ font-size: 0;
105
+ opacity: 0;
106
+ }
107
+
108
+ .premium-banner-ib a.premium-banner-ib-link {
109
+ display: block;
110
+ background: 100% 0;
111
+ }
112
+
113
+ .premium-banner-animation1 img {
114
+ width: -webkit-calc(100% + 50px) !important;
115
+ width: calc(100% + 50px) !important;
116
+ max-width: -webkit-calc(100% + 50px) !important;
117
+ max-width: calc(100% + 50px) !important;
118
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
119
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
120
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
121
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
122
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
123
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
124
+ -webkit-transform: translate3d(40px, 0, 0);
125
+ transform: translate3d(40px, 0, 0);
126
+ }
127
+
128
+ .premium-banner-animation2 .premium-banner-ib-title {
129
+ padding: 15px;
130
+ }
131
+
132
+ .premium-banner-animation1 .premium-banner-ib-desc {
133
+ top: auto;
134
+ bottom: 0;
135
+ min-height: 25%;
136
+ height: auto;
137
+ max-height: 100%;
138
+ text-align: right;
139
+ }
140
+
141
+ .premium-banner-animation1 .premium-banner-ib-content,
142
+ .premium-banner-animation1 .premium-banner-ib-title,
143
+ .premium-banner-animation1 .premium-banner-read-more {
144
+ -webkit-transform: translate3d(0, 40px, 0);
145
+ transform: translate3d(0, 40px, 0);
146
+ -webkit-transition-delay: 0.05s;
147
+ transition-delay: 0.05s;
148
+ -webkit-transition-duration: 0.35s;
149
+ transition-duration: 0.35s;
150
+ }
151
+
152
+ .premium-banner-animation1 .premium-banner-ib-title {
153
+ -webkit-transition: -webkit-transform 0.35s;
154
+ transition: -webkit-transform 0.35s;
155
+ transition: transform 0.35s;
156
+ transition: transform 0.35s, -webkit-transform 0.35s;
157
+ }
158
+
159
+ .premium-banner-animation1 .premium-banner-ib-content,
160
+ .premium-banner-animation1 .premium-banner-read-more {
161
+ margin-top: 10px;
162
+ opacity: 0;
163
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
164
+ transition: opacity 0.2s, -webkit-transform 0.35s;
165
+ transition: opacity 0.2s, transform 0.35s;
166
+ transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
167
+ }
168
+
169
+ .premium-banner-animation1:hover .premium-banner-ib-content,
170
+ .premium-banner-animation1.active .premium-banner-ib-content,
171
+ .premium-banner-animation1:hover .premium-banner-read-more,
172
+ .premium-banner-animation1.active .premium-banner-read-more {
173
+ opacity: 1;
174
+ -webkit-transition-delay: 0.05s;
175
+ transition-delay: 0.05s;
176
+ -webkit-transition-duration: 0.35s;
177
+ transition-duration: 0.35s;
178
+ }
179
+
180
+ .premium-banner-animation1:hover .premium-banner-ib-content,
181
+ .premium-banner-animation1.active .premium-banner-ib-content,
182
+ .premium-banner-animation1:hover .premium-banner-read-more,
183
+ .premium-banner-animation1.active .premium-banner-read-more,
184
+ .premium-banner-animation1:hover .premium-banner-ib-title,
185
+ .premium-banner-animation1.active .premium-banner-ib-title,
186
+ .premium-banner-animation1:hover img,
187
+ .premium-banner-animation1.active img {
188
+ -webkit-transform: translate3d(0, 0, 0);
189
+ transform: translate3d(0, 0, 0);
190
+ -webkit-transition-delay: 0.05s;
191
+ transition-delay: 0.05s;
192
+ -webkit-transition-duration: 0.35s;
193
+ transition-duration: 0.35s;
194
+ }
195
+
196
+ .premium-banner-animation1.zoomout img,
197
+ .premium-banner-animation1.scale img {
198
+ -webkit-transform: translate3d(40px, 0, 0) scale(1.1);
199
+ transform: translate3d(40px, 0, 0) scale(1.1);
200
+ }
201
+
202
+ .premium-banner-ib.sepia img {
203
+ -webkit-filter: sepia(30%);
204
+ filter: sepia(30%);
205
+ }
206
+
207
+ .premium-banner-ib.bright img {
208
+ -webkit-filter: brightness(1);
209
+ filter: brightness(1);
210
+ }
211
+
212
+ .premium-banner-ib.sepia:hover img {
213
+ -webkit-filter: sepia(0%);
214
+ filter: sepia(0%);
215
+ }
216
+
217
+ .premium-banner-ib.bright:hover img {
218
+ -webkit-filter: brightness(1.2);
219
+ filter: brightness(1.2);
220
+ }
221
+
222
+ .premium-banner-animation1.premium-banner-min-height img,
223
+ .premium-banner-animation2.premium-banner-min-height img,
224
+ .premium-banner-animation4.premium-banner-min-height img,
225
+ .premium-banner-animation5.premium-banner-min-height img,
226
+ .premium-banner-animation6.premium-banner-min-height img,
227
+ .premium-banner-animation13.premium-banner-min-height img {
228
+ height: auto;
229
+ }
230
+
231
+ .premium-banner-animation2 img {
232
+ width: 100%;
233
+ }
234
+
235
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
236
+ position: absolute;
237
+ content: "";
238
+ top: 0;
239
+ right: 0;
240
+ width: 100%;
241
+ height: 100%;
242
+ opacity: 0;
243
+ -webkit-transform: translate3d(0, 50%, 0);
244
+ transform: translate3d(0, 50%, 0);
245
+ }
246
+
247
+ .premium-banner-animation2 .premium-banner-ib-title {
248
+ position: absolute;
249
+ top: 50%;
250
+ right: 0;
251
+ width: 100%;
252
+ -webkit-transition: color 0.35s, -webkit-transform 0.35s;
253
+ transition: color 0.35s, -webkit-transform 0.35s;
254
+ transition: transform 0.35s, color 0.35s;
255
+ transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
256
+ -webkit-transform: translate3d(0, -50%, 0);
257
+ transform: translate3d(0, -50%, 0);
258
+ }
259
+
260
+ .premium-banner-animation2 .premium-banner-ib-content,
261
+ .premium-banner-animation2 .premium-banner-read-more,
262
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
263
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
264
+ transition: opacity 0.35s, -webkit-transform 0.35s;
265
+ transition: opacity 0.35s, transform 0.35s;
266
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
267
+ }
268
+
269
+ .premium-banner-animation2 .premium-banner-ib-content,
270
+ .premium-banner-animation2 .premium-banner-read-more {
271
+ position: absolute;
272
+ bottom: 0;
273
+ right: 0;
274
+ padding: 15px;
275
+ width: 100%;
276
+ max-height: 50%;
277
+ opacity: 0;
278
+ -webkit-transform: translate3d(0, 10px, 0);
279
+ transform: translate3d(0, 10px, 0);
280
+ }
281
+
282
+ .premium-banner-animation2:hover .premium-banner-ib-title,
283
+ .premium-banner-animation2.active .premium-banner-ib-title {
284
+ -webkit-transform: translate3d(0, -40px, 0);
285
+ transform: translate3d(0, -40px, 0);
286
+ }
287
+
288
+ .premium-banner-animation2:hover .premium-banner-read-more,
289
+ .premium-banner-animation2.active .premium-banner-read-more,
290
+ .premium-banner-animation2:hover .premium-banner-ib-desc::before,
291
+ .premium-banner-animation2.active .premium-banner-ib-desc::before {
292
+ opacity: 1;
293
+ -webkit-transform: translate3d(0, 0, 0);
294
+ transform: translate3d(0, 0, 0);
295
+ }
296
+
297
+ .premium-banner-animation2:hover .premium-banner-ib-content,
298
+ .premium-banner-animation2.active .premium-banner-ib-content {
299
+ opacity: 1;
300
+ -webkit-transform: translate3d(0, -30px, 0);
301
+ transform: translate3d(0, -30px, 0);
302
+ }
303
+
304
+ .premium-banner-animation3 .premium-banner-ib-title {
305
+ position: absolute;
306
+ bottom: 0;
307
+ right: 0;
308
+ padding: 15px;
309
+ width: 100%;
310
+ text-align: right;
311
+ -webkit-transform: translate3d(0, -30px, 0);
312
+ transform: translate3d(0, -30px, 0);
313
+ }
314
+
315
+ .premium-banner-animation3 .premium-banner-ib-desc::before,
316
+ .premium-banner-animation3 .premium-banner-ib-title {
317
+ -webkit-transition: -webkit-transform 0.35s;
318
+ transition: -webkit-transform 0.35s;
319
+ transition: transform 0.35s;
320
+ transition: transform 0.35s, -webkit-transform 0.35s;
321
+ }
322
+
323
+ .premium-banner-animation3:hover .premium-banner-ib-desc::before,
324
+ .premium-banner-animation3.active .premium-banner-ib-desc::before,
325
+ .premium-banner-animation3:hover .premium-banner-ib-title,
326
+ .premium-banner-animation3.active .premium-banner-ib-title {
327
+ opacity: 1;
328
+ -webkit-transform: translate3d(0, 0, 0);
329
+ transform: translate3d(0, 0, 0);
330
+ }
331
+
332
+ .premium-banner-animation3 .premium-banner-ib-content {
333
+ max-height: -webkit-calc(100% - 60px - 1.5em);
334
+ max-height: calc(100% - 60px - 1.5em);
335
+ overflow: hidden;
336
+ }
337
+
338
+ .premium-banner-animation4 img {
339
+ width: -webkit-calc(100% + 40px) !important;
340
+ width: calc(100% + 40px) !important;
341
+ max-width: -webkit-calc(100% + 40px) !important;
342
+ max-width: calc(100% + 40px) !important;
343
+ }
344
+
345
+ .premium-banner-animation4 .premium-banner-ib-desc {
346
+ padding: 30px;
347
+ }
348
+
349
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
350
+ position: absolute;
351
+ content: "";
352
+ opacity: 0;
353
+ }
354
+
355
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
356
+ position: absolute;
357
+ content: "";
358
+ opacity: 0;
359
+ top: 50px;
360
+ left: 30px;
361
+ bottom: 50px;
362
+ right: 30px;
363
+ border-top: 1px solid #fff;
364
+ border-bottom: 1px solid #fff;
365
+ -webkit-transform: scale(0, 1);
366
+ -ms-transform: scale(0, 1);
367
+ transform: scale(0, 1);
368
+ -webkit-transform-origin: 100% 0;
369
+ -ms-transform-origin: 100% 0;
370
+ transform-origin: 100% 0;
371
+ }
372
+
373
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
374
+ top: 30px;
375
+ left: 50px;
376
+ bottom: 30px;
377
+ right: 50px;
378
+ border-left: 1px solid #fff;
379
+ border-right: 1px solid #fff;
380
+ -webkit-transform: scale(1, 0);
381
+ -ms-transform: scale(1, 0);
382
+ transform: scale(1, 0);
383
+ -webkit-transform-origin: 0% 0;
384
+ -ms-transform-origin: 0% 0;
385
+ transform-origin: 0% 0;
386
+ }
387
+
388
+ .premium-banner-animation4 .premium-banner-ib-title {
389
+ padding: 50px 30px 0 30px;
390
+ -webkit-transition: -webkit-transform 0.35s;
391
+ transition: -webkit-transform 0.35s;
392
+ transition: transform 0.35s;
393
+ transition: transform 0.35s, -webkit-transform 0.35s;
394
+ }
395
+
396
+ .premium-banner-animation4 .premium-banner-ib-content,
397
+ .premium-banner-animation4 .premium-banner-read-more {
398
+ padding: 10px 30px;
399
+ opacity: 0;
400
+ overflow: hidden;
401
+ -webkit-transform: translate3d(0, -10px, 0);
402
+ transform: translate3d(0, -10px, 0);
403
+ }
404
+
405
+ .premium-banner-animation4 .premium-banner-ib-title,
406
+ .premium-banner-animation4 img {
407
+ -webkit-transform: translate3d(30px, 0, 0);
408
+ transform: translate3d(30px, 0, 0);
409
+ }
410
+
411
+ .premium-banner-animation4.zoomout img,
412
+ .premium-banner-animation4.scale img {
413
+ -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
414
+ transform: translate3d(30px, 0, 0) scale(1.1);
415
+ }
416
+
417
+ .premium-banner-animation4 .premium-banner-ib-content,
418
+ .premium-banner-animation4 .premium-banner-read-more {
419
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
420
+ transition: opacity 0.35s, -webkit-transform 0.35s;
421
+ transition: opacity 0.35s, transform 0.35s;
422
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
423
+ }
424
+
425
+ .premium-banner-animation4 .premium-banner-ib-desc::after,
426
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
427
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
428
+ transition: opacity 0.35s, -webkit-transform 0.35s;
429
+ transition: opacity 0.35s, transform 0.35s;
430
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
431
+ }
432
+
433
+ .premium-banner-animation4 img {
434
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
435
+ transition: opacity 0.35s, -webkit-transform 0.35s;
436
+ transition: opacity 0.35s, transform 0.35s;
437
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
438
+ }
439
+
440
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
441
+ .premium-banner-animation4.active .premium-banner-ib-desc::after,
442
+ .premium-banner-animation4:hover .premium-banner-ib-desc::before,
443
+ .premium-banner-animation4.active .premium-banner-ib-desc::before {
444
+ opacity: 1;
445
+ -webkit-transform: scale(1);
446
+ -ms-transform: scale(1);
447
+ transform: scale(1);
448
+ }
449
+
450
+ .premium-banner-animation4:hover .premium-banner-ib-content,
451
+ .premium-banner-animation4.active .premium-banner-ib-content,
452
+ .premium-banner-animation4:hover .premium-banner-read-more,
453
+ .premium-banner-animation4.active .premium-banner-read-more,
454
+ .premium-banner-animation4:hover .premium-banner-ib-title,
455
+ .premium-banner-animation4.active .premium-banner-ib-title {
456
+ opacity: 1;
457
+ -webkit-transform: translate3d(0, 0, 0);
458
+ transform: translate3d(0, 0, 0);
459
+ }
460
+
461
+ .premium-banner-animation4:hover .premium-banner-ib-content,
462
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
463
+ .premium-banner-animation4:hover .premium-banner-ib-title,
464
+ .premium-banner-animation4:hover img {
465
+ -webkit-transition-delay: 0.15s;
466
+ transition-delay: 0.15s;
467
+ }
468
+
469
+ .premium-banner-animation5 .premium-banner-ib-desc {
470
+ top: auto;
471
+ bottom: 0;
472
+ padding: 15px;
473
+ height: auto;
474
+ background: #f2f2f2;
475
+ color: #3c4a50;
476
+ -webkit-transition: -webkit-transform 0.35s;
477
+ transition: -webkit-transform 0.35s;
478
+ transition: transform 0.35s;
479
+ transition: transform 0.35s, -webkit-transform 0.35s;
480
+ -webkit-transform: translate3d(0, 100%, 0);
481
+ transform: translate3d(0, 100%, 0);
482
+ }
483
+
484
+ .premium-banner-animation5 .premium-banner-ib-content {
485
+ position: absolute;
486
+ top: auto;
487
+ bottom: 100%;
488
+ right: 0;
489
+ width: 100%;
490
+ padding: 15px;
491
+ opacity: 0;
492
+ -webkit-transition: opacity 0.35s;
493
+ transition: opacity 0.35s;
494
+ }
495
+
496
+ .premium-banner-animation5 .premium-banner-ib-title,
497
+ .premium-banner-animation5 .premium-banner-read-more {
498
+ -webkit-transition: -webkit-transform 0.35s;
499
+ transition: -webkit-transform 0.35s;
500
+ transition: transform 0.35s;
501
+ transition: transform 0.35s, -webkit-transform 0.35s;
502
+ -webkit-transform: translate3d(0, 200%, 0);
503
+ transform: translate3d(0, 200%, 0);
504
+ text-align: center;
505
+ }
506
+
507
+ .premium-banner-animation5 .premium-banner-ib-title {
508
+ margin: 10px 0;
509
+ }
510
+
511
+ .premium-banner-animation5:hover .premium-banner-ib-content,
512
+ .premium-banner-animation5.active .premium-banner-ib-content,
513
+ .premium-banner-animation5:hover .premium-banner-ib-content *,
514
+ .premium-banner-animation5.active .premium-banner-ib-content * {
515
+ opacity: 1 !important;
516
+ z-index: 99 !important;
517
+ -webkit-backface-visibility: hidden !important;
518
+ backface-visibility: hidden !important;
519
+ }
520
+
521
+ .premium-banner-animation5:hover .premium-banner-ib-desc,
522
+ .premium-banner-animation5.active .premium-banner-ib-desc,
523
+ .premium-banner-animation5:hover .premium-banner-ib-title,
524
+ .premium-banner-animation5.active .premium-banner-ib-title,
525
+ .premium-banner-animation5:hover .premium-banner-read-more,
526
+ .premium-banner-animation5.active .premium-banner-read-more {
527
+ -webkit-transform: translateY(0);
528
+ -ms-transform: translateY(0);
529
+ transform: translateY(0);
530
+ }
531
+
532
+ .premium-banner-animation5:hover .premium-banner-ib-title {
533
+ -webkit-transition-delay: 0.05s;
534
+ transition-delay: 0.05s;
535
+ }
536
+
537
+ .premium-banner-animation5 img {
538
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
539
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
540
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
541
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
542
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
543
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
544
+ }
545
+
546
+ .premium-banner-animation2 img,
547
+ .premium-banner-animation4 img,
548
+ .premium-banner-animation6 img {
549
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
550
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
551
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
552
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
553
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
554
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
555
+ }
556
+
557
+ .premium-banner-animation5.zoomout img,
558
+ .premium-banner-animation5.scale img {
559
+ -webkit-transform: scale(1.1);
560
+ -ms-transform: scale(1.1);
561
+ transform: scale(1.1);
562
+ }
563
+
564
+ .premium-banner-animation2.zoomout img,
565
+ .premium-banner-animation2.scale img {
566
+ -webkit-transform: scale(1.1);
567
+ -ms-transform: scale(1.1);
568
+ transform: scale(1.1);
569
+ }
570
+
571
+ .premium-banner-animation6.zoomout img,
572
+ .premium-banner-animation6.scale img {
573
+ -webkit-transform: scale(1.1);
574
+ -ms-transform: scale(1.1);
575
+ transform: scale(1.1);
576
+ }
577
+
578
+ .premium-banner-animation5.zoomin:hover img,
579
+ .premium-banner-animation2.zoomin:hover img,
580
+ .premium-banner-animation6.zoomin:hover img {
581
+ -webkit-transform: scale(1.1);
582
+ -ms-transform: scale(1.1);
583
+ transform: scale(1.1);
584
+ }
585
+
586
+ .premium-banner-animation5.zoomout:hover img,
587
+ .premium-banner-animation2.zoomout:hover img,
588
+ .premium-banner-animation6.zoomout:hover img {
589
+ -webkit-transform: scale(1);
590
+ -ms-transform: scale(1);
591
+ transform: scale(1);
592
+ }
593
+
594
+ .premium-banner-animation5.scale:hover img,
595
+ .premium-banner-animation2.scale:hover img,
596
+ .premium-banner-animation6.scale:hover img {
597
+ -webkit-transform: scale(1.2) rotate(-5deg);
598
+ -ms-transform: scale(1.2) rotate(-5deg);
599
+ transform: scale(1.2) rotate(-5deg);
600
+ }
601
+
602
+ .premium-banner-animation5.grayscale:hover img,
603
+ .premium-banner-animation2.grayscale:hover img,
604
+ .premium-banner-animation6.grayscale:hover img {
605
+ -webkit-filter: grayscale(100%);
606
+ filter: grayscale(100%);
607
+ }
608
+
609
+ .premium-banner-animation5.blur:hover img,
610
+ .premium-banner-animation2.blur:hover img {
611
+ -webkit-filter: blur(3px);
612
+ filter: blur(3px);
613
+ }
614
+
615
+ .premium-banner-animation6.blur:hover img {
616
+ -webkit-filter: blur(3px);
617
+ filter: blur(3px);
618
+ }
619
+
620
+ .premium-banner-animation6 .premium-banner-ib-desc {
621
+ padding: 45px;
622
+ }
623
+
624
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
625
+ position: absolute;
626
+ content: "";
627
+ top: 30px;
628
+ left: 30px;
629
+ bottom: 30px;
630
+ right: 30px;
631
+ border: 1px solid #fff;
632
+ }
633
+
634
+ .premium-banner-animation6 .premium-banner-ib-title {
635
+ margin: 20px 0 10px;
636
+ -webkit-transition: -webkit-transform 0.35s;
637
+ transition: -webkit-transform 0.35s;
638
+ transition: transform 0.35s;
639
+ transition: transform 0.35s, -webkit-transform 0.35s;
640
+ -webkit-transform: translate3d(0, 100%, 0);
641
+ transform: translate3d(0, 100%, 0);
642
+ }
643
+
644
+ .premium-banner-animation6 .premium-banner-ib-content,
645
+ .premium-banner-animation6 .premium-banner-read-more,
646
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
647
+ opacity: 0;
648
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
649
+ transition: opacity 0.35s, -webkit-transform 0.35s;
650
+ transition: opacity 0.35s, transform 0.35s;
651
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
652
+ -webkit-transform: scale(0);
653
+ -ms-transform: scale(0);
654
+ transform: scale(0);
655
+ }
656
+
657
+ .premium-banner-animation6 .premium-banner-read-more {
658
+ margin-top: 10px;
659
+ }
660
+
661
+ .premium-banner-animation6:hover .premium-banner-ib-title,
662
+ .premium-banner-animation6.active .premium-banner-ib-title {
663
+ -webkit-transform: translate3d(0, 0, 0);
664
+ transform: translate3d(0, 0, 0);
665
+ }
666
+
667
+ .premium-banner-animation6:hover .premium-banner-ib-content,
668
+ .premium-banner-animation6.active .premium-banner-ib-content,
669
+ .premium-banner-animation6:hover .premium-banner-read-more,
670
+ .premium-banner-animation6.active .premium-banner-read-more,
671
+ .premium-banner-animation6:hover .premium-banner-ib-desc::before,
672
+ .premium-banner-animation6.active .premium-banner-ib-desc::before {
673
+ opacity: 1;
674
+ -webkit-transform: scale(1);
675
+ -ms-transform: scale(1);
676
+ transform: scale(1);
677
+ }
678
+
679
+ .premium-banner-animation12 .premium-banner-ib-desc::after {
680
+ position: absolute;
681
+ content: "";
682
+ left: 30px;
683
+ bottom: 30px;
684
+ right: 30px;
685
+ height: -webkit-calc(50% - 30px);
686
+ height: calc(50% - 30px);
687
+ border: 7px solid #fff;
688
+ -webkit-transition: -webkit-transform 0.35s;
689
+ transition: -webkit-transform 0.35s;
690
+ transition: transform 0.35s;
691
+ transition: transform 0.35s, -webkit-transform 0.35s;
692
+ -webkit-transform: translate3d(0, -100%, 0);
693
+ transform: translate3d(0, -100%, 0);
694
+ }
695
+
696
+ .premium-banner-animation12:hover .premium-banner-ib-desc::after,
697
+ .premium-banner-animation12.active .premium-banner-ib-desc::after {
698
+ -webkit-transform: translate3d(0, 0, 0);
699
+ transform: translate3d(0, 0, 0);
700
+ }
701
+
702
+ .premium-banner-animation12 .premium-banner-ib-desc {
703
+ padding: 45px;
704
+ text-align: right;
705
+ }
706
+
707
+ .premium-banner-animation12 .premium-banner-ib-content {
708
+ position: absolute;
709
+ left: 60px;
710
+ bottom: 60px;
711
+ right: 60px;
712
+ opacity: 0;
713
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
714
+ transition: opacity 0.35s, -webkit-transform 0.35s;
715
+ transition: opacity 0.35s, transform 0.35s;
716
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
717
+ -webkit-transform: translate3d(0, -100px, 0);
718
+ transform: translate3d(0, -100px, 0);
719
+ }
720
+
721
+ .premium-banner-animation12:hover .premium-banner-ib-content,
722
+ .premium-banner-animation12.active .premium-banner-ib-content {
723
+ opacity: 1;
724
+ -webkit-transform: translate3d(0, 0, 0);
725
+ transform: translate3d(0, 0, 0);
726
+ }
727
+
728
+ .premium-banner-animation13 img {
729
+ width: -webkit-calc(100% + 20px) !important;
730
+ width: calc(100% + 20px) !important;
731
+ max-width: -webkit-calc(100% + 20px) !important;
732
+ max-width: calc(100% + 20px) !important;
733
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
734
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
735
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
736
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
737
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
738
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
739
+ -webkit-transform: translate3d(10px, 0, 0);
740
+ transform: translate3d(10px, 0, 0);
741
+ -webkit-backface-visibility: hidden;
742
+ backface-visibility: hidden;
743
+ }
744
+
745
+ .premium-banner-animation13.zoomout img,
746
+ .premium-banner-animation13.scale img {
747
+ -webkit-transform: translate3d(10px, 0, 0) scale(1.1);
748
+ transform: translate3d(10px, 0, 0) scale(1.1);
749
+ }
750
+
751
+ .premium-banner-animation13.none:hover img {
752
+ -webkit-transform: translate3d(0, 0, 0);
753
+ transform: translate3d(0, 0, 0);
754
+ }
755
+
756
+ .premium-banner-animation1.none:hover img,
757
+ .premium-banner-animation4.none:hover img {
758
+ -webkit-transform: translate3d(0, 0, 0);
759
+ transform: translate3d(0, 0, 0);
760
+ }
761
+
762
+ .premium-banner-animation13.zoomin:hover img,
763
+ .premium-banner-animation1.zoomin:hover img,
764
+ .premium-banner-animation4.zoomin:hover img,
765
+ .premium-banner-animation8.zoomin:hover img,
766
+ .premium-banner-animation7.zoomin:hover img,
767
+ .premium-banner-animation9.zoomin:hover img,
768
+ .premium-banner-animation10.zoomin:hover img,
769
+ .premium-banner-animation11.zoomin:hover img {
770
+ -webkit-transform: translate3d(0, 0, 0) scale(1.1);
771
+ transform: translate3d(0, 0, 0) scale(1.1);
772
+ }
773
+
774
+ .premium-banner-animation13.zoomout:hover img,
775
+ .premium-banner-animation1.zoomout:hover img,
776
+ .premium-banner-animation4.zoomout:hover img,
777
+ .premium-banner-animation8.zoomout:hover img,
778
+ .premium-banner-animation7.zoomout:hover img,
779
+ .premium-banner-animation9.zoomout:hover img,
780
+ .premium-banner-animation10.zoomout:hover img,
781
+ .premium-banner-animation11.zoomout:hover img {
782
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
783
+ transform: translate3d(0, 0, 0) scale(1);
784
+ }
785
+
786
+ .premium-banner-animation13.scale:hover img,
787
+ .premium-banner-animation1.scale:hover img,
788
+ .premium-banner-animation4.scale:hover img,
789
+ .premium-banner-animation8.scale:hover img,
790
+ .premium-banner-animation7.scale:hover img,
791
+ .premium-banner-animation9.scale:hover img,
792
+ .premium-banner-animation10.scale:hover img,
793
+ .premium-banner-animation11.scale:hover img {
794
+ -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
795
+ transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
796
+ }
797
+
798
+ .premium-banner-animation13.grayscale:hover img,
799
+ .premium-banner-animation1.grayscale:hover img,
800
+ .premium-banner-animation4.grayscale:hover img,
801
+ .premium-banner-animation8.grayscale:hover img,
802
+ .premium-banner-animation7.grayscale:hover img,
803
+ .premium-banner-animation9.grayscale:hover img,
804
+ .premium-banner-animation10.grayscale:hover img,
805
+ .premium-banner-animation11.grayscale:hover img {
806
+ -webkit-transform: translate3d(0, 0, 0);
807
+ transform: translate3d(0, 0, 0);
808
+ -webkit-filter: grayscale(100%);
809
+ filter: grayscale(100%);
810
+ }
811
+
812
+ .premium-banner-animation13.blur:hover img,
813
+ .premium-banner-animation1.blur:hover img,
814
+ .premium-banner-animation4.blur:hover,
815
+ .premium-banner-animation8.blur:hover img,
816
+ .premium-banner-animation7.blur:hover img,
817
+ .premium-banner-animation9.blur:hover img,
818
+ .premium-banner-animation10.blur:hover img,
819
+ .premium-banner-animation11.blur:hover img {
820
+ -webkit-transform: translate3d(0, 0, 0);
821
+ transform: translate3d(0, 0, 0);
822
+ -webkit-filter: blur(3px);
823
+ filter: blur(3px);
824
+ }
825
+
826
+ .premium-banner-animation13 .premium-banner-ib-desc {
827
+ text-align: right;
828
+ }
829
+
830
+ .premium-banner-animation13 .premium-banner-ib-title {
831
+ position: relative;
832
+ overflow: hidden;
833
+ padding: 5px 0 10px;
834
+ }
835
+
836
+ .premium-banner-animation13 .premium-banner-ib-title::after {
837
+ position: absolute;
838
+ content: "";
839
+ bottom: 0;
840
+ right: 0;
841
+ width: 100%;
842
+ height: 2px;
843
+ background: #fff;
844
+ -webkit-transition: -webkit-transform 0.35s;
845
+ transition: -webkit-transform 0.35s;
846
+ transition: transform 0.35s;
847
+ transition: transform 0.35s, -webkit-transform 0.35s;
848
+ -webkit-transform: translate3d(101%, 0, 0);
849
+ transform: translate3d(101%, 0, 0);
850
+ }
851
+
852
+ .premium-banner-animation13:hover .premium-banner-ib-title::after,
853
+ .premium-banner-animation13.active .premium-banner-ib-title::after {
854
+ -webkit-transform: translate3d(0, 0, 0);
855
+ transform: translate3d(0, 0, 0);
856
+ }
857
+
858
+ .premium-banner-animation13 .premium-banner-ib-content,
859
+ .premium-banner-animation13 .premium-banner-read-more {
860
+ padding: 15px 0;
861
+ opacity: 0;
862
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
863
+ transition: opacity 0.35s, -webkit-transform 0.35s;
864
+ transition: opacity 0.35s, transform 0.35s;
865
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
866
+ -webkit-transform: translate3d(-100%, 0, 0);
867
+ transform: translate3d(-100%, 0, 0);
868
+ }
869
+
870
+ .premium-banner-animation13:hover .premium-banner-ib-content,
871
+ .premium-banner-animation13.active .premium-banner-ib-content,
872
+ .premium-banner-animation13:hover .premium-banner-read-more,
873
+ .premium-banner-animation13.active .premium-banner-read-more {
874
+ opacity: 1;
875
+ -webkit-transform: translate3d(0, 0, 0);
876
+ transform: translate3d(0, 0, 0);
877
+ }
878
+
879
+ .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
880
+ right: 50%;
881
+ width: auto !important;
882
+ height: 100%;
883
+ max-width: none;
884
+ -webkit-transform: translateX(50%);
885
+ -ms-transform: translateX(50%);
886
+ transform: translateX(50%);
887
+ }
888
+
889
+ .premium-banner-ib img {
890
+ border: none;
891
+ padding: 0;
892
+ margin: 0;
893
+ }
894
+
895
+ .premium-banner-animation7 img {
896
+ width: -webkit-calc(100% + 40px) !important;
897
+ width: calc(100% + 40px) !important;
898
+ max-width: -webkit-calc(100% + 40px) !important;
899
+ max-width: calc(100% + 40px) !important;
900
+ }
901
+
902
+ .premium-banner-animation7 .premium-banner-brlr {
903
+ width: 7px;
904
+ }
905
+
906
+ .premium-banner-animation7 .premium-banner-brtb {
907
+ height: 7px;
908
+ }
909
+
910
+ .premium-banner-animation7 .premium-banner-br {
911
+ position: absolute;
912
+ z-index: 1;
913
+ background-color: white;
914
+ -webkit-transition: all 0.3s ease-in-out;
915
+ transition: all 0.3s ease-in-out;
916
+ -webkit-transition-delay: 0.2s;
917
+ transition-delay: 0.2s;
918
+ }
919
+
920
+ .premium-banner-animation7 .premium-banner-bleft {
921
+ right: 30px;
922
+ top: -webkit-calc(100% - 150px);
923
+ top: calc(100% - 150px);
924
+ height: 0;
925
+ }
926
+
927
+ .premium-banner-animation7 .premium-banner-bright {
928
+ left: 30px;
929
+ bottom: -webkit-calc(100% - 150px);
930
+ bottom: calc(100% - 150px);
931
+ height: 0;
932
+ }
933
+
934
+ .premium-banner-animation7 .premium-banner-bottom {
935
+ left: -webkit-calc(100% - 150px);
936
+ left: calc(100% - 150px);
937
+ bottom: 30px;
938
+ width: 0;
939
+ }
940
+
941
+ .premium-banner-animation7 .premium-banner-btop {
942
+ right: -webkit-calc(100% - 150px);
943
+ right: calc(100% - 150px);
944
+ top: 30px;
945
+ width: 0;
946
+ }
947
+
948
+ .premium-banner-animation7 .premium-banner-ib-desc {
949
+ padding: 70px;
950
+ display: table;
951
+ }
952
+
953
+ .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
954
+ display: table-cell;
955
+ vertical-align: middle;
956
+ }
957
+
958
+ .premium-banner-animation7 .premium-banner-ib-title {
959
+ margin-top: 0;
960
+ }
961
+
962
+ .premium-banner-animation7 .premium-banner-ib-title,
963
+ .premium-banner-animation7 img {
964
+ -webkit-transform: translate3d(30px, 0, 0);
965
+ transform: translate3d(30px, 0, 0);
966
+ }
967
+
968
+ .premium-banner-animation7.zoomout img,
969
+ .premium-banner-animation7.scale img {
970
+ -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
971
+ transform: translate3d(30px, 0, 0) scale(1.1);
972
+ }
973
+
974
+ .premium-banner-animation7 .premium-banner-ib-content,
975
+ .premium-banner-animation7 .premium-banner-read-more {
976
+ margin-top: 10px;
977
+ }
978
+
979
+ .premium-banner-animation7 .premium-banner-ib-desc::after,
980
+ .premium-banner-animation7 .premium-banner-ib-desc::before {
981
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
982
+ transition: opacity 0.35s, -webkit-transform 0.35s;
983
+ transition: opacity 0.35s, transform 0.35s;
984
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
985
+ }
986
+
987
+ .premium-banner-animation7 .premium-banner-ib-title,
988
+ .premium-banner-animation7 .premium-banner-ib-content,
989
+ .premium-banner-animation7 .premium-banner-read-more {
990
+ opacity: 0;
991
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
992
+ transition: opacity 0.35s, -webkit-transform 0.35s;
993
+ transition: opacity 0.35s, transform 0.35s;
994
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
995
+ }
996
+
997
+ .premium-banner-animation7 img {
998
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
999
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1000
+ transition: opacity 0.35s, transform 0.35s;
1001
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1002
+ }
1003
+
1004
+ .premium-banner-animation7:hover .premium-banner-ib-content,
1005
+ .premium-banner-animation7.active .premium-banner-ib-content,
1006
+ .premium-banner-animation7:hover .premium-banner-read-more,
1007
+ .premium-banner-animation7.active .premium-banner-read-more,
1008
+ .premium-banner-animation7:hover .premium-banner-ib-title,
1009
+ .premium-banner-animation7.active .premium-banner-ib-title {
1010
+ opacity: 1;
1011
+ -webkit-transform: translate3d(0, 0, 0);
1012
+ transform: translate3d(0, 0, 0);
1013
+ }
1014
+
1015
+ .premium-banner-animation7:hover .premium-banner-bleft,
1016
+ .premium-banner-animation7.active .premium-banner-bleft {
1017
+ top: 30px;
1018
+ height: 70px;
1019
+ }
1020
+
1021
+ .premium-banner-animation7:hover .premium-banner-bright,
1022
+ .premium-banner-animation7.active .premium-banner-bright {
1023
+ bottom: 30px;
1024
+ height: 70px;
1025
+ }
1026
+
1027
+ .premium-banner-animation7:hover .premium-banner-bottom,
1028
+ .premium-banner-animation7.active .premium-banner-bottom {
1029
+ left: 30px;
1030
+ width: 70px;
1031
+ }
1032
+
1033
+ .premium-banner-animation7:hover .premium-banner-btop,
1034
+ .premium-banner-animation7.active .premium-banner-btop {
1035
+ right: 30px;
1036
+ width: 70px;
1037
+ }
1038
+
1039
+ .premium-banner-animation7:hover .premium-banner-ib-content,
1040
+ .premium-banner-animation7:hover .premium-banner-read-more,
1041
+ .premium-banner-animation7:hover .premium-banner-ib-title,
1042
+ .premium-banner-animation7:hover img {
1043
+ -webkit-transition-delay: 0.15s;
1044
+ transition-delay: 0.15s;
1045
+ }
1046
+
1047
+ .premium-banner-animation8 img {
1048
+ width: -webkit-calc(100% + 40px) !important;
1049
+ width: calc(100% + 40px) !important;
1050
+ max-width: -webkit-calc(100% + 40px) !important;
1051
+ max-width: calc(100% + 40px) !important;
1052
+ }
1053
+
1054
+ .premium-banner-animation8 .premium-banner-brlr {
1055
+ width: 7px;
1056
+ }
1057
+
1058
+ .premium-banner-animation8 .premium-banner-brtb {
1059
+ height: 7px;
1060
+ }
1061
+
1062
+ .premium-banner-animation8 .premium-banner-br {
1063
+ position: absolute;
1064
+ z-index: 1;
1065
+ background-color: white;
1066
+ -webkit-transition: all 0.3s ease-in-out;
1067
+ transition: all 0.3s ease-in-out;
1068
+ -webkit-transition-delay: 0.2s;
1069
+ transition-delay: 0.2s;
1070
+ }
1071
+
1072
+ .premium-banner-animation8 .premium-banner-bleft {
1073
+ right: 30px;
1074
+ top: 50%;
1075
+ -webkit-transform: translateY(-50%);
1076
+ -ms-transform: translateY(-50%);
1077
+ transform: translateY(-50%);
1078
+ height: 0;
1079
+ }
1080
+
1081
+ .premium-banner-animation8 .premium-banner-bright {
1082
+ left: 30px;
1083
+ top: 50%;
1084
+ -webkit-transform: translateY(-50%);
1085
+ -ms-transform: translateY(-50%);
1086
+ transform: translateY(-50%);
1087
+ height: 0;
1088
+ }
1089
+
1090
+ .premium-banner-animation8 .premium-banner-bottom {
1091
+ right: 50%;
1092
+ -webkit-transform: translateX(50%);
1093
+ -ms-transform: translateX(50%);
1094
+ transform: translateX(50%);
1095
+ bottom: 30px;
1096
+ width: 0;
1097
+ }
1098
+
1099
+ .premium-banner-animation8 .premium-banner-btop {
1100
+ right: 50%;
1101
+ -webkit-transform: translateX(50%);
1102
+ -ms-transform: translateX(50%);
1103
+ transform: translateX(50%);
1104
+ top: 30px;
1105
+ width: 0;
1106
+ }
1107
+
1108
+ .premium-banner-animation8 .premium-banner-ib-desc {
1109
+ padding: 70px;
1110
+ display: table;
1111
+ }
1112
+
1113
+ .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
1114
+ display: table-cell;
1115
+ vertical-align: middle;
1116
+ }
1117
+
1118
+ .premium-banner-animation8 .premium-banner-ib-title {
1119
+ margin-top: 0;
1120
+ }
1121
+
1122
+ .premium-banner-animation8 .premium-banner-ib-title,
1123
+ .premium-banner-animation8 img {
1124
+ -webkit-transform: translate3d(30px, 0, 0);
1125
+ transform: translate3d(30px, 0, 0);
1126
+ }
1127
+
1128
+ .premium-banner-animation8.zoomout img,
1129
+ .premium-banner-animation8.scale img {
1130
+ -webkit-transform: translate3d(30px, 0, 0) scale(1.1);
1131
+ transform: translate3d(30px, 0, 0) scale(1.1);
1132
+ }
1133
+
1134
+ .premium-banner-animation8 .premium-banner-ib-content,
1135
+ .premium-banner-animation8 .premium-banner-read-more {
1136
+ margin-top: 10px;
1137
+ }
1138
+
1139
+ .premium-banner-animation8 .premium-banner-ib-desc::after,
1140
+ .premium-banner-animation8 .premium-banner-ib-desc::before {
1141
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1142
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1143
+ transition: opacity 0.35s, transform 0.35s;
1144
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1145
+ }
1146
+
1147
+ .premium-banner-animation8 .premium-banner-ib-title,
1148
+ .premium-banner-animation8 .premium-banner-ib-content,
1149
+ .premium-banner-animation8 .premium-banner-read-more {
1150
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1151
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1152
+ transition: opacity 0.35s, transform 0.35s;
1153
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1154
+ opacity: 0;
1155
+ }
1156
+
1157
+ .premium-banner-animation8 img {
1158
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1159
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1160
+ transition: opacity 0.35s, transform 0.35s;
1161
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1162
+ }
1163
+
1164
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1165
+ .premium-banner-animation8.active .premium-banner-ib-content,
1166
+ .premium-banner-animation8:hover .premium-banner-read-more,
1167
+ .premium-banner-animation8.active .premium-banner-read-more,
1168
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1169
+ .premium-banner-animation8.active .premium-banner-ib-title {
1170
+ opacity: 1;
1171
+ -webkit-transform: translate3d(0, 0, 0);
1172
+ transform: translate3d(0, 0, 0);
1173
+ }
1174
+
1175
+ .premium-banner-animation8:hover .premium-banner-bleft,
1176
+ .premium-banner-animation8.active .premium-banner-bleft {
1177
+ height: -webkit-calc(100% - 61px);
1178
+ height: calc(100% - 61px);
1179
+ }
1180
+
1181
+ .premium-banner-animation8:hover .premium-banner-bright,
1182
+ .premium-banner-animation8.active .premium-banner-bright {
1183
+ height: -webkit-calc(100% - 61px);
1184
+ height: calc(100% - 61px);
1185
+ }
1186
+
1187
+ .premium-banner-animation8:hover .premium-banner-bottom,
1188
+ .premium-banner-animation8.active .premium-banner-bottom {
1189
+ width: -webkit-calc(100% - 61px);
1190
+ width: calc(100% - 61px);
1191
+ }
1192
+
1193
+ .premium-banner-animation8:hover .premium-banner-btop,
1194
+ .premium-banner-animation8.active .premium-banner-btop {
1195
+ width: -webkit-calc(100% - 61px);
1196
+ width: calc(100% - 61px);
1197
+ }
1198
+
1199
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1200
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1201
+ .premium-banner-animation8:hover .premium-banner-read-more,
1202
+ .premium-banner-animation8:hover img {
1203
+ -webkit-transition-delay: 0.15s;
1204
+ transition-delay: 0.15s;
1205
+ }
1206
+
1207
+ .premium-banner-animation9 img {
1208
+ width: -webkit-calc(100% + 20px) !important;
1209
+ width: calc(100% + 20px) !important;
1210
+ max-width: -webkit-calc(100% + 20px) !important;
1211
+ max-width: calc(100% + 20px) !important;
1212
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1213
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1214
+ transition: opacity 0.35s, transform 0.35s;
1215
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1216
+ -webkit-transform: scale(1.2);
1217
+ -ms-transform: scale(1.2);
1218
+ transform: scale(1.2);
1219
+ }
1220
+
1221
+ .premium-banner-animation9 .premium-banner-ib-desc {
1222
+ width: 100%;
1223
+ height: 100%;
1224
+ }
1225
+
1226
+ .premium-banner-animation9 .premium-banner-ib-desc::before {
1227
+ position: absolute;
1228
+ top: 50%;
1229
+ right: 50%;
1230
+ width: 80%;
1231
+ height: 1px;
1232
+ background: #fff;
1233
+ content: "";
1234
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1235
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1236
+ transition: opacity 0.35s, transform 0.35s;
1237
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1238
+ -webkit-transform: translate3d(50%, -50%, 0);
1239
+ transform: translate3d(50%, -50%, 0);
1240
+ }
1241
+
1242
+ .premium-banner-animation9 .premium-banner-ib-desc::after {
1243
+ position: absolute;
1244
+ top: 50%;
1245
+ right: 50%;
1246
+ width: 80%;
1247
+ height: 1px;
1248
+ background: #fff;
1249
+ content: "";
1250
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1251
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1252
+ transition: opacity 0.35s, transform 0.35s;
1253
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1254
+ -webkit-transform: translate3d(50%, -50%, 0);
1255
+ transform: translate3d(50%, -50%, 0);
1256
+ }
1257
+
1258
+ .premium-banner-animation9 .premium-banner-ib-title {
1259
+ position: absolute;
1260
+ top: 50%;
1261
+ right: 0;
1262
+ width: 100%;
1263
+ -webkit-transition: -webkit-transform 0.35s;
1264
+ transition: -webkit-transform 0.35s;
1265
+ transition: transform 0.35s;
1266
+ transition: transform 0.35s, -webkit-transform 0.35s;
1267
+ -webkit-transform: translate3d(0, -70px, 0);
1268
+ transform: translate3d(0, -70px, 0);
1269
+ margin-top: 0;
1270
+ padding: 0 10%;
1271
+ }
1272
+
1273
+ .premium-banner-animation9:hover .premium-banner-ib-title,
1274
+ .premium-banner-animation9.active .premium-banner-ib-title {
1275
+ -webkit-transform: translate3d(0, -80px, 0);
1276
+ transform: translate3d(0, -80px, 0);
1277
+ }
1278
+
1279
+ .premium-banner-animation9 .premium-banner-ib-content,
1280
+ .premium-banner-animation9 .premium-banner-read-more {
1281
+ position: absolute;
1282
+ top: 50%;
1283
+ right: 0;
1284
+ width: 100%;
1285
+ -webkit-transition: -webkit-transform 0.35s;
1286
+ transition: -webkit-transform 0.35s;
1287
+ transition: transform 0.35s;
1288
+ transition: transform 0.35s, -webkit-transform 0.35s;
1289
+ padding: 0 10%;
1290
+ -webkit-transform: translate3d(0, 35px, 0);
1291
+ transform: translate3d(0, 35px, 0);
1292
+ }
1293
+
1294
+ .premium-banner-animation9 .premium-banner-read-more {
1295
+ top: 75%;
1296
+ }
1297
+
1298
+ .premium-banner-animation9:hover .premium-banner-ib-content,
1299
+ .premium-banner-animation9.active .premium-banner-ib-content,
1300
+ .premium-banner-animation9:hover .premium-banner-read-more,
1301
+ .premium-banner-animation9.active .premium-banner-read-more {
1302
+ -webkit-transform: translate3d(0, 45px, 0);
1303
+ transform: translate3d(0, 45px, 0);
1304
+ }
1305
+
1306
+ .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1307
+ .premium-banner-animation9.active .premium-banner-ib-desc::before {
1308
+ opacity: 0.5;
1309
+ -webkit-transform: translate3d(50%, -50%, 0) rotate(-45deg);
1310
+ transform: translate3d(50%, -50%, 0) rotate(-45deg);
1311
+ }
1312
+
1313
+ .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1314
+ .premium-banner-animation9.active .premium-banner-ib-desc::after {
1315
+ opacity: 0.5;
1316
+ -webkit-transform: translate3d(50%, -50%, 0) rotate(45deg);
1317
+ transform: translate3d(50%, -50%, 0) rotate(45deg);
1318
+ }
1319
+
1320
+ .premium-banner-animation9:hover img {
1321
+ -webkit-transform: scale(1);
1322
+ -ms-transform: scale(1);
1323
+ transform: scale(1);
1324
+ }
1325
+
1326
+ .premium-banner-animation10 img {
1327
+ width: -webkit-calc(100% + 20px) !important;
1328
+ width: calc(100% + 20px) !important;
1329
+ max-width: -webkit-calc(100% + 20px) !important;
1330
+ max-width: calc(100% + 20px) !important;
1331
+ }
1332
+
1333
+ .premium-banner-animation10 .premium-banner-ib-title {
1334
+ position: relative;
1335
+ overflow: hidden;
1336
+ padding: 5px 0 15px;
1337
+ -webkit-transition: -webkit-transform 0.35s;
1338
+ transition: -webkit-transform 0.35s;
1339
+ transition: transform 0.35s;
1340
+ transition: transform 0.35s, -webkit-transform 0.35s;
1341
+ -webkit-transform: translate3d(0, 20px, 0);
1342
+ transform: translate3d(0, 20px, 0);
1343
+ margin-bottom: 0;
1344
+ }
1345
+
1346
+ .premium-banner-animation10 .premium-banner-ib-title::after {
1347
+ position: absolute;
1348
+ content: "";
1349
+ bottom: 0;
1350
+ right: 0;
1351
+ width: 100%;
1352
+ height: 3px;
1353
+ background: #fff;
1354
+ opacity: 0;
1355
+ -webkit-transform: translate3d(0, 100%, 0);
1356
+ transform: translate3d(0, 100%, 0);
1357
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1358
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1359
+ transition: opacity 0.35s, transform 0.35s;
1360
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1361
+ }
1362
+
1363
+ .premium-banner-animation10:hover .premium-banner-ib-title,
1364
+ .premium-banner-animation10.active .premium-banner-ib-title {
1365
+ -webkit-transform: translate3d(0, 0, 0);
1366
+ transform: translate3d(0, 0, 0);
1367
+ }
1368
+
1369
+ .premium-banner-animation10:hover .premium-banner-ib-title::after,
1370
+ .premium-banner-animation10.active .premium-banner-ib-title::after {
1371
+ opacity: 1;
1372
+ -webkit-transform: translate3d(0, 0, 0);
1373
+ transform: translate3d(0, 0, 0);
1374
+ }
1375
+
1376
+ .premium-banner-animation10 .premium-banner-ib-content,
1377
+ .premium-banner-animation10 .premium-banner-read-more {
1378
+ padding-top: 15px;
1379
+ opacity: 0;
1380
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1381
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1382
+ transition: opacity 0.35s, transform 0.35s;
1383
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1384
+ -webkit-transform: translate3d(0, 100%, 0);
1385
+ transform: translate3d(0, 100%, 0);
1386
+ }
1387
+
1388
+ .premium-banner-animation10 .premium-banner-read-more {
1389
+ padding: 0;
1390
+ }
1391
+
1392
+ .premium-banner-animation10:hover .premium-banner-ib-content,
1393
+ .premium-banner-animation10.active .premium-banner-ib-content,
1394
+ .premium-banner-animation10:hover .premium-banner-read-more,
1395
+ .premium-banner-animation10.active .premium-banner-read-more {
1396
+ opacity: 1;
1397
+ -webkit-transform: translate3d(0, 0, 0);
1398
+ transform: translate3d(0, 0, 0);
1399
+ }
1400
+
1401
+ .premium-banner-animation11 {
1402
+ -webkit-transition: -webkit-transform 1s ease-out;
1403
+ transition: -webkit-transform 1s ease-out;
1404
+ transition: transform 1s ease-out;
1405
+ transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1406
+ -webkit-transition-delay: 0.125s;
1407
+ transition-delay: 0.125s;
1408
+ }
1409
+
1410
+ .premium-banner-animation11 .premium-banner-ib-desc {
1411
+ position: absolute;
1412
+ z-index: 5;
1413
+ -webkit-transform: translate3d(30px, 0, 0);
1414
+ transform: translate3d(30px, 0, 0);
1415
+ opacity: 0;
1416
+ top: auto;
1417
+ bottom: 0;
1418
+ min-height: 25%;
1419
+ height: auto;
1420
+ max-height: 100%;
1421
+ text-align: left;
1422
+ padding: 30px;
1423
+ -webkit-transition: all 0.6s ease-out;
1424
+ transition: all 0.6s ease-out;
1425
+ }
1426
+
1427
+ .premium-banner-animation11 img {
1428
+ width: 100%;
1429
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1430
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1431
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1432
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1433
+ }
1434
+
1435
+ .premium-banner-animation11 .premium-banner-ib-title {
1436
+ margin-bottom: 10px;
1437
+ }
1438
+
1439
+ .premium-banner-animation11 .premium-banner-gradient {
1440
+ position: absolute;
1441
+ left: 0;
1442
+ top: 0;
1443
+ right: 0;
1444
+ bottom: 0;
1445
+ }
1446
+
1447
+ .premium-banner-animation11 .premium-banner-gradient:after,
1448
+ .premium-banner-animation11 .premium-banner-gradient:before {
1449
+ position: absolute;
1450
+ content: "";
1451
+ left: 0;
1452
+ top: 0;
1453
+ right: 0;
1454
+ bottom: 0;
1455
+ -webkit-transform: translate3d(100%, 0, 0);
1456
+ transform: translate3d(100%, 0, 0);
1457
+ background-image: -webkit-linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1458
+ background-image: -webkit-linear-gradient(130deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1459
+ background-image: linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1460
+ z-index: 2;
1461
+ }
1462
+
1463
+ .premium-banner-animation11 .premium-banner-gradient:before {
1464
+ mix-blend-mode: color;
1465
+ }
1466
+
1467
+ .premium-banner-animation11 .premium-banner-gradient:after {
1468
+ mix-blend-mode: multiply;
1469
+ }
1470
+
1471
+ .premium-banner-animation11:hover .premium-banner-ib-desc,
1472
+ .premium-banner-animation11.active .premium-banner-ib-desc {
1473
+ opacity: 1;
1474
+ -webkit-transform: translate3d(0, 0, 0);
1475
+ transform: translate3d(0, 0, 0);
1476
+ }
1477
+
1478
+ .premium-banner-animation11:hover .premium-banner-gradient:after,
1479
+ .premium-banner-animation11:hover .premium-banner-gradient:before,
1480
+ .premium-banner-animation11.active .premium-banner-gradient:after,
1481
+ .premium-banner-animation11.active .premium-banner-gradient:before {
1482
+ -webkit-transform: translate3d(0, 0, 0);
1483
+ transform: translate3d(0, 0, 0);
1484
+ }
1485
+
1486
+ .premium-banner-animation11.zoomout img,
1487
+ .premium-banner-animation11.scale img {
1488
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1489
+ transform: translate3d(-10px, 0, 0) scale(1.1);
1490
+ }
1491
+
1492
+ /************ Premium Countdown ************/
1493
+ /*******************************************/
1494
+ .premium-countdown {
1495
+ -js-display: flex;
1496
+ display: -webkit-box;
1497
+ display: -webkit-flex;
1498
+ display: -moz-box;
1499
+ display: -ms-flexbox;
1500
+ display: flex;
1501
+ text-align: center;
1502
+ }
1503
+
1504
+ .countdown-row {
1505
+ display: block;
1506
+ text-align: center;
1507
+ }
1508
+
1509
+ .countdown .countdown-section {
1510
+ display: inline-block;
1511
+ max-width: 100%;
1512
+ margin-bottom: 15px;
1513
+ -js-display: inline-flex;
1514
+ display: -webkit-inline-box;
1515
+ display: -webkit-inline-flex;
1516
+ display: -moz-inline-box;
1517
+ display: -ms-inline-flexbox;
1518
+ display: inline-flex;
1519
+ -webkit-box-align: center;
1520
+ -webkit-align-items: center;
1521
+ -moz-box-align: center;
1522
+ -ms-flex-align: center;
1523
+ align-items: center;
1524
+ }
1525
+
1526
+ .countdown .countdown-section:last-child {
1527
+ margin-left: 0;
1528
+ }
1529
+
1530
+ .countdown span.countdown-amount {
1531
+ font-size: 70px;
1532
+ line-height: 1;
1533
+ padding: 40px;
1534
+ }
1535
+
1536
+ .countdown .pre_time-mid {
1537
+ display: block;
1538
+ }
1539
+
1540
+ .premium-countdown-separator-yes .countdown_separator {
1541
+ display: block;
1542
+ margin: 0 50px;
1543
+ font-size: 30px;
1544
+ }
1545
+
1546
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1547
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1548
+ display: none;
1549
+ }
1550
+
1551
+ /**
1552
+ * Digit and unit styles
1553
+ */
1554
+ .side .countdown-section .countdown-period {
1555
+ vertical-align: bottom;
1556
+ }
1557
+
1558
+ .countdown .countdown-section .countdown-period {
1559
+ font-size: 17px;
1560
+ line-height: 3em;
1561
+ }
1562
+
1563
+ .side .countdown-section .countdown-amount,
1564
+ .side .countdown-section .countdown-period {
1565
+ display: inline-block;
1566
+ }
1567
+
1568
+ .side .countdown-section .countdown-amount {
1569
+ margin-left: 5px;
1570
+ }
1571
+
1572
+ .down .countdown-section .countdown-amount,
1573
+ .down .countdown-section .countdown-period {
1574
+ display: block;
1575
+ }
1576
+
1577
+ /**
1578
+ * Flip Layout
1579
+ */
1580
+ .premium-countdown-flip .premium-countdown-block {
1581
+ text-align: center;
1582
+ -js-display: inline-flex;
1583
+ display: -webkit-inline-box;
1584
+ display: -webkit-inline-flex;
1585
+ display: -moz-inline-box;
1586
+ display: -ms-inline-flexbox;
1587
+ display: inline-flex;
1588
+ -webkit-box-align: center;
1589
+ -webkit-align-items: center;
1590
+ -moz-box-align: center;
1591
+ -ms-flex-align: center;
1592
+ align-items: center;
1593
+ }
1594
+
1595
+ .premium-countdown-flip .premium-countdown-block:last-child {
1596
+ margin-left: 0;
1597
+ }
1598
+
1599
+ .premium-countdown-flip .premium-countdown-label {
1600
+ overflow: hidden;
1601
+ color: #1a1a1a;
1602
+ text-transform: uppercase;
1603
+ }
1604
+
1605
+ .premium-countdown-flip .premium-countdown-figure {
1606
+ position: relative;
1607
+ height: 110px;
1608
+ width: 100px;
1609
+ line-height: 107px;
1610
+ background-color: #fff;
1611
+ -webkit-border-radius: 10px;
1612
+ border-radius: 10px;
1613
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1614
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1615
+ }
1616
+
1617
+ .premium-countdown-flip .premium-countdown-figure:last-child {
1618
+ margin-left: 0;
1619
+ }
1620
+
1621
+ .premium-countdown-flip .premium-countdown-figure>span {
1622
+ position: absolute;
1623
+ right: 0;
1624
+ left: 0;
1625
+ margin: auto;
1626
+ font-weight: 700;
1627
+ }
1628
+
1629
+ .premium-countdown-flip .premium-countdown-figure .top {
1630
+ z-index: 3;
1631
+ -webkit-transform-origin: 50% 100%;
1632
+ -ms-transform-origin: 50% 100%;
1633
+ transform-origin: 50% 100%;
1634
+ -webkit-transform: perspective(200px);
1635
+ transform: perspective(200px);
1636
+ -webkit-backface-visibility: hidden;
1637
+ backface-visibility: hidden;
1638
+ }
1639
+
1640
+ .premium-countdown-flip .premium-countdown-figure .bottom {
1641
+ z-index: 1;
1642
+ }
1643
+
1644
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
1645
+ content: "";
1646
+ position: absolute;
1647
+ display: block;
1648
+ top: 0;
1649
+ right: 0;
1650
+ width: 100%;
1651
+ height: 50%;
1652
+ background-color: rgba(0, 0, 0, 0.02);
1653
+ }
1654
+
1655
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1656
+ -webkit-backface-visibility: hidden;
1657
+ backface-visibility: hidden;
1658
+ z-index: 4;
1659
+ bottom: 0;
1660
+ -webkit-transform-origin: 50% 0;
1661
+ -ms-transform-origin: 50% 0;
1662
+ transform-origin: 50% 0;
1663
+ -webkit-transform: perspective(200px) rotateX(180deg);
1664
+ transform: perspective(200px) rotateX(180deg);
1665
+ }
1666
+
1667
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
1668
+ position: absolute;
1669
+ top: -100%;
1670
+ right: 0;
1671
+ left: 0;
1672
+ margin: auto;
1673
+ }
1674
+
1675
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
1676
+ z-index: 2;
1677
+ top: 0;
1678
+ }
1679
+
1680
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1681
+ position: absolute;
1682
+ top: 0;
1683
+ right: 0;
1684
+ left: 0;
1685
+ margin: auto;
1686
+ }
1687
+
1688
+ .premium-countdown-flip .premium-countdown-figure .top,
1689
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
1690
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1691
+ height: 50%;
1692
+ overflow: hidden;
1693
+ background-color: #f7f7f7;
1694
+ -webkit-border-top-right-radius: 10px;
1695
+ border-top-right-radius: 10px;
1696
+ -webkit-border-top-left-radius: 10px;
1697
+ border-top-left-radius: 10px;
1698
+ }
1699
+
1700
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1701
+ -webkit-border-bottom-right-radius: 10px;
1702
+ border-bottom-right-radius: 10px;
1703
+ -webkit-border-bottom-left-radius: 10px;
1704
+ border-bottom-left-radius: 10px;
1705
+ }
1706
+
1707
+ .premium-countdown-flip .premium-countdown-figure .top::after,
1708
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1709
+ content: "";
1710
+ position: absolute;
1711
+ z-index: -1;
1712
+ right: 0;
1713
+ bottom: 0;
1714
+ width: 100%;
1715
+ height: 100%;
1716
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1717
+ }
1718
+
1719
+ .side .premium-countdown-figure,
1720
+ .side .premium-countdown-label {
1721
+ display: inline-block;
1722
+ }
1723
+
1724
+ .side .premium-countdown-figure {
1725
+ margin-left: 5px;
1726
+ }
1727
+
1728
+ .down .premium-countdown-figure,
1729
+ .down .premium-countdown-label {
1730
+ display: block;
1731
+ }
1732
+
1733
+ .down .premium-countdown-label {
1734
+ width: 100%;
1735
+ }
1736
+
1737
+ /**************** Premium Carousel **************/
1738
+ /************************************************/
1739
+ .premium-carousel-wrapper a.carousel-arrow,
1740
+ .premium-carousel-wrapper a.ver-carousel-arrow,
1741
+ .premium-fb-rev-container a.carousel-arrow,
1742
+ .premium-tabs-nav-list a.carousel-arrow,
1743
+ .premium-blog-wrap a.carousel-arrow,
1744
+ .premium-hscroll-wrap a.carousel-arrow,
1745
+ .premium-twitter-feed-wrapper a.carousel-arrow,
1746
+ .premium-facebook-feed-wrapper a.carousel-arrow,
1747
+ .premium-instafeed-container a.carousel-arrow,
1748
+ .premium-persons-container a.carousel-arrow {
1749
+ display: -ms-flexbox;
1750
+ display: -webkit-flex;
1751
+ display: -moz-flex;
1752
+ display: -ms-flex;
1753
+ -js-display: flex;
1754
+ display: -webkit-box;
1755
+ display: -moz-box;
1756
+ display: flex;
1757
+ -webkit-box-align: center;
1758
+ -webkit-align-items: center;
1759
+ -moz-box-align: center;
1760
+ -ms-flex-align: center;
1761
+ align-items: center;
1762
+ -webkit-box-pack: center;
1763
+ -webkit-justify-content: center;
1764
+ -moz-box-pack: center;
1765
+ -ms-flex-pack: center;
1766
+ justify-content: center;
1767
+ width: 2em;
1768
+ height: 2em;
1769
+ line-height: 0;
1770
+ text-align: center;
1771
+ position: absolute;
1772
+ z-index: 99;
1773
+ cursor: pointer;
1774
+ -webkit-transition: all 0.3s ease-in-out;
1775
+ transition: all 0.3s ease-in-out;
1776
+ -webkit-appearance: inherit;
1777
+ border: none;
1778
+ -webkit-box-shadow: none;
1779
+ box-shadow: none;
1780
+ }
1781
+
1782
+ div[class^="premium-"] .slick-arrow i {
1783
+ display: block;
1784
+ }
1785
+
1786
+ .ver-carousel-arrow.carousel-next i {
1787
+ margin-bottom: -3px;
1788
+ }
1789
+
1790
+ .premium-carousel-wrapper a.slick-arrow:hover {
1791
+ -webkit-box-shadow: none !important;
1792
+ box-shadow: none !important;
1793
+ }
1794
+
1795
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
1796
+ visibility: hidden;
1797
+ }
1798
+
1799
+ .premium-carousel-wrapper a.carousel-arrow,
1800
+ .premium-fb-rev-container a.carousel-arrow,
1801
+ .premium-tabs-nav-list a.carousel-arrow,
1802
+ .premium-blog-wrap a.carousel-arrow,
1803
+ .premium-hscroll-wrap a.carousel-arrow,
1804
+ .premium-twitter-feed-wrapper a.carousel-arrow,
1805
+ .premium-facebook-feed-wrapper a.carousel-arrow,
1806
+ .premium-instafeed-container a.carousel-arrow,
1807
+ .premium-persons-container a.carousel-arrow {
1808
+ top: 50%;
1809
+ -webkit-transform: translateY(-50%);
1810
+ -ms-transform: translateY(-50%);
1811
+ transform: translateY(-50%);
1812
+ }
1813
+
1814
+ .premium-carousel-wrapper a.ver-carousel-arrow {
1815
+ right: 50%;
1816
+ -webkit-transform: translateX(50%);
1817
+ -ms-transform: translateX(50%);
1818
+ transform: translateX(50%);
1819
+ }
1820
+
1821
+ a.carousel-arrow.carousel-next {
1822
+ right: -20px;
1823
+ }
1824
+
1825
+ a.carousel-arrow.carousel-prev {
1826
+ left: -20px;
1827
+ }
1828
+
1829
+ a.ver-carousel-arrow.carousel-next {
1830
+ bottom: -56px;
1831
+ }
1832
+
1833
+ a.ver-carousel-arrow.carousel-prev {
1834
+ top: -45px;
1835
+ }
1836
+
1837
+ a.circle-bg {
1838
+ -webkit-border-radius: 100%;
1839
+ border-radius: 100%;
1840
+ }
1841
+
1842
+ a.circle-border {
1843
+ -webkit-border-radius: 100%;
1844
+ border-radius: 100%;
1845
+ border: solid black;
1846
+ }
1847
+
1848
+ a.square-border {
1849
+ border: solid black;
1850
+ }
1851
+
1852
+ .premium-carousel-dots-below,
1853
+ .premium-blog-wrap ul.slick-dots,
1854
+ .premium-fb-rev-reviews ul.slick-dots {
1855
+ position: relative;
1856
+ bottom: 0;
1857
+ list-style: none;
1858
+ text-align: center;
1859
+ margin: 0;
1860
+ padding: 0;
1861
+ }
1862
+
1863
+ .premium-carousel-dots-above ul.slick-dots {
1864
+ position: absolute;
1865
+ display: -ms-flexbox;
1866
+ display: -webkit-flex;
1867
+ display: -moz-flex;
1868
+ display: -ms-flex;
1869
+ -js-display: flex;
1870
+ display: -webkit-box;
1871
+ display: -moz-box;
1872
+ display: flex;
1873
+ top: 50%;
1874
+ -webkit-transform: translateY(-50%);
1875
+ -ms-transform: translateY(-50%);
1876
+ transform: translateY(-50%);
1877
+ -webkit-flex-direction: column;
1878
+ -webkit-box-orient: vertical;
1879
+ -webkit-box-direction: normal;
1880
+ -moz-box-orient: vertical;
1881
+ -moz-box-direction: normal;
1882
+ -ms-flex-direction: column;
1883
+ flex-direction: column;
1884
+ }
1885
+
1886
+ ul.slick-dots li {
1887
+ font-size: 10px;
1888
+ display: -webkit-inline-box;
1889
+ display: -webkit-inline-flex;
1890
+ display: -ms-inline-flexbox;
1891
+ -js-display: inline-flex;
1892
+ display: -moz-inline-box;
1893
+ display: inline-flex;
1894
+ -webkit-box-pack: center;
1895
+ -webkit-justify-content: center;
1896
+ -moz-box-pack: center;
1897
+ -ms-flex-pack: center;
1898
+ justify-content: center;
1899
+ -webkit-box-align: center;
1900
+ -webkit-align-items: center;
1901
+ -moz-box-align: center;
1902
+ -ms-flex-align: center;
1903
+ align-items: center;
1904
+ margin: 5px;
1905
+ width: 20px;
1906
+ height: 20px;
1907
+ cursor: pointer;
1908
+ }
1909
+
1910
+ /*
1911
+ * Custom Navigation Dot
1912
+ */
1913
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
1914
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1915
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1916
+ display: none;
1917
+ }
1918
+
1919
+ .premium-carousel-wrapper ul.slick-dots svg {
1920
+ width: 20px;
1921
+ height: 20px;
1922
+ }
1923
+
1924
+ /* Ripple Out */
1925
+ @-webkit-keyframes hvr-ripple-out {
1926
+ 0% {
1927
+ -webkit-transform: scale(1);
1928
+ transform: scale(1);
1929
+ opacity: 1;
1930
+ }
1931
+
1932
+ 100% {
1933
+ -webkit-transform: scale(1.5);
1934
+ transform: scale(1.5);
1935
+ opacity: 0;
1936
+ }
1937
+ }
1938
+
1939
+ @keyframes hvr-ripple-out {
1940
+ 0% {
1941
+ -webkit-transform: scale(1);
1942
+ transform: scale(1);
1943
+ opacity: 1;
1944
+ }
1945
+
1946
+ 100% {
1947
+ -webkit-transform: scale(1.5);
1948
+ transform: scale(1.5);
1949
+ opacity: 0;
1950
+ }
1951
+ }
1952
+
1953
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
1954
+ padding-bottom: 1px;
1955
+ }
1956
+
1957
+ .premium-carousel-ripple-yes ul.slick-dots li,
1958
+ .premium-carousel-ripple-yes ul.slick-dots li i {
1959
+ position: relative;
1960
+ }
1961
+
1962
+ .premium-carousel-ripple-yes ul.slick-dots li i {
1963
+ z-index: 1;
1964
+ }
1965
+
1966
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1967
+ content: "";
1968
+ position: absolute;
1969
+ -webkit-transform: scale(1);
1970
+ -ms-transform: scale(1);
1971
+ transform: scale(1);
1972
+ top: 0;
1973
+ left: 0;
1974
+ bottom: 0;
1975
+ right: 0;
1976
+ -webkit-border-radius: 50%;
1977
+ border-radius: 50%;
1978
+ pointer-events: none;
1979
+ background-color: rgba(0, 0, 0, 0.15);
1980
+ }
1981
+
1982
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1983
+ background-color: rgba(0, 0, 0, 0.3);
1984
+ }
1985
+
1986
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1987
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
1988
+ animation: hvr-ripple-out 1.3s infinite;
1989
+ }
1990
+
1991
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
1992
+ -webkit-transform: scale(1.25, 1.25);
1993
+ -ms-transform: scale(1.25, 1.25);
1994
+ transform: scale(1.25, 1.25);
1995
+ -webkit-transition: all 0.3s ease-in-out !important;
1996
+ transition: all 0.3s ease-in-out !important;
1997
+ }
1998
+
1999
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2000
+ -webkit-transform: scale(1, 1);
2001
+ -ms-transform: scale(1, 1);
2002
+ transform: scale(1, 1);
2003
+ }
2004
+
2005
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
2006
+ float: right;
2007
+ }
2008
+
2009
+ /**************** Premium Counter ***************/
2010
+ /************************************************/
2011
+ .premium-counter-area {
2012
+ padding: 10px 0;
2013
+ -js-display: flex;
2014
+ display: -webkit-box;
2015
+ display: -webkit-flex;
2016
+ display: -moz-box;
2017
+ display: -ms-flexbox;
2018
+ display: flex;
2019
+ -webkit-box-pack: center;
2020
+ -webkit-justify-content: center;
2021
+ -moz-box-pack: center;
2022
+ -ms-flex-pack: center;
2023
+ justify-content: center;
2024
+ -webkit-box-align: center;
2025
+ -webkit-align-items: center;
2026
+ -moz-box-align: center;
2027
+ -ms-flex-align: center;
2028
+ align-items: center;
2029
+ }
2030
+
2031
+ .premium-counter-area.top {
2032
+ -webkit-box-orient: vertical;
2033
+ -webkit-box-direction: normal;
2034
+ -webkit-flex-direction: column;
2035
+ -moz-box-orient: vertical;
2036
+ -moz-box-direction: normal;
2037
+ -ms-flex-direction: column;
2038
+ flex-direction: column;
2039
+ }
2040
+
2041
+ .premium-counter-area.right {
2042
+ -webkit-box-orient: horizontal;
2043
+ -webkit-box-direction: reverse;
2044
+ -webkit-flex-direction: row-reverse;
2045
+ -moz-box-orient: horizontal;
2046
+ -moz-box-direction: reverse;
2047
+ -ms-flex-direction: row-reverse;
2048
+ flex-direction: row-reverse;
2049
+ }
2050
+
2051
+ .premium-counter-area.right .premium-counter-icon {
2052
+ padding-right: 20px;
2053
+ }
2054
+
2055
+ .premium-counter-area.left .premium-counter-icon {
2056
+ padding-left: 20px;
2057
+ }
2058
+
2059
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
2060
+ vertical-align: text-top;
2061
+ }
2062
+
2063
+ .premium-counter-area .premium-counter-icon span.icon {
2064
+ text-align: center;
2065
+ display: inline-block;
2066
+ vertical-align: middle;
2067
+ }
2068
+
2069
+ .premium-counter-area .premium-counter-icon .circle {
2070
+ -webkit-border-radius: 100%;
2071
+ border-radius: 100%;
2072
+ }
2073
+
2074
+ .premium-counter-area .premium-counter-icon img,
2075
+ .premium-counter-area .premium-counter-icon svg {
2076
+ width: 80px;
2077
+ }
2078
+
2079
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2080
+ height: 80px;
2081
+ }
2082
+
2083
+ .premium-counter-area .premium-counter-title {
2084
+ padding: 0;
2085
+ margin: 0;
2086
+ }
2087
+
2088
+ .premium-counter-area .premium-counter-value-wrap {
2089
+ -js-display: flex;
2090
+ display: -webkit-box;
2091
+ display: -webkit-flex;
2092
+ display: -moz-box;
2093
+ display: -ms-flexbox;
2094
+ display: flex;
2095
+ -webkit-box-align: center;
2096
+ -webkit-align-items: center;
2097
+ -moz-box-align: center;
2098
+ -ms-flex-align: center;
2099
+ align-items: center;
2100
+ }
2101
+
2102
+ .premium-init-wrapper.right {
2103
+ text-align: left;
2104
+ }
2105
+
2106
+ /* * Custom image and simple styles image fix */
2107
+ span.icon.flex-width {
2108
+ width: auto !important;
2109
+ height: auto !important;
2110
+ }
2111
+
2112
+ .premium-counter-area .premium-counter-init {
2113
+ font-size: 35px;
2114
+ }
2115
+
2116
+ /**************** Premium Image Separator ****************/
2117
+ /*********************************************************/
2118
+ /*Image Separator Container Style*/
2119
+ .premium-image-separator-container {
2120
+ position: absolute;
2121
+ width: 100%;
2122
+ z-index: 2;
2123
+ top: auto;
2124
+ }
2125
+
2126
+ .premium-image-separator-container img {
2127
+ display: inline-block !important;
2128
+ -webkit-mask-repeat: no-repeat;
2129
+ mask-repeat: no-repeat;
2130
+ -webkit-mask-position: center;
2131
+ mask-position: center;
2132
+ }
2133
+
2134
+ /*Link on Image Style*/
2135
+ .premium-image-separator-link {
2136
+ position: absolute;
2137
+ z-index: 9999;
2138
+ top: 0;
2139
+ right: 0;
2140
+ width: 100%;
2141
+ height: 100%;
2142
+ text-decoration: none;
2143
+ }
2144
+
2145
+ /*Important to override Theme options*/
2146
+ a.premium-image-separator-link:hover,
2147
+ a.premium-image-separator-link:visited,
2148
+ a.premium-image-separator-link:focus,
2149
+ a.premium-image-separator-link:active {
2150
+ -webkit-box-shadow: none !important;
2151
+ box-shadow: none !important;
2152
+ outline: none !important;
2153
+ border: none !important;
2154
+ text-decoration: none !important;
2155
+ }
2156
+
2157
+ .premium-image-separator-container .img-responsive {
2158
+ display: inline-block;
2159
+ }
2160
+
2161
+ .premium-image-separator-container i {
2162
+ padding: 0.1em;
2163
+ -webkit-transition: all 0.3s ease-in-out;
2164
+ transition: all 0.3s ease-in-out;
2165
+ }
2166
+
2167
+ /**************** Premium Modal Box ****************/
2168
+ /***************************************************/
2169
+ .premium-modal-trigger-btn,
2170
+ .premium-modal-box-modal-lower-close {
2171
+ display: inline-block;
2172
+ padding: 6px 12px;
2173
+ margin-bottom: 0;
2174
+ font-size: 14px;
2175
+ font-weight: normal;
2176
+ line-height: 1.42857143;
2177
+ text-align: center;
2178
+ white-space: nowrap;
2179
+ vertical-align: middle;
2180
+ -ms-touch-action: manipulation;
2181
+ touch-action: manipulation;
2182
+ cursor: pointer;
2183
+ -webkit-user-select: none;
2184
+ -moz-user-select: none;
2185
+ -ms-user-select: none;
2186
+ user-select: none;
2187
+ background-image: none;
2188
+ border: 1px solid transparent;
2189
+ }
2190
+
2191
+ .premium-modal-trigger-btn i {
2192
+ -webkit-transition: all 0.3s ease-in-out;
2193
+ transition: all 0.3s ease-in-out;
2194
+ }
2195
+
2196
+ .premium-btn-md {
2197
+ padding: 8px 14px;
2198
+ font-size: 16px;
2199
+ line-height: 1.2;
2200
+ }
2201
+
2202
+ .premium-btn-lg {
2203
+ padding: 10px 16px;
2204
+ font-size: 18px;
2205
+ line-height: 1.3333333;
2206
+ }
2207
+
2208
+ .premium-btn-block {
2209
+ display: block;
2210
+ width: 100%;
2211
+ }
2212
+
2213
+ .premium-modal-box-modal-close {
2214
+ float: left;
2215
+ font-size: 21px;
2216
+ font-weight: bold;
2217
+ line-height: 1;
2218
+ color: #000;
2219
+ }
2220
+
2221
+ .premium-modal-box-modal-close:hover,
2222
+ .premium-modal-box-modal-close:focus {
2223
+ color: #000;
2224
+ text-decoration: none;
2225
+ cursor: pointer;
2226
+ }
2227
+
2228
+ button.premium-modal-box-modal-close {
2229
+ -webkit-appearance: none;
2230
+ padding: 0;
2231
+ cursor: pointer;
2232
+ background: transparent;
2233
+ border: 0;
2234
+ }
2235
+
2236
+ .premium-modal-box-modal {
2237
+ position: fixed;
2238
+ top: 0;
2239
+ left: 0;
2240
+ bottom: 0;
2241
+ right: 0;
2242
+ z-index: 1050;
2243
+ display: none;
2244
+ -webkit-overflow-scrolling: touch;
2245
+ outline: 0;
2246
+ padding: 0 !important;
2247
+ background: rgba(0, 0, 0, 0.5);
2248
+ -webkit-box-align: center;
2249
+ -webkit-align-items: center;
2250
+ -moz-box-align: center;
2251
+ -ms-flex-align: center;
2252
+ align-items: center;
2253
+ -webkit-box-pack: center;
2254
+ -webkit-justify-content: center;
2255
+ -moz-box-pack: center;
2256
+ -ms-flex-pack: center;
2257
+ justify-content: center;
2258
+ }
2259
+
2260
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
2261
+ position: absolute;
2262
+ max-height: -webkit-calc(100vh - 150px);
2263
+ max-height: calc(100vh - 150px);
2264
+ -js-display: flex;
2265
+ display: -webkit-box;
2266
+ display: -webkit-flex;
2267
+ display: -moz-box;
2268
+ display: -ms-flexbox;
2269
+ display: flex;
2270
+ -webkit-box-orient: vertical;
2271
+ -webkit-box-direction: normal;
2272
+ -webkit-flex-direction: column;
2273
+ -moz-box-orient: vertical;
2274
+ -moz-box-direction: normal;
2275
+ -ms-flex-direction: column;
2276
+ flex-direction: column;
2277
+ opacity: 0;
2278
+ }
2279
+
2280
+ .premium-modal-box-modal-content {
2281
+ background-color: #fff;
2282
+ -webkit-background-clip: padding-box;
2283
+ background-clip: padding-box;
2284
+ border: 1px solid rgba(0, 0, 0, 0.2);
2285
+ -webkit-border-radius: 6px;
2286
+ border-radius: 6px;
2287
+ outline: 0;
2288
+ }
2289
+
2290
+ .premium-modal-backdrop.premium-in {
2291
+ filter: alpha(opacity=50);
2292
+ opacity: 0.5 !important;
2293
+ }
2294
+
2295
+ .premium-modal-fade.premium-in {
2296
+ opacity: 1;
2297
+ }
2298
+
2299
+ .premium-modal-backdrop {
2300
+ position: fixed;
2301
+ top: 0;
2302
+ left: 0;
2303
+ bottom: 0;
2304
+ right: 0;
2305
+ z-index: 1040;
2306
+ background-color: #000;
2307
+ }
2308
+
2309
+ .premium-modal-backdrop.premium-modal-fade {
2310
+ filter: alpha(opacity=0);
2311
+ opacity: 0;
2312
+ }
2313
+
2314
+ .premium-modal-fade {
2315
+ opacity: 0;
2316
+ }
2317
+
2318
+ .premium-in {
2319
+ -js-display: flex !important;
2320
+ display: -webkit-box !important;
2321
+ display: -webkit-flex !important;
2322
+ display: -moz-box !important;
2323
+ display: -ms-flexbox !important;
2324
+ display: flex !important;
2325
+ }
2326
+
2327
+ .premium-modal-box-modal-header {
2328
+ -js-display: flex;
2329
+ display: -webkit-box;
2330
+ display: -webkit-flex;
2331
+ display: -moz-box;
2332
+ display: -ms-flexbox;
2333
+ display: flex;
2334
+ -webkit-box-pack: justify;
2335
+ -webkit-justify-content: space-between;
2336
+ -moz-box-pack: justify;
2337
+ -ms-flex-pack: justify;
2338
+ justify-content: space-between;
2339
+ -webkit-box-align: center;
2340
+ -webkit-align-items: center;
2341
+ -moz-box-align: center;
2342
+ -ms-flex-align: center;
2343
+ align-items: center;
2344
+ padding: 5px 15px;
2345
+ border-bottom: 1px solid #e5e5e5;
2346
+ }
2347
+
2348
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
2349
+ margin-top: -2px;
2350
+ }
2351
+
2352
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
2353
+ -js-display: flex;
2354
+ display: -webkit-box;
2355
+ display: -webkit-flex;
2356
+ display: -moz-box;
2357
+ display: -ms-flexbox;
2358
+ display: flex;
2359
+ -webkit-box-align: center;
2360
+ -webkit-align-items: center;
2361
+ -moz-box-align: center;
2362
+ -ms-flex-align: center;
2363
+ align-items: center;
2364
+ margin: 0;
2365
+ padding: 0;
2366
+ }
2367
+
2368
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2369
+ width: 50px;
2370
+ height: 60px;
2371
+ }
2372
+
2373
+ .premium-modal-box-modal-body {
2374
+ position: relative;
2375
+ padding: 15px;
2376
+ overflow: hidden;
2377
+ }
2378
+
2379
+ .premium-modal-box-modal-footer {
2380
+ padding: 15px;
2381
+ text-align: left;
2382
+ border-top: 1px solid #e5e5e5;
2383
+ }
2384
+
2385
+ .premium-modal-scrollbar-measure {
2386
+ position: absolute;
2387
+ top: -9999px;
2388
+ width: 50px;
2389
+ height: 50px;
2390
+ overflow: scroll;
2391
+ }
2392
+
2393
+ .premium-modal-trigger-text {
2394
+ background: none !important;
2395
+ display: inline-block;
2396
+ }
2397
+
2398
+ .premium-modal-box-container {
2399
+ width: 100% !important;
2400
+ }
2401
+
2402
+ /*Open Modal Button Style*/
2403
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
2404
+ border: none;
2405
+ -webkit-transition: all 0.3s ease-in-out;
2406
+ transition: all 0.3s ease-in-out;
2407
+ }
2408
+
2409
+ .premium-modal-trigger-container .premium-modal-trigger-img,
2410
+ .premium-modal-trigger-container .premium-modal-trigger-text,
2411
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
2412
+ cursor: pointer;
2413
+ }
2414
+
2415
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
2416
+ display: inline-block;
2417
+ width: 200px;
2418
+ height: 200px;
2419
+ -webkit-transition: all 0.3s ease-in-out;
2420
+ transition: all 0.3s ease-in-out;
2421
+ }
2422
+
2423
+ /*Image on Modal Header Style*/
2424
+ .premium-modal-box-modal-header img {
2425
+ width: 48px;
2426
+ padding-left: 5px;
2427
+ }
2428
+
2429
+ .premium-modal-box-modal-header i,
2430
+ .premium-modal-box-modal-header svg {
2431
+ padding-left: 6px;
2432
+ }
2433
+
2434
+ .premium-modal-box-modal-close {
2435
+ position: relative;
2436
+ z-index: 99;
2437
+ }
2438
+
2439
+ .premium-modal-trigger-img,
2440
+ .premium-modal-trigger-text,
2441
+ .premium-modal-box-close-button-container,
2442
+ .premium-modal-box-modal-close,
2443
+ .premium-modal-box-modal-lower-close {
2444
+ -webkit-transition: all 0.3s ease-in-out;
2445
+ transition: all 0.3s ease-in-out;
2446
+ }
2447
+
2448
+ @media (min-width: 768px) {
2449
+ .premium-modal-box-modal-dialog {
2450
+ width: 700px;
2451
+ max-height: 600px;
2452
+ overflow: auto;
2453
+ }
2454
+ }
2455
+
2456
+ @media (max-width: 767px) {
2457
+ .premium-modal-box-modal-dialog {
2458
+ width: 100%;
2459
+ max-height: 500px;
2460
+ overflow: auto;
2461
+ }
2462
+ }
2463
+
2464
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
2465
+ opacity: 0;
2466
+ }
2467
+
2468
+ /**************** Premium Progress Bar ****************/
2469
+ /******************************************************/
2470
+ .premium-progressbar-container {
2471
+ position: relative;
2472
+ }
2473
+
2474
+ .premium-progressbar-bar-wrap {
2475
+ position: relative;
2476
+ text-align: right;
2477
+ overflow: hidden;
2478
+ height: 25px;
2479
+ margin-bottom: 50px;
2480
+ background-color: #f5f5f5;
2481
+ -webkit-border-radius: 4px;
2482
+ border-radius: 4px;
2483
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2484
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2485
+ }
2486
+
2487
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
2488
+ background-color: transparent;
2489
+ width: 100%;
2490
+ -js-display: flex;
2491
+ display: -webkit-box;
2492
+ display: -webkit-flex;
2493
+ display: -moz-box;
2494
+ display: -ms-flexbox;
2495
+ display: flex;
2496
+ height: auto;
2497
+ -webkit-box-shadow: none;
2498
+ box-shadow: none;
2499
+ }
2500
+
2501
+ .premium-progressbar-bar-wrap .progress-segment {
2502
+ position: relative;
2503
+ width: 25px;
2504
+ height: 25px;
2505
+ -webkit-border-radius: 50%;
2506
+ border-radius: 50%;
2507
+ overflow: hidden;
2508
+ background-color: #f5f5f5;
2509
+ }
2510
+
2511
+ .premium-progressbar-bar-wrap .progress-segment.filled {
2512
+ background: #6ec1e4;
2513
+ }
2514
+
2515
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2516
+ margin: 0 4px;
2517
+ }
2518
+
2519
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
2520
+ margin-left: 4px;
2521
+ }
2522
+
2523
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
2524
+ margin-right: 4px;
2525
+ }
2526
+
2527
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2528
+ position: absolute;
2529
+ top: 0;
2530
+ right: 0;
2531
+ height: 100%;
2532
+ background-color: #6ec1e4;
2533
+ }
2534
+
2535
+ .premium-progressbar-bar {
2536
+ float: right;
2537
+ width: 0%;
2538
+ height: 100%;
2539
+ font-size: 12px;
2540
+ line-height: 20px;
2541
+ background: #6ec1e4;
2542
+ text-align: center;
2543
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2544
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2545
+ }
2546
+
2547
+ .premium-progressbar-striped .premium-progressbar-bar {
2548
+ background-image: -webkit-linear-gradient(-135deg,
2549
+ rgba(255, 255, 255, 0.15) 25%,
2550
+ transparent 25%,
2551
+ transparent 50%,
2552
+ rgba(255, 255, 255, 0.15) 50%,
2553
+ rgba(255, 255, 255, 0.15) 75%,
2554
+ transparent 75%,
2555
+ transparent);
2556
+ background-image: -webkit-linear-gradient(45deg,
2557
+ rgba(255, 255, 255, 0.15) 25%,
2558
+ transparent 25%,
2559
+ transparent 50%,
2560
+ rgba(255, 255, 255, 0.15) 50%,
2561
+ rgba(255, 255, 255, 0.15) 75%,
2562
+ transparent 75%,
2563
+ transparent);
2564
+ background-image: linear-gradient(45deg,
2565
+ rgba(255, 255, 255, 0.15) 25%,
2566
+ transparent 25%,
2567
+ transparent 50%,
2568
+ rgba(255, 255, 255, 0.15) 50%,
2569
+ rgba(255, 255, 255, 0.15) 75%,
2570
+ transparent 75%,
2571
+ transparent);
2572
+ -webkit-background-size: 40px 40px;
2573
+ background-size: 40px 40px;
2574
+ }
2575
+
2576
+ .premium-progressbar-active .premium-progressbar-bar {
2577
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
2578
+ animation: progress-bar-stripes 2s linear infinite;
2579
+ }
2580
+
2581
+ .premium-progressbar-gradient .premium-progressbar-bar {
2582
+ -webkit-background-size: 400% 400% !important;
2583
+ background-size: 400% 400% !important;
2584
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2585
+ animation: progress-bar-gradient 10s ease-in-out infinite;
2586
+ }
2587
+
2588
+ .premium-progressbar-bar {
2589
+ position: absolute;
2590
+ overflow: hidden;
2591
+ line-height: 20px;
2592
+ }
2593
+
2594
+ .premium-progressbar-container .clearfix {
2595
+ clear: both;
2596
+ }
2597
+
2598
+ .premium-progressbar-bar {
2599
+ -webkit-transition: width 0s ease-in-out !important;
2600
+ transition: width 0s ease-in-out !important;
2601
+ }
2602
+
2603
+ .premium-progressbar-container p:first-of-type {
2604
+ margin: 0;
2605
+ float: right;
2606
+ }
2607
+
2608
+ .premium-progressbar-container p:nth-of-type(2) {
2609
+ margin: 0;
2610
+ float: left;
2611
+ }
2612
+
2613
+ .premium-progressbar-name {
2614
+ right: 50%;
2615
+ top: 0;
2616
+ left: 0;
2617
+ -webkit-transform: translateX(12.5px);
2618
+ -ms-transform: translateX(12.5px);
2619
+ transform: translateX(12.5px);
2620
+ z-index: 1;
2621
+ }
2622
+
2623
+ .premium-progressbar-multiple-label {
2624
+ position: relative;
2625
+ float: right;
2626
+ width: 0;
2627
+ right: 50%;
2628
+ }
2629
+
2630
+ .premium-progressbar-center-label {
2631
+ position: relative;
2632
+ white-space: nowrap;
2633
+ }
2634
+
2635
+ .premium-progressbar-arrow {
2636
+ height: 15px;
2637
+ right: 50%;
2638
+ display: inline-block;
2639
+ border-right: 7px solid transparent;
2640
+ border-left: 7px solid transparent;
2641
+ border-top: 11px solid;
2642
+ -webkit-transform: translateX(50%);
2643
+ -ms-transform: translateX(50%);
2644
+ transform: translateX(50%);
2645
+ }
2646
+
2647
+ .premium-progressbar-pin {
2648
+ border-right: 1px solid;
2649
+ height: 12px;
2650
+ right: 50%;
2651
+ display: inline-block;
2652
+ }
2653
+
2654
+ /**
2655
+ * Circle Progress Bar
2656
+ */
2657
+ .premium-progressbar-circle-wrap {
2658
+ width: 200px;
2659
+ height: 200px;
2660
+ position: relative;
2661
+ margin: 0 auto;
2662
+ }
2663
+
2664
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
2665
+ position: absolute;
2666
+ top: 0;
2667
+ right: 0;
2668
+ width: 100%;
2669
+ height: 100%;
2670
+ -webkit-clip-path: inset(0 0 0 50%);
2671
+ clip-path: inset(0 0 0 50%);
2672
+ }
2673
+
2674
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2675
+ position: absolute;
2676
+ right: 0;
2677
+ top: 0;
2678
+ height: 100%;
2679
+ width: 100%;
2680
+ border-width: 6px;
2681
+ border-style: solid;
2682
+ border-color: #54595f;
2683
+ -webkit-border-radius: 50%;
2684
+ border-radius: 50%;
2685
+ -webkit-clip-path: inset(0 50% 0 0);
2686
+ clip-path: inset(0 50% 0 0);
2687
+ }
2688
+
2689
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2690
+ -webkit-transform: rotate(0);
2691
+ -ms-transform: rotate(0);
2692
+ transform: rotate(0);
2693
+ }
2694
+
2695
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2696
+ -webkit-transform: rotate(-180deg);
2697
+ -ms-transform: rotate(-180deg);
2698
+ transform: rotate(-180deg);
2699
+ visibility: hidden;
2700
+ }
2701
+
2702
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2703
+ width: 100%;
2704
+ height: 100%;
2705
+ border: 6px solid #eee;
2706
+ -webkit-border-radius: 50%;
2707
+ border-radius: 50%;
2708
+ }
2709
+
2710
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2711
+ position: absolute;
2712
+ top: 0;
2713
+ right: 0;
2714
+ width: 100%;
2715
+ height: 100%;
2716
+ -js-display: flex;
2717
+ display: -webkit-box;
2718
+ display: -webkit-flex;
2719
+ display: -moz-box;
2720
+ display: -ms-flexbox;
2721
+ display: flex;
2722
+ -webkit-box-orient: vertical;
2723
+ -webkit-box-direction: normal;
2724
+ -webkit-flex-direction: column;
2725
+ -moz-box-orient: vertical;
2726
+ -moz-box-direction: normal;
2727
+ -ms-flex-direction: column;
2728
+ flex-direction: column;
2729
+ -webkit-box-pack: center;
2730
+ -webkit-justify-content: center;
2731
+ -moz-box-pack: center;
2732
+ -ms-flex-pack: center;
2733
+ justify-content: center;
2734
+ -webkit-box-align: center;
2735
+ -webkit-align-items: center;
2736
+ -moz-box-align: center;
2737
+ -ms-flex-align: center;
2738
+ align-items: center;
2739
+ }
2740
+
2741
+ .premium-progressbar-circle-wrap .premium-lottie-animation {
2742
+ line-height: 1;
2743
+ }
2744
+
2745
+ @-webkit-keyframes progress-bar-stripes {
2746
+ from {
2747
+ background-position: 100% 0;
2748
+ }
2749
+
2750
+ to {
2751
+ background-position: 40px 0;
2752
+ }
2753
+ }
2754
+
2755
+ @keyframes progress-bar-stripes {
2756
+ from {
2757
+ background-position: 100% 0;
2758
+ }
2759
+
2760
+ to {
2761
+ background-position: 40px 0;
2762
+ }
2763
+ }
2764
+
2765
+ @-webkit-keyframes progress-bar-gradient {
2766
+ 0% {
2767
+ background-position: 100% 50%;
2768
+ }
2769
+
2770
+ 50% {
2771
+ background-position: 0% 50%;
2772
+ }
2773
+
2774
+ 100% {
2775
+ background-position: 100% 50%;
2776
+ }
2777
+ }
2778
+
2779
+ @keyframes progress-bar-gradient {
2780
+ 0% {
2781
+ background-position: 100% 50%;
2782
+ }
2783
+
2784
+ 50% {
2785
+ background-position: 0% 50%;
2786
+ }
2787
+
2788
+ 100% {
2789
+ background-position: 100% 50%;
2790
+ }
2791
+ }
2792
+
2793
+ /**************** Premium Testimonials ****************/
2794
+ /******************************************************/
2795
+ .premium-testimonial-box {
2796
+ width: 100%;
2797
+ background: transparent;
2798
+ -webkit-transition: all 0.3s ease-in-out;
2799
+ transition: all 0.3s ease-in-out;
2800
+ }
2801
+
2802
+ .premium-testimonial-box .premium-testimonial-author-info {
2803
+ -js-display: flex;
2804
+ display: -webkit-box;
2805
+ display: -webkit-flex;
2806
+ display: -moz-box;
2807
+ display: -ms-flexbox;
2808
+ display: flex;
2809
+ -webkit-box-pack: center;
2810
+ -webkit-justify-content: center;
2811
+ -moz-box-pack: center;
2812
+ -ms-flex-pack: center;
2813
+ justify-content: center;
2814
+ -webkit-box-align: center;
2815
+ -webkit-align-items: center;
2816
+ -moz-box-align: center;
2817
+ -ms-flex-align: center;
2818
+ align-items: center;
2819
+ }
2820
+
2821
+ .premium-testimonial-box .premium-testimonial-person-name,
2822
+ .premium-testimonial-box .premium-testimonial-company-name {
2823
+ font-weight: 600;
2824
+ margin: 0;
2825
+ }
2826
+
2827
+ .premium-testimonial-container {
2828
+ position: relative;
2829
+ }
2830
+
2831
+ .premium-testimonial-img-wrapper {
2832
+ margin-right: auto;
2833
+ margin-left: auto;
2834
+ overflow: hidden;
2835
+ border-style: solid !important;
2836
+ }
2837
+
2838
+ .premium-testimonial-img-wrapper.circle {
2839
+ -webkit-border-radius: 50%;
2840
+ border-radius: 50%;
2841
+ }
2842
+
2843
+ .premium-testimonial-img-wrapper.rounded {
2844
+ -webkit-border-radius: 15px;
2845
+ border-radius: 15px;
2846
+ }
2847
+
2848
+ .premium-testimonial-img-wrapper img {
2849
+ -o-object-fit: cover;
2850
+ object-fit: cover;
2851
+ width: 100%;
2852
+ height: 100% !important;
2853
+ }
2854
+
2855
+ .premium-testimonial-content-wrapper {
2856
+ position: relative;
2857
+ display: -ms-flexbox;
2858
+ display: -webkit-flex;
2859
+ display: -moz-flex;
2860
+ display: -ms-flex;
2861
+ -js-display: flex;
2862
+ display: -webkit-box;
2863
+ display: -moz-box;
2864
+ display: flex;
2865
+ -webkit-box-orient: vertical;
2866
+ -webkit-box-direction: normal;
2867
+ -webkit-flex-direction: column;
2868
+ -moz-box-orient: vertical;
2869
+ -moz-box-direction: normal;
2870
+ -ms-flex-direction: column;
2871
+ flex-direction: column;
2872
+ z-index: 2;
2873
+ width: 100%;
2874
+ padding: 20px;
2875
+ text-align: center;
2876
+ }
2877
+
2878
+ .premium-testimonial-clear-float {
2879
+ clear: both;
2880
+ }
2881
+
2882
+ .premium-testimonial-upper-quote,
2883
+ .premium-testimonial-lower-quote {
2884
+ position: absolute;
2885
+ z-index: 1;
2886
+ }
2887
+
2888
+ /**************** Premium Dual Heading *****************/
2889
+ /*******************************************************/
2890
+ .premium-dual-header-container .premium-dual-header-first-header,
2891
+ .premium-dual-header-container .premium-dual-header-second-header {
2892
+ position: relative;
2893
+ padding: 0;
2894
+ margin: 0;
2895
+ display: inline-block;
2896
+ -webkit-transform: translate(0, 0);
2897
+ -ms-transform: translate(0, 0);
2898
+ transform: translate(0, 0);
2899
+ }
2900
+
2901
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
2902
+ .premium-dual-header-second-clip {
2903
+ -webkit-text-fill-color: transparent;
2904
+ -webkit-background-clip: text;
2905
+ }
2906
+
2907
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2908
+ .premium-dual-header-second-clip.stroke {
2909
+ -webkit-text-stroke-color: transparent;
2910
+ -webkit-text-fill-color: #fafafa;
2911
+ -webkit-text-stroke-width: 2px;
2912
+ }
2913
+
2914
+ @media (max-width: 500px) {
2915
+
2916
+ .premium-dual-header-container .premium-dual-header-first-header,
2917
+ .premium-dual-header-container .premium-dual-header-second-header {
2918
+ display: block;
2919
+ word-wrap: break-word;
2920
+ }
2921
+
2922
+ .premium-dual-header-first-container,
2923
+ .premium-dual-header-second-container {
2924
+ margin: 0;
2925
+ }
2926
+ }
2927
+
2928
+ @media (min-width: 501px) {
2929
+ .premium-dual-header-first-container {
2930
+ margin-left: 5px;
2931
+ }
2932
+ }
2933
+
2934
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2935
+ .premium-dual-header-second-header.gradient {
2936
+ -webkit-background-size: 300% 300% !important;
2937
+ background-size: 300% 300% !important;
2938
+ -webkit-animation: Gradient 10s ease-in-out infinite;
2939
+ animation: Gradient 10s ease-in-out infinite;
2940
+ }
2941
+
2942
+ @-webkit-keyframes Gradient {
2943
+ 0% {
2944
+ background-position: 100% 50%;
2945
+ }
2946
+
2947
+ 50% {
2948
+ background-position: 0% 50%;
2949
+ }
2950
+
2951
+ 100% {
2952
+ background-position: 100% 50%;
2953
+ }
2954
+ }
2955
+
2956
+ @keyframes Gradient {
2957
+ 0% {
2958
+ background-position: 100% 50%;
2959
+ }
2960
+
2961
+ 50% {
2962
+ background-position: 0% 50%;
2963
+ }
2964
+
2965
+ 100% {
2966
+ background-position: 100% 50%;
2967
+ }
2968
+ }
2969
+
2970
+ /**************** Premium Title ****************/
2971
+ /***********************************************/
2972
+ .premium-title-container {
2973
+ position: relative;
2974
+ width: 100%;
2975
+ clear: both;
2976
+ overflow: hidden;
2977
+ }
2978
+
2979
+ .premium-title-container .premium-title-header {
2980
+ position: relative;
2981
+ margin: 0;
2982
+ padding: 10px;
2983
+ }
2984
+
2985
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
2986
+ -webkit-box-align: center;
2987
+ -webkit-align-items: center;
2988
+ -moz-box-align: center;
2989
+ -ms-flex-align: center;
2990
+ align-items: center;
2991
+ }
2992
+
2993
+ .premium-title-container .premium-title-header svg {
2994
+ width: 40px;
2995
+ height: 40px;
2996
+ }
2997
+
2998
+ .premium-title-container .premium-title-header img {
2999
+ width: 40px;
3000
+ height: 40px;
3001
+ -o-object-fit: cover;
3002
+ object-fit: cover;
3003
+ }
3004
+
3005
+ .premium-title-container .premium-title-header a {
3006
+ position: absolute;
3007
+ top: 0;
3008
+ right: 0;
3009
+ width: 100%;
3010
+ height: 100%;
3011
+ }
3012
+
3013
+ .premium-title-container .premium-lottie-animation {
3014
+ -js-display: flex;
3015
+ display: -webkit-box;
3016
+ display: -webkit-flex;
3017
+ display: -moz-box;
3018
+ display: -ms-flexbox;
3019
+ display: flex;
3020
+ }
3021
+
3022
+ .premium-title-icon-row .premium-title-icon {
3023
+ margin-left: 10px;
3024
+ }
3025
+
3026
+ .premium-title-icon-row-reverse .premium-title-icon {
3027
+ margin-right: 10px;
3028
+ }
3029
+
3030
+ .premium-title-style3,
3031
+ .premium-title-style4 {
3032
+ -js-display: flex;
3033
+ display: -webkit-box;
3034
+ display: -webkit-flex;
3035
+ display: -moz-box;
3036
+ display: -ms-flexbox;
3037
+ display: flex;
3038
+ }
3039
+
3040
+ .premium-title-style1,
3041
+ .premium-title-style2,
3042
+ .premium-title-style5,
3043
+ .premium-title-style6,
3044
+ .premium-title-style8,
3045
+ .premium-title-style9 {
3046
+ -js-display: inline-flex;
3047
+ display: -webkit-inline-box;
3048
+ display: -webkit-inline-flex;
3049
+ display: -moz-inline-box;
3050
+ display: -ms-inline-flexbox;
3051
+ display: inline-flex;
3052
+ }
3053
+
3054
+ .premium-title-style7 {
3055
+ -js-display: inline-flex;
3056
+ display: -webkit-inline-box;
3057
+ display: -webkit-inline-flex;
3058
+ display: -moz-inline-box;
3059
+ display: -ms-inline-flexbox;
3060
+ display: inline-flex;
3061
+ -webkit-box-orient: vertical;
3062
+ -webkit-box-direction: normal;
3063
+ -webkit-flex-direction: column;
3064
+ -moz-box-orient: vertical;
3065
+ -moz-box-direction: normal;
3066
+ -ms-flex-direction: column;
3067
+ flex-direction: column;
3068
+ }
3069
+
3070
+ .premium-title-style7 .premium-title-style7-inner {
3071
+ -js-display: flex;
3072
+ display: -webkit-box;
3073
+ display: -webkit-flex;
3074
+ display: -moz-box;
3075
+ display: -ms-flexbox;
3076
+ display: flex;
3077
+ -webkit-box-align: center;
3078
+ -webkit-align-items: center;
3079
+ -moz-box-align: center;
3080
+ -ms-flex-align: center;
3081
+ align-items: center;
3082
+ }
3083
+
3084
+ .premium-title-style1 {
3085
+ border-right: 3px solid #6ec1e4;
3086
+ }
3087
+
3088
+ .premium-title-container.style2,
3089
+ .premium-title-container.style4,
3090
+ .premium-title-container.style5,
3091
+ .premium-title-container.style6 {
3092
+ border-bottom: 3px solid #6ec1e4;
3093
+ }
3094
+
3095
+ /*Style 6 Header*/
3096
+ .premium-title-style6:before {
3097
+ position: absolute;
3098
+ right: 50%;
3099
+ bottom: 0;
3100
+ margin-right: -2px;
3101
+ content: "";
3102
+ border: 3px solid transparent;
3103
+ }
3104
+
3105
+ /*Style 6 Trinagle*/
3106
+ .premium-title-style7-stripe-wrap {
3107
+ -js-display: flex;
3108
+ display: -webkit-box;
3109
+ display: -webkit-flex;
3110
+ display: -moz-box;
3111
+ display: -ms-flexbox;
3112
+ display: flex;
3113
+ }
3114
+
3115
+ .premium-title-style7:before {
3116
+ display: none;
3117
+ }
3118
+
3119
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
3120
+ -webkit-background-size: 125px 125px !important;
3121
+ background-size: 125px !important;
3122
+ color: rgba(255, 255, 255, 0);
3123
+ -webkit-background-clip: text !important;
3124
+ background-clip: text !important;
3125
+ -webkit-animation-name: pa-shinny-text !important;
3126
+ animation-name: pa-shinny-text !important;
3127
+ -webkit-animation-duration: var(--animation-speed) !important;
3128
+ animation-duration: var(--animation-speed) !important;
3129
+ -webkit-animation-iteration-count: infinite !important;
3130
+ animation-iteration-count: infinite !important;
3131
+ background: var(--base-color) -webkit-gradient(linear,
3132
+ left top,
3133
+ right top,
3134
+ from(var(--base-color)),
3135
+ to(var(--base-color)),
3136
+ color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
3137
+ }
3138
+
3139
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
3140
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
3141
+ animation: pa-blur-shadow 2s 1 alternate;
3142
+ }
3143
+
3144
+ .premium-title-gradient-yes .premium-title-text,
3145
+ .premium-title-gradient-yes .premium-title-icon {
3146
+ -webkit-background-clip: text;
3147
+ -webkit-text-fill-color: transparent;
3148
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
3149
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
3150
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
3151
+ -webkit-animation: pa-text-gradient 8s infinite;
3152
+ animation: pa-text-gradient 8s infinite;
3153
+ }
3154
+
3155
+ @-webkit-keyframes pa-shinny-text {
3156
+ 0% {
3157
+ background-position: 100%;
3158
+ }
3159
+
3160
+ 100% {
3161
+ background-position: -100%;
3162
+ }
3163
+ }
3164
+
3165
+ @keyframes pa-shinny-text {
3166
+ 0% {
3167
+ background-position: 100%;
3168
+ }
3169
+
3170
+ 100% {
3171
+ background-position: -100%;
3172
+ }
3173
+ }
3174
+
3175
+ @-webkit-keyframes pa-blur-shadow {
3176
+ from {
3177
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3178
+ color: transparent;
3179
+ }
3180
+
3181
+ to {
3182
+ text-shadow: 0;
3183
+ }
3184
+ }
3185
+
3186
+ @keyframes pa-blur-shadow {
3187
+ from {
3188
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3189
+ color: transparent;
3190
+ }
3191
+
3192
+ to {
3193
+ text-shadow: 0;
3194
+ }
3195
+ }
3196
+
3197
+ @-webkit-keyframes pa-text-gradient {
3198
+
3199
+ 0%,
3200
+ 100% {
3201
+ -webkit-filter: hue-rotate(0deg);
3202
+ filter: hue-rotate(0deg);
3203
+ }
3204
+
3205
+ 50% {
3206
+ -webkit-filter: hue-rotate(360deg);
3207
+ filter: hue-rotate(360deg);
3208
+ }
3209
+ }
3210
+
3211
+ @keyframes pa-text-gradient {
3212
+
3213
+ 0%,
3214
+ 100% {
3215
+ -webkit-filter: hue-rotate(0deg);
3216
+ filter: hue-rotate(0deg);
3217
+ }
3218
+
3219
+ 50% {
3220
+ -webkit-filter: hue-rotate(360deg);
3221
+ filter: hue-rotate(360deg);
3222
+ }
3223
+ }
3224
+
3225
+ /*
3226
+ * Common Title/Dual Heading
3227
+ */
3228
+ .premium-title-bg-text:before {
3229
+ position: absolute;
3230
+ content: attr(data-background);
3231
+ top: 0;
3232
+ left: 0;
3233
+ text-align: left;
3234
+ }
3235
+
3236
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
3237
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
3238
+ background: inherit;
3239
+ }
3240
+
3241
+ .premium-mask-yes .premium-mask-span {
3242
+ position: relative;
3243
+ overflow: hidden;
3244
+ -js-display: inline-flex !important;
3245
+ display: -webkit-inline-box !important;
3246
+ display: -webkit-inline-flex !important;
3247
+ display: -moz-inline-box !important;
3248
+ display: -ms-inline-flexbox !important;
3249
+ display: inline-flex !important;
3250
+ }
3251
+
3252
+ .premium-mask-yes .premium-mask-span::after {
3253
+ content: "";
3254
+ position: absolute;
3255
+ top: 0;
3256
+ right: 0px;
3257
+ width: 100%;
3258
+ height: 100%;
3259
+ background-color: currentColor;
3260
+ -webkit-backface-visibility: visible;
3261
+ backface-visibility: visible;
3262
+ }
3263
+
3264
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
3265
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3266
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3267
+ -webkit-transform: translateX(-103%);
3268
+ -ms-transform: translateX(-103%);
3269
+ transform: translateX(-103%);
3270
+ }
3271
+
3272
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
3273
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3274
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3275
+ -webkit-transform: translateX(103%);
3276
+ -ms-transform: translateX(103%);
3277
+ transform: translateX(103%);
3278
+ }
3279
+
3280
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
3281
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3282
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3283
+ -webkit-transform: translateY(-103%);
3284
+ -ms-transform: translateY(-103%);
3285
+ transform: translateY(-103%);
3286
+ }
3287
+
3288
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
3289
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3290
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3291
+ -webkit-transform: translateY(103%);
3292
+ -ms-transform: translateY(103%);
3293
+ transform: translateY(103%);
3294
+ }
3295
+
3296
+ @-webkit-keyframes pa-mask-tr {
3297
+ 0% {
3298
+ -webkit-transform: translateX(0%);
3299
+ transform: translateX(0%);
3300
+ }
3301
+
3302
+ 100% {
3303
+ -webkit-transform: translateX(103%);
3304
+ transform: translateX(103%);
3305
+ }
3306
+ }
3307
+
3308
+ @keyframes pa-mask-tr {
3309
+ 0% {
3310
+ -webkit-transform: translateX(0%);
3311
+ transform: translateX(0%);
3312
+ }
3313
+
3314
+ 100% {
3315
+ -webkit-transform: translateX(103%);
3316
+ transform: translateX(103%);
3317
+ }
3318
+ }
3319
+
3320
+ @-webkit-keyframes pa-mask-tl {
3321
+ 0% {
3322
+ -webkit-transform: translateX(0%);
3323
+ transform: translateX(0%);
3324
+ }
3325
+
3326
+ 100% {
3327
+ -webkit-transform: translateX(-103%);
3328
+ transform: translateX(-103%);
3329
+ }
3330
+ }
3331
+
3332
+ @keyframes pa-mask-tl {
3333
+ 0% {
3334
+ -webkit-transform: translateX(0%);
3335
+ transform: translateX(0%);
3336
+ }
3337
+
3338
+ 100% {
3339
+ -webkit-transform: translateX(-103%);
3340
+ transform: translateX(-103%);
3341
+ }
3342
+ }
3343
+
3344
+ @-webkit-keyframes pa-mask-tb {
3345
+ 0% {
3346
+ -webkit-transform: translateY(0%);
3347
+ transform: translateY(0%);
3348
+ }
3349
+
3350
+ 100% {
3351
+ -webkit-transform: translateY(103%);
3352
+ transform: translateY(103%);
3353
+ }
3354
+ }
3355
+
3356
+ @keyframes pa-mask-tb {
3357
+ 0% {
3358
+ -webkit-transform: translateY(0%);
3359
+ transform: translateY(0%);
3360
+ }
3361
+
3362
+ 100% {
3363
+ -webkit-transform: translateY(103%);
3364
+ transform: translateY(103%);
3365
+ }
3366
+ }
3367
+
3368
+ @-webkit-keyframes pa-mask-tt {
3369
+ 0% {
3370
+ -webkit-transform: translateY(0%);
3371
+ transform: translateY(0%);
3372
+ }
3373
+
3374
+ 100% {
3375
+ -webkit-transform: translateY(-103%);
3376
+ transform: translateY(-103%);
3377
+ }
3378
+ }
3379
+
3380
+ @keyframes pa-mask-tt {
3381
+ 0% {
3382
+ -webkit-transform: translateY(0%);
3383
+ transform: translateY(0%);
3384
+ }
3385
+
3386
+ 100% {
3387
+ -webkit-transform: translateY(-103%);
3388
+ transform: translateY(-103%);
3389
+ }
3390
+ }
3391
+
3392
+ /**************** Premium Video Box ************/
3393
+ /***********************************************/
3394
+ .premium-video-box-transform {
3395
+ -webkit-transform: none !important;
3396
+ -ms-transform: none !important;
3397
+ transform: none !important;
3398
+ }
3399
+
3400
+ .premium-video-box-container {
3401
+ -js-display: flex;
3402
+ display: -webkit-box;
3403
+ display: -webkit-flex;
3404
+ display: -moz-box;
3405
+ display: -ms-flexbox;
3406
+ display: flex;
3407
+ -webkit-box-orient: vertical;
3408
+ -webkit-box-direction: normal;
3409
+ -webkit-flex-direction: column;
3410
+ -moz-box-orient: vertical;
3411
+ -moz-box-direction: normal;
3412
+ -ms-flex-direction: column;
3413
+ flex-direction: column;
3414
+ }
3415
+
3416
+ .premium-video-box-container>div {
3417
+ position: relative;
3418
+ overflow: hidden;
3419
+ }
3420
+
3421
+ .pa-aspect-ratio-11 .premium-video-box-container>div {
3422
+ padding-bottom: 100%;
3423
+ }
3424
+
3425
+ .pa-aspect-ratio-169 .premium-video-box-container>div {
3426
+ padding-bottom: 56.25%;
3427
+ }
3428
+
3429
+ .pa-aspect-ratio-43 .premium-video-box-container>div {
3430
+ padding-bottom: 75%;
3431
+ }
3432
+
3433
+ .pa-aspect-ratio-32 .premium-video-box-container>div {
3434
+ padding-bottom: 66.6666%;
3435
+ }
3436
+
3437
+ .pa-aspect-ratio-219 .premium-video-box-container>div {
3438
+ padding-bottom: 42.8571%;
3439
+ }
3440
+
3441
+ .pa-aspect-ratio-916 .premium-video-box-container>div {
3442
+ padding-bottom: 177.8%;
3443
+ }
3444
+
3445
+ .premium-video-box-image-container {
3446
+ position: absolute;
3447
+ top: 0;
3448
+ right: 0;
3449
+ bottom: 0;
3450
+ left: 0;
3451
+ width: 100%;
3452
+ height: 100%;
3453
+ -webkit-background-size: cover;
3454
+ background-size: cover;
3455
+ background-position: 50%;
3456
+ cursor: pointer;
3457
+ margin: auto;
3458
+ -webkit-transition: 0.2s all;
3459
+ transition: 0.2s all;
3460
+ }
3461
+
3462
+ .premium-video-box-play-icon-container {
3463
+ position: absolute;
3464
+ z-index: 2;
3465
+ cursor: pointer;
3466
+ -webkit-transform: translate(50%, -50%);
3467
+ -ms-transform: translate(50%, -50%);
3468
+ transform: translate(50%, -50%);
3469
+ background: rgba(252, 252, 252, 0.35);
3470
+ }
3471
+
3472
+ .premium-video-box-description-container {
3473
+ position: absolute;
3474
+ z-index: 2;
3475
+ padding: 5px;
3476
+ text-align: center;
3477
+ cursor: pointer;
3478
+ -webkit-transform: translate(50%, -50%);
3479
+ -ms-transform: translate(50%, -50%);
3480
+ transform: translate(50%, -50%);
3481
+ }
3482
+
3483
+ .premium-video-box-text {
3484
+ margin-bottom: 0 !important;
3485
+ -webkit-transition: all 0.3s ease-in-out;
3486
+ transition: all 0.3s ease-in-out;
3487
+ }
3488
+
3489
+ .premium-video-box-play-icon {
3490
+ padding: 15px;
3491
+ -webkit-transform: translateX(-4%);
3492
+ -ms-transform: translateX(-4%);
3493
+ transform: translateX(-4%);
3494
+ -webkit-transition: all 0.3s ease-in-out;
3495
+ transition: all 0.3s ease-in-out;
3496
+ }
3497
+
3498
+ .premium-video-box-video-container {
3499
+ position: absolute;
3500
+ top: 0;
3501
+ right: 0;
3502
+ z-index: 2;
3503
+ width: 100%;
3504
+ height: 100%;
3505
+ -webkit-transition: opacity 0.8s ease-in-out;
3506
+ transition: opacity 0.8s ease-in-out;
3507
+ overflow: hidden;
3508
+ cursor: pointer;
3509
+ }
3510
+
3511
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
3512
+ opacity: 0;
3513
+ visibility: hidden;
3514
+ }
3515
+
3516
+ .premium-video-box-video-container iframe {
3517
+ max-width: 100%;
3518
+ width: 100%;
3519
+ height: 100%;
3520
+ margin: 0;
3521
+ line-height: 1;
3522
+ border: none;
3523
+ }
3524
+
3525
+ .premium-video-box-video-container video {
3526
+ max-width: 100%;
3527
+ width: 100%;
3528
+ height: 100%;
3529
+ margin: 0;
3530
+ line-height: 1;
3531
+ border: none;
3532
+ background-color: #000;
3533
+ -o-object-fit: contain;
3534
+ object-fit: contain;
3535
+ }
3536
+
3537
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
3538
+ -js-display: flex;
3539
+ display: -webkit-box;
3540
+ display: -webkit-flex;
3541
+ display: -moz-box;
3542
+ display: -ms-flexbox;
3543
+ display: flex;
3544
+ position: absolute;
3545
+ top: 0;
3546
+ right: 0;
3547
+ z-index: 3;
3548
+ margin: 10px;
3549
+ margin-left: 10px;
3550
+ -webkit-transition: opacity 0.2s ease-out;
3551
+ transition: opacity 0.2s ease-out;
3552
+ margin-left: 4.6em;
3553
+ }
3554
+
3555
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
3556
+ width: 60px;
3557
+ height: 60px;
3558
+ background: rgba(23, 35, 34, 0.75);
3559
+ margin-left: 1px;
3560
+ -webkit-box-flex: 1;
3561
+ -webkit-flex: 1 0 auto;
3562
+ -moz-box-flex: 1;
3563
+ -ms-flex: 1 0 auto;
3564
+ flex: 1 0 auto;
3565
+ padding: 0;
3566
+ }
3567
+
3568
+ .premium-video-box-vimeo-portrait img {
3569
+ width: 50px;
3570
+ height: 50px;
3571
+ margin: 5px;
3572
+ padding: 0;
3573
+ border: 0;
3574
+ -webkit-border-radius: 50%;
3575
+ border-radius: 50%;
3576
+ }
3577
+
3578
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
3579
+ font-size: 10px;
3580
+ }
3581
+
3582
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
3583
+ max-width: 100%;
3584
+ font-size: 2em !important;
3585
+ font-weight: 700;
3586
+ margin: 0;
3587
+ padding: 0.1em 0.2em;
3588
+ background: rgba(23, 35, 34, 0.75);
3589
+ display: inline-block;
3590
+ text-transform: none;
3591
+ line-height: normal;
3592
+ letter-spacing: normal;
3593
+ }
3594
+
3595
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
3596
+ font-size: 1.2em !important;
3597
+ font-weight: 400;
3598
+ color: #fff;
3599
+ margin-top: 0.1em;
3600
+ padding: 0.2em 0.5em;
3601
+ background: rgba(23, 35, 34, 0.75);
3602
+ text-transform: none;
3603
+ line-height: normal;
3604
+ letter-spacing: normal;
3605
+ }
3606
+
3607
+ .premium-video-box-playlist-container {
3608
+ -js-display: flex;
3609
+ display: -webkit-box;
3610
+ display: -webkit-flex;
3611
+ display: -moz-box;
3612
+ display: -ms-flexbox;
3613
+ display: flex;
3614
+ -webkit-flex-wrap: wrap;
3615
+ -ms-flex-wrap: wrap;
3616
+ flex-wrap: wrap;
3617
+ }
3618
+
3619
+ .premium-video-box-playlist-container .premium-video-box-container {
3620
+ height: 100%;
3621
+ overflow: hidden;
3622
+ }
3623
+
3624
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
3625
+ -webkit-transform: scale(1.1);
3626
+ -ms-transform: scale(1.1);
3627
+ transform: scale(1.1);
3628
+ }
3629
+
3630
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
3631
+ -webkit-transform: scale(1);
3632
+ -ms-transform: scale(1);
3633
+ transform: scale(1);
3634
+ }
3635
+
3636
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
3637
+ -webkit-transform: scale(1.3) rotate(-5deg);
3638
+ -ms-transform: scale(1.3) rotate(-5deg);
3639
+ transform: scale(1.3) rotate(-5deg);
3640
+ }
3641
+
3642
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
3643
+ -webkit-filter: grayscale(0%);
3644
+ filter: grayscale(0%);
3645
+ }
3646
+
3647
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
3648
+ -webkit-filter: blur(3px);
3649
+ filter: blur(3px);
3650
+ }
3651
+
3652
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3653
+ -webkit-filter: sepia(0%);
3654
+ filter: sepia(0%);
3655
+ }
3656
+
3657
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
3658
+ -webkit-transform: translateX(0px) scale(1.1);
3659
+ -ms-transform: translateX(0px) scale(1.1);
3660
+ transform: translateX(0px) scale(1.1);
3661
+ }
3662
+
3663
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
3664
+ -webkit-filter: brightness(1.2);
3665
+ filter: brightness(1.2);
3666
+ }
3667
+
3668
+ .premium-video-box-image-container.gray {
3669
+ -webkit-filter: grayscale(100%);
3670
+ filter: grayscale(100%);
3671
+ }
3672
+
3673
+ .premium-video-box-image-container.zoomout,
3674
+ .premium-video-box-image-container.scale {
3675
+ -webkit-transform: scale(1.2);
3676
+ -ms-transform: scale(1.2);
3677
+ transform: scale(1.2);
3678
+ }
3679
+
3680
+ .premium-video-box-image-container.sepia {
3681
+ -webkit-filter: sepia(30%);
3682
+ filter: sepia(30%);
3683
+ }
3684
+
3685
+ .premium-video-box-image-container.bright {
3686
+ -webkit-filter: brightness(1);
3687
+ filter: brightness(1);
3688
+ }
3689
+
3690
+ .premium-video-box-image-container.trans {
3691
+ -webkit-transform: translateX(15px) scale(1.1);
3692
+ -ms-transform: translateX(15px) scale(1.1);
3693
+ transform: translateX(15px) scale(1.1);
3694
+ }
3695
+
3696
+ .premium-video-box-mask-media {
3697
+ -webkit-mask-repeat: no-repeat;
3698
+ mask-repeat: no-repeat;
3699
+ }
3700
+
3701
+ /* Sticky Video Option */
3702
+ .premium-video-box-container.premium-video-box-sticky-apply {
3703
+ z-index: 99;
3704
+ overflow: unset;
3705
+ }
3706
+
3707
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3708
+ position: fixed !important;
3709
+ z-index: 99999;
3710
+ height: 225px;
3711
+ width: 400px;
3712
+ background: #fff;
3713
+ }
3714
+
3715
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3716
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3717
+ visibility: hidden;
3718
+ }
3719
+
3720
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3721
+ -webkit-box-shadow: unset;
3722
+ box-shadow: unset;
3723
+ }
3724
+
3725
+ .premium-video-box-sticky-close,
3726
+ .premium-video-box-sticky-infobar {
3727
+ display: none;
3728
+ }
3729
+
3730
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3731
+ position: absolute;
3732
+ padding: 5px;
3733
+ cursor: pointer;
3734
+ z-index: 99999;
3735
+ height: 14px;
3736
+ width: 14px;
3737
+ -webkit-box-sizing: content-box;
3738
+ -moz-box-sizing: content-box;
3739
+ box-sizing: content-box;
3740
+ -webkit-border-radius: 100%;
3741
+ border-radius: 100%;
3742
+ -js-display: flex;
3743
+ display: -webkit-box;
3744
+ display: -webkit-flex;
3745
+ display: -moz-box;
3746
+ display: -ms-flexbox;
3747
+ display: flex;
3748
+ -webkit-box-pack: center;
3749
+ -webkit-justify-content: center;
3750
+ -moz-box-pack: center;
3751
+ -ms-flex-pack: center;
3752
+ justify-content: center;
3753
+ -webkit-box-align: center;
3754
+ -webkit-align-items: center;
3755
+ -moz-box-align: center;
3756
+ -ms-flex-align: center;
3757
+ align-items: center;
3758
+ }
3759
+
3760
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3761
+ -js-display: flex;
3762
+ display: -webkit-box;
3763
+ display: -webkit-flex;
3764
+ display: -moz-box;
3765
+ display: -ms-flexbox;
3766
+ display: flex;
3767
+ }
3768
+
3769
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
3770
+ -webkit-transition: none;
3771
+ transition: none;
3772
+ }
3773
+
3774
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3775
+ display: block;
3776
+ position: relative;
3777
+ top: 100%;
3778
+ width: 100%;
3779
+ padding: 5px;
3780
+ text-align: center;
3781
+ z-index: 9999;
3782
+ margin-top: -1px;
3783
+ }
3784
+
3785
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3786
+ cursor: move;
3787
+ }
3788
+
3789
+ .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3790
+ left: auto;
3791
+ right: 20px;
3792
+ top: 20px;
3793
+ }
3794
+
3795
+ .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3796
+ left: auto;
3797
+ right: 20px;
3798
+ bottom: 20px;
3799
+ }
3800
+
3801
+ .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3802
+ right: auto;
3803
+ left: 20px;
3804
+ top: 20px;
3805
+ }
3806
+
3807
+ .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3808
+ right: auto;
3809
+ left: 20px;
3810
+ bottom: 20px;
3811
+ }
3812
+
3813
+ .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3814
+ left: auto;
3815
+ right: 20px;
3816
+ top: 50%;
3817
+ -webkit-transform: translateY(-50%);
3818
+ -ms-transform: translateY(-50%);
3819
+ transform: translateY(-50%);
3820
+ }
3821
+
3822
+ .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3823
+ right: auto;
3824
+ left: 20px;
3825
+ top: 50%;
3826
+ -webkit-transform: translateY(-50%);
3827
+ -ms-transform: translateY(-50%);
3828
+ transform: translateY(-50%);
3829
+ }
3830
+
3831
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
3832
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3833
+ bottom: 55px;
3834
+ }
3835
+
3836
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3837
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3838
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3839
+ top: -10px;
3840
+ left: -10px;
3841
+ }
3842
+
3843
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3844
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3845
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3846
+ top: -10px;
3847
+ right: -10px;
3848
+ }
3849
+
3850
+ .premium-video-box-filter-sticky {
3851
+ -webkit-filter: none !important;
3852
+ filter: none !important;
3853
+ }
3854
+
3855
+ /**************** Premium Blog *****************/
3856
+ /***********************************************/
3857
+ .premium-blog-thumb-effect-wrapper {
3858
+ position: relative;
3859
+ overflow: hidden;
3860
+ }
3861
+
3862
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3863
+ position: absolute;
3864
+ top: 0;
3865
+ right: 0;
3866
+ width: 100%;
3867
+ height: 100%;
3868
+ z-index: 2;
3869
+ padding: 20px;
3870
+ }
3871
+
3872
+ .premium-blog-bordered-effect .premium-blog-post-link {
3873
+ display: block;
3874
+ height: 100%;
3875
+ position: relative;
3876
+ }
3877
+
3878
+ /*Thumbnail Img*/
3879
+ .premium-blog-thumbnail-container {
3880
+ overflow: hidden;
3881
+ }
3882
+
3883
+ .premium-blog-thumbnail-container img,
3884
+ .premium-blog-thumbnail-container .below-entry-meta {
3885
+ width: 100%;
3886
+ height: 100%;
3887
+ margin: 0 !important;
3888
+ -webkit-transition: all 0.4s ease-in-out;
3889
+ transition: all 0.4s ease-in-out;
3890
+ }
3891
+
3892
+ .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3893
+ .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3894
+ -webkit-transform: scale(1.2);
3895
+ -ms-transform: scale(1.2);
3896
+ transform: scale(1.2);
3897
+ }
3898
+
3899
+ .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3900
+ -webkit-filter: sepia(30%);
3901
+ filter: sepia(30%);
3902
+ }
3903
+
3904
+ .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3905
+ -webkit-filter: brightness(1);
3906
+ filter: brightness(1);
3907
+ }
3908
+
3909
+ .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3910
+ -webkit-transform: translateX(15px) scale(1.1);
3911
+ -ms-transform: translateX(15px) scale(1.1);
3912
+ transform: translateX(15px) scale(1.1);
3913
+ }
3914
+
3915
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3916
+ -webkit-transform: scale(1.2);
3917
+ -ms-transform: scale(1.2);
3918
+ transform: scale(1.2);
3919
+ }
3920
+
3921
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3922
+ -webkit-transform: scale(1.1);
3923
+ -ms-transform: scale(1.1);
3924
+ transform: scale(1.1);
3925
+ }
3926
+
3927
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3928
+ -webkit-transform: scale(1.3) rotate(-5deg);
3929
+ -ms-transform: scale(1.3) rotate(-5deg);
3930
+ transform: scale(1.3) rotate(-5deg);
3931
+ }
3932
+
3933
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3934
+ -webkit-filter: grayscale(100%);
3935
+ filter: grayscale(100%);
3936
+ }
3937
+
3938
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3939
+ -webkit-filter: blur(3px);
3940
+ filter: blur(3px);
3941
+ }
3942
+
3943
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3944
+ -webkit-filter: sepia(0%);
3945
+ filter: sepia(0%);
3946
+ }
3947
+
3948
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3949
+ -webkit-filter: brightness(1.2);
3950
+ filter: brightness(1.2);
3951
+ }
3952
+
3953
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3954
+ -webkit-transform: translateX(0px) scale(1.1);
3955
+ -ms-transform: translateX(0px) scale(1.1);
3956
+ transform: translateX(0px) scale(1.1);
3957
+ }
3958
+
3959
+ .premium-blog-post-container {
3960
+ overflow: hidden;
3961
+ }
3962
+
3963
+ .premium-blog-post-container .premium-blog-inner-container {
3964
+ -js-display: flex;
3965
+ display: -webkit-box;
3966
+ display: -webkit-flex;
3967
+ display: -moz-box;
3968
+ display: -ms-flexbox;
3969
+ display: flex;
3970
+ }
3971
+
3972
+ .premium-blog-post-container .premium-blog-post-content {
3973
+ line-height: 1.5em;
3974
+ color: #777;
3975
+ font-size: 14px;
3976
+ margin-bottom: 10px;
3977
+ }
3978
+
3979
+ .premium-blog-post-container ul.post-categories a:hover,
3980
+ .premium-blog-post-container ul.post-categories a:focus,
3981
+ .premium-blog-post-container .premium-blog-post-link:hover,
3982
+ .premium-blog-post-container .premium-blog-post-link:focus {
3983
+ -webkit-box-shadow: none !important;
3984
+ box-shadow: none !important;
3985
+ outline: none !important;
3986
+ }
3987
+
3988
+ .premium-blog-post-container .premium-blog-entry-title {
3989
+ font-size: 18px;
3990
+ margin-bottom: 5px;
3991
+ }
3992
+
3993
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
3994
+ position: relative;
3995
+ z-index: 3;
3996
+ top: -50px;
3997
+ }
3998
+
3999
+ .premium-blog-post-container .premium-blog-content-wrapper {
4000
+ background-color: #f5f5f5;
4001
+ padding: 30px;
4002
+ }
4003
+
4004
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
4005
+ top: 0;
4006
+ }
4007
+
4008
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
4009
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
4010
+ position: absolute;
4011
+ content: "";
4012
+ z-index: 1;
4013
+ top: 50%;
4014
+ right: 50%;
4015
+ opacity: 0;
4016
+ -webkit-transform: translate(50%, -50%);
4017
+ -ms-transform: translate(50%, -50%);
4018
+ transform: translate(50%, -50%);
4019
+ -webkit-transition: all 0.4s linear 0s;
4020
+ transition: all 0.4s linear 0s;
4021
+ height: 1px;
4022
+ width: 100%;
4023
+ background-color: #fff;
4024
+ }
4025
+
4026
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
4027
+ width: 1px;
4028
+ height: 100%;
4029
+ }
4030
+
4031
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
4032
+ width: 20px;
4033
+ opacity: 1;
4034
+ }
4035
+
4036
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
4037
+ height: 20px;
4038
+ opacity: 1;
4039
+ }
4040
+
4041
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
4042
+ margin: 0px 10px 20px;
4043
+ clear: both;
4044
+ }
4045
+
4046
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
4047
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
4048
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
4049
+ position: absolute;
4050
+ top: 0;
4051
+ right: 0;
4052
+ width: 100%;
4053
+ height: 100%;
4054
+ -webkit-transition: all 0.3s ease-in-out;
4055
+ transition: all 0.3s ease-in-out;
4056
+ opacity: 0;
4057
+ }
4058
+
4059
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
4060
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
4061
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
4062
+ -js-display: flex;
4063
+ display: -webkit-box;
4064
+ display: -webkit-flex;
4065
+ display: -moz-box;
4066
+ display: -ms-flexbox;
4067
+ display: flex;
4068
+ -webkit-box-pack: center;
4069
+ -webkit-justify-content: center;
4070
+ -moz-box-pack: center;
4071
+ -ms-flex-pack: center;
4072
+ justify-content: center;
4073
+ -webkit-box-align: center;
4074
+ -webkit-align-items: center;
4075
+ -moz-box-align: center;
4076
+ -ms-flex-align: center;
4077
+ align-items: center;
4078
+ width: 100%;
4079
+ height: 100%;
4080
+ }
4081
+
4082
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
4083
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
4084
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
4085
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
4086
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
4087
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
4088
+ -webkit-transition: all 0.3s ease-in-out;
4089
+ transition: all 0.3s ease-in-out;
4090
+ }
4091
+
4092
+ .premium-blog-post-container.premium-blog-skin-side {
4093
+ -js-display: flex;
4094
+ display: -webkit-box;
4095
+ display: -webkit-flex;
4096
+ display: -moz-box;
4097
+ display: -ms-flexbox;
4098
+ display: flex;
4099
+ }
4100
+
4101
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
4102
+ height: 100%;
4103
+ }
4104
+
4105
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
4106
+ -webkit-box-flex: 1;
4107
+ -webkit-flex: 1;
4108
+ -moz-box-flex: 1;
4109
+ -ms-flex: 1;
4110
+ flex: 1;
4111
+ }
4112
+
4113
+ .premium-blog-post-container.premium-blog-skin-banner {
4114
+ position: relative;
4115
+ }
4116
+
4117
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
4118
+ position: absolute;
4119
+ width: 100%;
4120
+ bottom: 0;
4121
+ -js-display: flex;
4122
+ display: -webkit-box;
4123
+ display: -webkit-flex;
4124
+ display: -moz-box;
4125
+ display: -ms-flexbox;
4126
+ display: flex;
4127
+ -webkit-box-orient: vertical;
4128
+ -webkit-box-direction: normal;
4129
+ -webkit-flex-direction: column;
4130
+ -moz-box-orient: vertical;
4131
+ -moz-box-direction: normal;
4132
+ -ms-flex-direction: column;
4133
+ flex-direction: column;
4134
+ background-color: transparent;
4135
+ z-index: 3;
4136
+ }
4137
+
4138
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
4139
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
4140
+ transition: -webkit-transform 0.3s ease-in-out;
4141
+ transition: transform 0.3s ease-in-out;
4142
+ transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
4143
+ }
4144
+
4145
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
4146
+ -webkit-transform: translateY(-5px);
4147
+ -ms-transform: translateY(-5px);
4148
+ transform: translateY(-5px);
4149
+ }
4150
+
4151
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
4152
+ margin: 0;
4153
+ padding: 0;
4154
+ list-style: none;
4155
+ -js-display: flex;
4156
+ display: -webkit-box;
4157
+ display: -webkit-flex;
4158
+ display: -moz-box;
4159
+ display: -ms-flexbox;
4160
+ display: flex;
4161
+ }
4162
+
4163
+ .premium-blog-post-container .premium-blog-cats-container a {
4164
+ display: block;
4165
+ font-size: 12px;
4166
+ color: #fff;
4167
+ background-color: #777;
4168
+ margin: 0 0 10px 3px;
4169
+ padding: 5px;
4170
+ -webkit-transition: all 0.3s ease-in-out;
4171
+ transition: all 0.3s ease-in-out;
4172
+ }
4173
+
4174
+ /*
4175
+ * Diagonal Effect
4176
+ */
4177
+ .premium-blog-diagonal-container {
4178
+ position: absolute;
4179
+ top: 0;
4180
+ right: 0;
4181
+ width: 100%;
4182
+ height: 100%;
4183
+ }
4184
+
4185
+ .premium-blog-diagonal-effect:before {
4186
+ position: absolute;
4187
+ top: 0px;
4188
+ right: 0px;
4189
+ width: 100%;
4190
+ height: 100%;
4191
+ content: " ";
4192
+ z-index: 1;
4193
+ background: rgba(255, 255, 255, 0.2);
4194
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4195
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4196
+ -webkit-transition: all 0.3s linear 0s;
4197
+ transition: all 0.3s linear 0s;
4198
+ }
4199
+
4200
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
4201
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4202
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4203
+ }
4204
+
4205
+ /*
4206
+ * Framed Effect
4207
+ */
4208
+ .premium-blog-framed-effect {
4209
+ position: absolute;
4210
+ width: -webkit-calc(100% - 30px);
4211
+ width: calc(100% - 30px);
4212
+ height: -webkit-calc(100% - 30px);
4213
+ height: calc(100% - 30px);
4214
+ top: 15px;
4215
+ right: 15px;
4216
+ opacity: 0;
4217
+ -webkit-transform: scale(0.3);
4218
+ -ms-transform: scale(0.3);
4219
+ transform: scale(0.3);
4220
+ -webkit-transition: all 0.3s linear 0s;
4221
+ transition: all 0.3s linear 0s;
4222
+ }
4223
+
4224
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
4225
+ opacity: 0.99;
4226
+ -webkit-transform: scale(1);
4227
+ -ms-transform: scale(1);
4228
+ transform: scale(1);
4229
+ }
4230
+
4231
+ /*
4232
+ * Bordered Effect
4233
+ */
4234
+ .premium-blog-bordered-effect {
4235
+ position: absolute;
4236
+ top: 0;
4237
+ right: 0;
4238
+ width: 100%;
4239
+ height: 100%;
4240
+ opacity: 0;
4241
+ padding: 15px;
4242
+ -webkit-transition: all 0.3s linear 0s;
4243
+ transition: all 0.3s linear 0s;
4244
+ }
4245
+
4246
+ .premium-blog-bordered-effect .premium-blog-post-link:before,
4247
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
4248
+ content: "";
4249
+ display: block;
4250
+ position: absolute;
4251
+ top: 0;
4252
+ right: 0;
4253
+ width: 100%;
4254
+ height: 100%;
4255
+ -webkit-transition: all 0.5s linear 0s;
4256
+ transition: all 0.5s linear 0s;
4257
+ -webkit-transition-delay: 0s;
4258
+ transition-delay: 0s;
4259
+ border-color: rgba(255, 255, 255, 0.45);
4260
+ }
4261
+
4262
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
4263
+ border-left: 2px solid;
4264
+ border-right: 2px solid;
4265
+ -webkit-transform: scale(1, 0);
4266
+ -ms-transform: scale(1, 0);
4267
+ transform: scale(1, 0);
4268
+ -webkit-transform-origin: 0% 0;
4269
+ -ms-transform-origin: 0% 0;
4270
+ transform-origin: 0% 0;
4271
+ }
4272
+
4273
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
4274
+ border-top: 2px solid;
4275
+ border-bottom: 2px solid;
4276
+ -webkit-transform: scale(0, 1);
4277
+ -ms-transform: scale(0, 1);
4278
+ transform: scale(0, 1);
4279
+ -webkit-transform-origin: 100% 0;
4280
+ -ms-transform-origin: 100% 0;
4281
+ transform-origin: 100% 0;
4282
+ }
4283
+
4284
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
4285
+ opacity: 0.99;
4286
+ }
4287
+
4288
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
4289
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
4290
+ -webkit-transition-delay: 0.15s;
4291
+ transition-delay: 0.15s;
4292
+ opacity: 1;
4293
+ -webkit-transform: scale(1);
4294
+ -ms-transform: scale(1);
4295
+ transform: scale(1);
4296
+ }
4297
+
4298
+ /*
4299
+ * Squares Effect
4300
+ */
4301
+ .premium-blog-squares-effect,
4302
+ .premium-blog-squares-square-container {
4303
+ position: absolute;
4304
+ top: 0;
4305
+ right: 0;
4306
+ width: 100%;
4307
+ height: 100%;
4308
+ }
4309
+
4310
+ .premium-blog-squares-effect:before,
4311
+ .premium-blog-squares-effect:after {
4312
+ position: absolute;
4313
+ content: "";
4314
+ top: 0;
4315
+ right: 0;
4316
+ width: 50%;
4317
+ height: 50%;
4318
+ -webkit-transform: translate(100%, -100%);
4319
+ -ms-transform: translate(100%, -100%);
4320
+ transform: translate(100%, -100%);
4321
+ opacity: 0.7;
4322
+ -webkit-transition: all 0.3s linear 0s;
4323
+ transition: all 0.3s linear 0s;
4324
+ }
4325
+
4326
+ .premium-blog-squares-square-container:before,
4327
+ .premium-blog-squares-square-container:after {
4328
+ position: absolute;
4329
+ content: "";
4330
+ top: 0;
4331
+ right: 0;
4332
+ width: 50%;
4333
+ height: 50%;
4334
+ -webkit-transform: translate(100%, -100%);
4335
+ -ms-transform: translate(100%, -100%);
4336
+ transform: translate(100%, -100%);
4337
+ opacity: 0.7;
4338
+ -webkit-transition: all 0.3s linear 0s;
4339
+ transition: all 0.3s linear 0s;
4340
+ }
4341
+
4342
+ .premium-blog-squares-square-container:before,
4343
+ .premium-blog-squares-square-container:after {
4344
+ opacity: 0.8;
4345
+ }
4346
+
4347
+ .premium-blog-squares-effect:after {
4348
+ -webkit-transform: translate(-200%, 200%);
4349
+ -ms-transform: translate(-200%, 200%);
4350
+ transform: translate(-200%, 200%);
4351
+ }
4352
+
4353
+ .premium-blog-squares-square-container:before {
4354
+ -webkit-transform: translate(100%, 200%);
4355
+ -ms-transform: translate(100%, 200%);
4356
+ transform: translate(100%, 200%);
4357
+ }
4358
+
4359
+ .premium-blog-squares-square-container:after {
4360
+ -webkit-transform: translate(-200%, -100%);
4361
+ -ms-transform: translate(-200%, -100%);
4362
+ transform: translate(-200%, -100%);
4363
+ }
4364
+
4365
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
4366
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4367
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4368
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4369
+ }
4370
+
4371
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
4372
+ -webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4373
+ -ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4374
+ transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4375
+ }
4376
+
4377
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
4378
+ -webkit-transform: translate(0, 100%);
4379
+ -ms-transform: translate(0, 100%);
4380
+ transform: translate(0, 100%);
4381
+ }
4382
+
4383
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
4384
+ -webkit-transform: translate(-100%, 0%);
4385
+ -ms-transform: translate(-100%, 0%);
4386
+ transform: translate(-100%, 0%);
4387
+ }
4388
+
4389
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
4390
+ opacity: 1;
4391
+ }
4392
+
4393
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
4394
+ opacity: 1;
4395
+ -webkit-transform: scale(1);
4396
+ -ms-transform: scale(1);
4397
+ transform: scale(1);
4398
+ }
4399
+
4400
+ .premium-blog-clear-fix {
4401
+ clear: both;
4402
+ }
4403
+
4404
+ .premium-blog-masked .premium-blog-thumbnail-container {
4405
+ position: relative;
4406
+ overflow: visible;
4407
+ }
4408
+
4409
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
4410
+ position: absolute;
4411
+ height: 100px;
4412
+ width: 100%;
4413
+ bottom: -5px;
4414
+ right: 0;
4415
+ fill: #f5f5f5;
4416
+ z-index: 99;
4417
+ }
4418
+
4419
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
4420
+ -webkit-transform: rotate(180deg);
4421
+ -ms-transform: rotate(180deg);
4422
+ transform: rotate(180deg);
4423
+ }
4424
+
4425
+ .premium-blog-masked .premium-blog-author-thumbnail,
4426
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
4427
+ z-index: 999 !important;
4428
+ }
4429
+
4430
+ /*Post Format Container*/
4431
+ .premium-blog-format-link {
4432
+ padding: 5px;
4433
+ line-height: 0;
4434
+ }
4435
+
4436
+ /*Post Format Icon*/
4437
+ /*Post Format Content Margin */
4438
+ .premium-blog-entry-meta {
4439
+ line-height: 1.3em;
4440
+ font-size: 12px;
4441
+ margin-bottom: 13px;
4442
+ color: #adadad;
4443
+ }
4444
+
4445
+ .premium-blog-entry-meta i {
4446
+ margin-left: 3px;
4447
+ -webkit-transition: all 0.3s ease-in-out;
4448
+ transition: all 0.3s ease-in-out;
4449
+ }
4450
+
4451
+ .premium-blog-meta-data {
4452
+ display: inline-block;
4453
+ }
4454
+
4455
+ .premium-blog-meta-data .premium-blog-meta-separator {
4456
+ margin: 0 5px;
4457
+ }
4458
+
4459
+ .premium-blog-meta-data a,
4460
+ .premium-blog-meta-data span {
4461
+ color: inherit;
4462
+ -webkit-transition: all 0.3s ease-in-out;
4463
+ transition: all 0.3s ease-in-out;
4464
+ }
4465
+
4466
+ .premium-blog-author-thumbnail {
4467
+ position: relative;
4468
+ padding: 0 30px;
4469
+ width: 100%;
4470
+ top: -10px;
4471
+ height: 0;
4472
+ pointer-events: none;
4473
+ }
4474
+
4475
+ .premium-blog-author-thumbnail img {
4476
+ -webkit-border-radius: 50%;
4477
+ border-radius: 50%;
4478
+ width: 60px;
4479
+ pointer-events: all;
4480
+ -webkit-transform: translateY(-50%);
4481
+ -ms-transform: translateY(-50%);
4482
+ transform: translateY(-50%);
4483
+ }
4484
+
4485
+ .premium-blog-entry-title a,
4486
+ .premium-blog-post-tags-container a,
4487
+ .premium-blog-post-content .premium-blog-excerpt-link {
4488
+ -webkit-transition: all 0.3s ease-in-out;
4489
+ transition: all 0.3s ease-in-out;
4490
+ }
4491
+
4492
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
4493
+ background-color: transparent;
4494
+ color: #54595f;
4495
+ padding: 0;
4496
+ }
4497
+
4498
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
4499
+ width: 100%;
4500
+ }
4501
+
4502
+ .premium-blog-post-tags-container {
4503
+ margin-top: 8px;
4504
+ -js-display: flex;
4505
+ display: -webkit-box;
4506
+ display: -webkit-flex;
4507
+ display: -moz-box;
4508
+ display: -ms-flexbox;
4509
+ display: flex;
4510
+ -webkit-box-align: center;
4511
+ -webkit-align-items: center;
4512
+ -moz-box-align: center;
4513
+ -ms-flex-align: center;
4514
+ align-items: center;
4515
+ -webkit-flex-wrap: wrap;
4516
+ -ms-flex-wrap: wrap;
4517
+ flex-wrap: wrap;
4518
+ }
4519
+
4520
+ .premium-blog-post-tags-container a {
4521
+ color: inherit;
4522
+ margin-right: 5px;
4523
+ }
4524
+
4525
+ .premium-blog-align-center .post-categories,
4526
+ .premium-blog-align-center .premium-blog-inner-container,
4527
+ .premium-blog-align-center .premium-blog-post-tags-container {
4528
+ -webkit-box-pack: center;
4529
+ -webkit-justify-content: center;
4530
+ -moz-box-pack: center;
4531
+ -ms-flex-pack: center;
4532
+ justify-content: center;
4533
+ }
4534
+
4535
+ .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
4536
+ .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
4537
+ .premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
4538
+ -webkit-box-pack: end;
4539
+ -webkit-justify-content: flex-end;
4540
+ -moz-box-pack: end;
4541
+ -ms-flex-pack: end;
4542
+ justify-content: flex-end;
4543
+ }
4544
+
4545
+ .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4546
+ .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4547
+ .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4548
+ -webkit-box-pack: start;
4549
+ -webkit-justify-content: flex-start;
4550
+ -moz-box-pack: start;
4551
+ -ms-flex-pack: start;
4552
+ justify-content: flex-start;
4553
+ }
4554
+
4555
+ .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
4556
+ .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
4557
+ .premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
4558
+ -webkit-box-pack: start;
4559
+ -webkit-justify-content: flex-start;
4560
+ -moz-box-pack: start;
4561
+ -ms-flex-pack: start;
4562
+ justify-content: flex-start;
4563
+ }
4564
+
4565
+ .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4566
+ .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4567
+ .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4568
+ -webkit-box-pack: end;
4569
+ -webkit-justify-content: flex-end;
4570
+ -moz-box-pack: end;
4571
+ -ms-flex-pack: end;
4572
+ justify-content: flex-end;
4573
+ }
4574
+
4575
+ /* Pagination */
4576
+ .premium-blog-pagination-container {
4577
+ text-align: left;
4578
+ }
4579
+
4580
+ .premium-blog-pagination-container span {
4581
+ cursor: default;
4582
+ }
4583
+
4584
+ .premium-blog-pagination-container .page-numbers {
4585
+ display: inline-block;
4586
+ color: #000;
4587
+ line-height: 1;
4588
+ font-size: 1em;
4589
+ font-weight: 400;
4590
+ text-decoration: none;
4591
+ padding: 0.75em;
4592
+ margin: 0 0 0.4em 0.4em;
4593
+ -webkit-transition: all 0.2s ease-in-out;
4594
+ transition: all 0.2s ease-in-out;
4595
+ }
4596
+
4597
+ .premium-blog-wrap .premium-loading-feed {
4598
+ display: block;
4599
+ position: absolute;
4600
+ width: 100%;
4601
+ height: 100%;
4602
+ top: 0px;
4603
+ right: 0px;
4604
+ bottom: 0px;
4605
+ left: 0px;
4606
+ background: rgba(255, 255, 255, 0.2);
4607
+ -js-display: flex;
4608
+ display: -webkit-box;
4609
+ display: -webkit-flex;
4610
+ display: -moz-box;
4611
+ display: -ms-flexbox;
4612
+ display: flex;
4613
+ -webkit-box-align: center;
4614
+ -webkit-align-items: center;
4615
+ -moz-box-align: center;
4616
+ -ms-flex-align: center;
4617
+ align-items: center;
4618
+ z-index: 99;
4619
+ }
4620
+
4621
+ .premium-blog-wrap {
4622
+ -js-display: flex;
4623
+ display: -webkit-box;
4624
+ display: -webkit-flex;
4625
+ display: -moz-box;
4626
+ display: -ms-flexbox;
4627
+ display: flex;
4628
+ -webkit-flex-wrap: wrap;
4629
+ -ms-flex-wrap: wrap;
4630
+ flex-wrap: wrap;
4631
+ }
4632
+
4633
+ .premium-blog-wrap ul.slick-dots {
4634
+ width: 100%;
4635
+ }
4636
+
4637
+ /**
4638
+ * Even Layout
4639
+ */
4640
+ .premium-blog-even .premium-blog-post-container {
4641
+ height: 100%;
4642
+ }
4643
+
4644
+ .premium-blog-even .slick-track {
4645
+ -js-display: flex;
4646
+ display: -webkit-box;
4647
+ display: -webkit-flex;
4648
+ display: -moz-box;
4649
+ display: -ms-flexbox;
4650
+ display: flex;
4651
+ }
4652
+
4653
+ .premium-blog-even .slick-slide {
4654
+ height: inherit !important;
4655
+ }
4656
+
4657
+ /**
4658
+ * Responsive Style
4659
+ */
4660
+ @media (max-width: 768px) {
4661
+ .premium-blog-content-wrapper {
4662
+ top: 0;
4663
+ margin: 0;
4664
+ padding: 15px;
4665
+ }
4666
+
4667
+ .premium-blog-thumb-effect-wrapper {
4668
+ margin-bottom: 15px;
4669
+ }
4670
+ }
4671
+
4672
+ [dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
4673
+ [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
4674
+ direction: ltr;
4675
+ }
4676
+
4677
+ /************ Premium Team Members ************/
4678
+ /*********************************************/
4679
+ .premium-person-container {
4680
+ position: relative;
4681
+ }
4682
+
4683
+ .premium-person-image-container {
4684
+ position: relative;
4685
+ text-align: center;
4686
+ }
4687
+
4688
+ .premium-person-image-container .premium-person-image-wrap {
4689
+ overflow: hidden;
4690
+ }
4691
+
4692
+ .premium-person-zoomout-effect .premium-person-image-container img,
4693
+ .premium-person-scale-effect .premium-person-image-container img {
4694
+ -webkit-transform: scale(1.2);
4695
+ -ms-transform: scale(1.2);
4696
+ transform: scale(1.2);
4697
+ }
4698
+
4699
+ .premium-person-sepia-effect .premium-person-image-container img {
4700
+ -webkit-filter: sepia(30%);
4701
+ filter: sepia(30%);
4702
+ }
4703
+
4704
+ .premium-person-bright-effect .premium-person-image-container img {
4705
+ -webkit-filter: brightness(1);
4706
+ filter: brightness(1);
4707
+ }
4708
+
4709
+ .premium-person-trans-effect .premium-person-image-container img {
4710
+ -webkit-transform: translateX(15px) scale(1.1);
4711
+ -ms-transform: translateX(15px) scale(1.1);
4712
+ transform: translateX(15px) scale(1.1);
4713
+ }
4714
+
4715
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
4716
+ -webkit-transform: scale(1.2);
4717
+ -ms-transform: scale(1.2);
4718
+ transform: scale(1.2);
4719
+ }
4720
+
4721
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
4722
+ -webkit-transform: scale(1.1);
4723
+ -ms-transform: scale(1.1);
4724
+ transform: scale(1.1);
4725
+ }
4726
+
4727
+ .premium-person-scale-effect:hover .premium-person-image-container img {
4728
+ -webkit-transform: scale(1.3) rotate(-5deg);
4729
+ -ms-transform: scale(1.3) rotate(-5deg);
4730
+ transform: scale(1.3) rotate(-5deg);
4731
+ }
4732
+
4733
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
4734
+ -webkit-filter: grayscale(100%);
4735
+ filter: grayscale(100%);
4736
+ }
4737
+
4738
+ .premium-person-blur-effect:hover .premium-person-image-container img {
4739
+ -webkit-filter: blur(3px);
4740
+ filter: blur(3px);
4741
+ }
4742
+
4743
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
4744
+ -webkit-filter: sepia(0%);
4745
+ filter: sepia(0%);
4746
+ }
4747
+
4748
+ .premium-person-bright-effect:hover .premium-person-image-container img {
4749
+ -webkit-filter: brightness(1.2);
4750
+ filter: brightness(1.2);
4751
+ }
4752
+
4753
+ .premium-person-trans-effect:hover .premium-person-image-container img {
4754
+ -webkit-transform: translateX(0px) scale(1.1);
4755
+ -ms-transform: translateX(0px) scale(1.1);
4756
+ transform: translateX(0px) scale(1.1);
4757
+ }
4758
+
4759
+ .premium-person-container .premium-person-image-container img {
4760
+ width: 100%;
4761
+ height: 100%;
4762
+ -o-object-fit: cover;
4763
+ object-fit: cover;
4764
+ -webkit-transition: all 0.5s ease-in-out;
4765
+ transition: all 0.5s ease-in-out;
4766
+ }
4767
+
4768
+ .premium-person-style2 .premium-person-social {
4769
+ position: absolute;
4770
+ top: 0;
4771
+ right: 0;
4772
+ width: 100%;
4773
+ height: 100%;
4774
+ z-index: 2;
4775
+ -js-display: flex;
4776
+ display: -webkit-box;
4777
+ display: -webkit-flex;
4778
+ display: -moz-box;
4779
+ display: -ms-flexbox;
4780
+ display: flex;
4781
+ -webkit-box-pack: center;
4782
+ -webkit-justify-content: center;
4783
+ -moz-box-pack: center;
4784
+ -ms-flex-pack: center;
4785
+ justify-content: center;
4786
+ -webkit-box-align: center;
4787
+ -webkit-align-items: center;
4788
+ -moz-box-align: center;
4789
+ -ms-flex-align: center;
4790
+ align-items: center;
4791
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4792
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4793
+ -webkit-transition: all 0.5s linear 0s;
4794
+ transition: all 0.5s linear 0s;
4795
+ opacity: 0;
4796
+ }
4797
+
4798
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4799
+ opacity: 1;
4800
+ }
4801
+
4802
+ .premium-person-list-item a {
4803
+ display: inline-block;
4804
+ }
4805
+
4806
+ .premium-person-style2 .premium-person-list-item a {
4807
+ opacity: 0;
4808
+ -webkit-transform: scale(0);
4809
+ -ms-transform: scale(0);
4810
+ transform: scale(0);
4811
+ -webkit-transition: all 0.5s ease-in-out 0s;
4812
+ transition: all 0.5s ease-in-out 0s;
4813
+ }
4814
+
4815
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4816
+ opacity: 1;
4817
+ -webkit-transform: scale(1);
4818
+ -ms-transform: scale(1);
4819
+ transform: scale(1);
4820
+ }
4821
+
4822
+ .premium-person-info-container {
4823
+ padding: 30px 15px;
4824
+ }
4825
+
4826
+ .premium-person-name {
4827
+ margin: 0 0 5px;
4828
+ font-weight: 700;
4829
+ }
4830
+
4831
+ .premium-person-title {
4832
+ margin: 0 0 20px;
4833
+ padding: 0;
4834
+ }
4835
+
4836
+ .premium-person-content {
4837
+ margin: 0 0 30px;
4838
+ }
4839
+
4840
+ /*Override Theme List Margin*/
4841
+ ul.premium-person-social-list {
4842
+ margin: 0px !important;
4843
+ padding: 0;
4844
+ }
4845
+
4846
+ .premium-person-social-list .premium-person-list-item {
4847
+ display: inline;
4848
+ list-style: none;
4849
+ }
4850
+
4851
+ .premium-person-social-list li {
4852
+ position: relative;
4853
+ bottom: 0px;
4854
+ -webkit-transition: all 0.2s ease-in-out;
4855
+ transition: all 0.2s ease-in-out;
4856
+ }
4857
+
4858
+ .premium-person-social-list li i {
4859
+ position: relative;
4860
+ bottom: 0px;
4861
+ -webkit-transition: all 0.2s ease-in-out;
4862
+ transition: all 0.2s ease-in-out;
4863
+ }
4864
+
4865
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
4866
+ background-color: #3b5998 !important;
4867
+ }
4868
+
4869
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
4870
+ background-color: #55acee !important;
4871
+ }
4872
+
4873
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4874
+ background-color: #0077b5 !important;
4875
+ }
4876
+
4877
+ .premium-person-defaults-yes li.premium-person-google:hover a {
4878
+ background-color: #dc4e41 !important;
4879
+ }
4880
+
4881
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
4882
+ background-color: #b31217 !important;
4883
+ }
4884
+
4885
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
4886
+ background-color: #e4405f !important;
4887
+ }
4888
+
4889
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
4890
+ background-color: #00aff0 !important;
4891
+ }
4892
+
4893
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4894
+ background-color: #bd081c !important;
4895
+ }
4896
+
4897
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4898
+ background-color: #ea4c89 !important;
4899
+ }
4900
+
4901
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
4902
+ background-color: #b23121 !important;
4903
+ }
4904
+
4905
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
4906
+ background-color: #1769ff !important;
4907
+ }
4908
+
4909
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4910
+ background-color: #25d366 !important;
4911
+ }
4912
+
4913
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
4914
+ background-color: #0088cc !important;
4915
+ }
4916
+
4917
+ .premium-person-defaults-yes li.premium-person-site:hover a {
4918
+ background-color: #0055a5 !important;
4919
+ }
4920
+
4921
+ .premium-person-social-list li:hover a {
4922
+ -webkit-box-shadow: none;
4923
+ box-shadow: none;
4924
+ }
4925
+
4926
+ .premium-person-social-list li a:focus {
4927
+ -webkit-box-shadow: none;
4928
+ box-shadow: none;
4929
+ outline: none;
4930
+ }
4931
+
4932
+ .premium-person-social-list li i {
4933
+ font-size: 18px;
4934
+ }
4935
+
4936
+ .elementor-widget-premium-addon-person .elementor-widget-container {
4937
+ -js-display: flex;
4938
+ display: -webkit-box;
4939
+ display: -webkit-flex;
4940
+ display: -moz-box;
4941
+ display: -ms-flexbox;
4942
+ display: flex;
4943
+ -webkit-box-pack: center;
4944
+ -webkit-justify-content: center;
4945
+ -moz-box-pack: center;
4946
+ -ms-flex-pack: center;
4947
+ justify-content: center;
4948
+ }
4949
+
4950
+ .premium-persons-container.multiple-persons {
4951
+ -js-display: flex;
4952
+ display: -webkit-box;
4953
+ display: -webkit-flex;
4954
+ display: -moz-box;
4955
+ display: -ms-flexbox;
4956
+ display: flex;
4957
+ -webkit-flex-wrap: wrap;
4958
+ -ms-flex-wrap: wrap;
4959
+ flex-wrap: wrap;
4960
+ width: 100%;
4961
+ }
4962
+
4963
+ .premium-person-style1 .premium-person-container {
4964
+ overflow: hidden;
4965
+ }
4966
+
4967
+ .premium-person-style1 .premium-person-container .premium-person-info {
4968
+ position: absolute;
4969
+ top: auto;
4970
+ left: 0;
4971
+ right: 0;
4972
+ -webkit-transition: all 500ms ease 0s;
4973
+ transition: all 500ms ease 0s;
4974
+ -webkit-transform: translate3d(0, 100%, 0);
4975
+ transform: translate3d(0, 100%, 0);
4976
+ }
4977
+
4978
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
4979
+ -webkit-transform: translate3d(0, 0, 0);
4980
+ transform: translate3d(0, 0, 0);
4981
+ bottom: -1px !important;
4982
+ }
4983
+
4984
+ .premium-person-style1 .premium-person-social-list li:hover {
4985
+ bottom: 5px;
4986
+ }
4987
+
4988
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4989
+ -webkit-box-align: start;
4990
+ -webkit-align-items: flex-start;
4991
+ -moz-box-align: start;
4992
+ -ms-flex-align: start;
4993
+ align-items: flex-start;
4994
+ }
4995
+
4996
+ .premium-person-style1 .slick-track {
4997
+ -js-display: flex;
4998
+ display: -webkit-box;
4999
+ display: -webkit-flex;
5000
+ display: -moz-box;
5001
+ display: -ms-flexbox;
5002
+ display: flex;
5003
+ }
5004
+
5005
+ .premium-person-style1 .slick-slide {
5006
+ height: inherit !important;
5007
+ }
5008
+
5009
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
5010
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
5011
+ height: 100%;
5012
+ }
5013
+
5014
+ .premium-person-style3 .premium-person-info-container {
5015
+ position: absolute;
5016
+ top: 0;
5017
+ right: 0;
5018
+ width: 100%;
5019
+ height: 100%;
5020
+ -js-display: flex;
5021
+ display: -webkit-box;
5022
+ display: -webkit-flex;
5023
+ display: -moz-box;
5024
+ display: -ms-flexbox;
5025
+ display: flex;
5026
+ -webkit-box-orient: vertical;
5027
+ -webkit-box-direction: normal;
5028
+ -webkit-flex-direction: column;
5029
+ -moz-box-orient: vertical;
5030
+ -moz-box-direction: normal;
5031
+ -ms-flex-direction: column;
5032
+ flex-direction: column;
5033
+ -webkit-box-pack: justify;
5034
+ -webkit-justify-content: space-between;
5035
+ -moz-box-pack: justify;
5036
+ -ms-flex-pack: justify;
5037
+ justify-content: space-between;
5038
+ }
5039
+
5040
+ .premium-person-style3 .premium-person-title-desc-wrap {
5041
+ -js-display: flex;
5042
+ display: -webkit-box;
5043
+ display: -webkit-flex;
5044
+ display: -moz-box;
5045
+ display: -ms-flexbox;
5046
+ display: flex;
5047
+ -webkit-box-orient: horizontal;
5048
+ -webkit-box-direction: reverse;
5049
+ -webkit-flex-direction: row-reverse;
5050
+ -moz-box-orient: horizontal;
5051
+ -moz-box-direction: reverse;
5052
+ -ms-flex-direction: row-reverse;
5053
+ flex-direction: row-reverse;
5054
+ -webkit-box-pack: justify;
5055
+ -webkit-justify-content: space-between;
5056
+ -moz-box-pack: justify;
5057
+ -ms-flex-pack: justify;
5058
+ justify-content: space-between;
5059
+ -webkit-box-align: start;
5060
+ -webkit-align-items: flex-start;
5061
+ -moz-box-align: start;
5062
+ -ms-flex-align: start;
5063
+ align-items: flex-start;
5064
+ }
5065
+
5066
+ .premium-person-style3 .premium-person-name-icons-wrap {
5067
+ -js-display: flex;
5068
+ display: -webkit-box;
5069
+ display: -webkit-flex;
5070
+ display: -moz-box;
5071
+ display: -ms-flexbox;
5072
+ display: flex;
5073
+ -webkit-box-pack: justify;
5074
+ -webkit-justify-content: space-between;
5075
+ -moz-box-pack: justify;
5076
+ -ms-flex-pack: justify;
5077
+ justify-content: space-between;
5078
+ -webkit-box-align: end;
5079
+ -webkit-align-items: flex-end;
5080
+ -moz-box-align: end;
5081
+ -ms-flex-align: end;
5082
+ align-items: flex-end;
5083
+ }
5084
+
5085
+ .premium-person-style3 .premium-person-title {
5086
+ opacity: 0;
5087
+ -webkit-transition: all 0.3s ease;
5088
+ transition: all 0.3s ease;
5089
+ width: 0;
5090
+ }
5091
+
5092
+ .premium-person-style3 .premium-person-title span {
5093
+ display: inline-block;
5094
+ }
5095
+
5096
+ .premium-person-style3 .premium-person-name {
5097
+ padding-right: 10px;
5098
+ }
5099
+
5100
+ .premium-person-style3 .premium-person-social-list {
5101
+ -js-display: flex;
5102
+ display: -webkit-box;
5103
+ display: -webkit-flex;
5104
+ display: -moz-box;
5105
+ display: -ms-flexbox;
5106
+ display: flex;
5107
+ -webkit-box-orient: vertical;
5108
+ -webkit-box-direction: normal;
5109
+ -webkit-flex-direction: column;
5110
+ -moz-box-orient: vertical;
5111
+ -moz-box-direction: normal;
5112
+ -ms-flex-direction: column;
5113
+ flex-direction: column;
5114
+ -webkit-transform: translateY(20px);
5115
+ -ms-transform: translateY(20px);
5116
+ transform: translateY(20px);
5117
+ opacity: 0;
5118
+ -webkit-transition: all 0.3s ease;
5119
+ transition: all 0.3s ease;
5120
+ }
5121
+
5122
+ .premium-person-style3 .premium-person-list-item {
5123
+ line-height: 0;
5124
+ }
5125
+
5126
+ .premium-person-style3 .premium-person-list-item a {
5127
+ padding: 5px 0 0 10px;
5128
+ margin: 5px 0;
5129
+ }
5130
+
5131
+ .premium-person-style3 .premium-person-container:hover .premium-person-title {
5132
+ opacity: 1;
5133
+ }
5134
+
5135
+ .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
5136
+ opacity: 1;
5137
+ -webkit-transform: translateY(0);
5138
+ -ms-transform: translateY(0);
5139
+ transform: translateY(0);
5140
+ }
5141
+
5142
+ .premium-persons-title-cw .premium-person-title {
5143
+ -webkit-transform: translateX(-15px) rotate(-90deg);
5144
+ -ms-transform: translateX(-15px) rotate(-90deg);
5145
+ transform: translateX(-15px) rotate(-90deg);
5146
+ -webkit-transform-origin: top;
5147
+ -ms-transform-origin: top;
5148
+ transform-origin: top;
5149
+ }
5150
+
5151
+ .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
5152
+ -webkit-transform: translateX(0) rotate(-90deg);
5153
+ -ms-transform: translateX(0) rotate(-90deg);
5154
+ transform: translateX(0) rotate(-90deg);
5155
+ }
5156
+
5157
+ .premium-persons-title-ccw .premium-person-title {
5158
+ width: auto;
5159
+ margin-left: 20px;
5160
+ -webkit-transform: translateX(-15px) rotate(90deg);
5161
+ -ms-transform: translateX(-15px) rotate(90deg);
5162
+ transform: translateX(-15px) rotate(90deg);
5163
+ -webkit-transform-origin: center left;
5164
+ -ms-transform-origin: center left;
5165
+ transform-origin: center left;
5166
+ }
5167
+
5168
+ .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
5169
+ -webkit-transform: translateX(0) rotate(90deg);
5170
+ -ms-transform: translateX(0) rotate(90deg);
5171
+ transform: translateX(0) rotate(90deg);
5172
+ }
5173
+
5174
+ /**************** Premium Fancy Text *******************/
5175
+ /*******************************************************/
5176
+ .premium-suffix-text,
5177
+ .premium-fancy-text,
5178
+ .premium-prefix-text {
5179
+ font-size: 40px;
5180
+ }
5181
+
5182
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
5183
+ list-style: none;
5184
+ }
5185
+
5186
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
5187
+ vertical-align: top;
5188
+ }
5189
+
5190
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
5191
+ margin: 0;
5192
+ padding: 0;
5193
+ border: none;
5194
+ position: relative;
5195
+ }
5196
+
5197
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
5198
+ position: absolute;
5199
+ top: 0;
5200
+ left: 0;
5201
+ display: inline-block;
5202
+ }
5203
+
5204
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
5205
+ opacity: 0;
5206
+ -webkit-animation: pa-zoom-out 0.8s;
5207
+ animation: pa-zoom-out 0.8s;
5208
+ }
5209
+
5210
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
5211
+ position: relative !important;
5212
+ -webkit-animation: pa-zoom-in 0.8s;
5213
+ animation: pa-zoom-in 0.8s;
5214
+ }
5215
+
5216
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
5217
+ -webkit-perspective: 300px;
5218
+ perspective: 300px;
5219
+ }
5220
+
5221
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
5222
+ -webkit-transform-origin: 50% 100%;
5223
+ -ms-transform-origin: 50% 100%;
5224
+ transform-origin: 50% 100%;
5225
+ }
5226
+
5227
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
5228
+ opacity: 0;
5229
+ -webkit-transform: rotateX(180deg);
5230
+ transform: rotateX(180deg);
5231
+ -webkit-animation: pa-rotate-out 1.2s;
5232
+ animation: pa-rotate-out 1.2s;
5233
+ }
5234
+
5235
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
5236
+ position: relative !important;
5237
+ -webkit-transform: rotateX(0deg);
5238
+ transform: rotateX(0deg);
5239
+ -webkit-animation: pa-rotate-in 1.2s;
5240
+ animation: pa-rotate-in 1.2s;
5241
+ }
5242
+
5243
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
5244
+ opacity: 0;
5245
+ }
5246
+
5247
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
5248
+ position: relative !important;
5249
+ }
5250
+
5251
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
5252
+ display: inline-block;
5253
+ width: 200px;
5254
+ font-weight: 400;
5255
+ }
5256
+
5257
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
5258
+ position: relative;
5259
+ vertical-align: sub;
5260
+ }
5261
+
5262
+ .premium-fancy-text-wrapper.auto-fade g>text {
5263
+ text-anchor: start;
5264
+ shape-rendering: crispEdges;
5265
+ opacity: 0;
5266
+ font-size: 300px;
5267
+ -webkit-animation-name: pa-auto-fade;
5268
+ animation-name: pa-auto-fade;
5269
+ -moz-animation-name: pa-auto-fade;
5270
+ -webkit-animation-duration: 9s;
5271
+ animation-duration: 9s;
5272
+ -webkit-animation-timing-function: linear;
5273
+ animation-timing-function: linear;
5274
+ -webkit-animation-iteration-count: infinite;
5275
+ animation-iteration-count: infinite;
5276
+ }
5277
+
5278
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
5279
+ -webkit-animation-delay: 0s;
5280
+ animation-delay: 0s;
5281
+ }
5282
+
5283
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
5284
+ -webkit-animation-delay: 3s;
5285
+ animation-delay: 3s;
5286
+ }
5287
+
5288
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
5289
+ -webkit-animation-delay: 6s;
5290
+ animation-delay: 6s;
5291
+ }
5292
+
5293
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
5294
+ position: relative;
5295
+ }
5296
+
5297
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
5298
+ position: absolute;
5299
+ width: 100%;
5300
+ height: 3px;
5301
+ bottom: 0;
5302
+ left: 0;
5303
+ animation: pa-loading-bar 2.5s ease-out infinite;
5304
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
5305
+ }
5306
+
5307
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
5308
+ -webkit-animation-play-state: paused;
5309
+ animation-play-state: paused;
5310
+ }
5311
+
5312
+ @-webkit-keyframes pa-auto-fade {
5313
+ 0% {
5314
+ opacity: 0;
5315
+ }
5316
+
5317
+ 20% {
5318
+ opacity: 1;
5319
+ }
5320
+
5321
+ 35% {
5322
+ opacity: 0;
5323
+ }
5324
+
5325
+ 100% {
5326
+ opacity: 0;
5327
+ }
5328
+ }
5329
+
5330
+ @keyframes pa-auto-fade {
5331
+ 0% {
5332
+ opacity: 0;
5333
+ }
5334
+
5335
+ 20% {
5336
+ opacity: 1;
5337
+ }
5338
+
5339
+ 35% {
5340
+ opacity: 0;
5341
+ }
5342
+
5343
+ 100% {
5344
+ opacity: 0;
5345
+ }
5346
+ }
5347
+
5348
+ @-webkit-keyframes pa-loading-bar {
5349
+ 0% {
5350
+ width: 0;
5351
+ }
5352
+
5353
+ 100% {
5354
+ width: 100;
5355
+ }
5356
+ }
5357
+
5358
+ @keyframes pa-loading-bar {
5359
+ 0% {
5360
+ width: 0;
5361
+ }
5362
+
5363
+ 100% {
5364
+ width: 100;
5365
+ }
5366
+ }
5367
+
5368
+ @-webkit-keyframes pa-zoom-in {
5369
+ 0% {
5370
+ opacity: 0;
5371
+ -webkit-transform: translateZ(100px);
5372
+ transform: translateZ(100px);
5373
+ }
5374
+
5375
+ 100% {
5376
+ opacity: 1;
5377
+ -webkit-transform: translateZ(0);
5378
+ transform: translateZ(0);
5379
+ }
5380
+ }
5381
+
5382
+ @keyframes pa-zoom-in {
5383
+ 0% {
5384
+ opacity: 0;
5385
+ -webkit-transform: translateZ(100px);
5386
+ transform: translateZ(100px);
5387
+ }
5388
+
5389
+ 100% {
5390
+ opacity: 1;
5391
+ -webkit-transform: translateZ(0);
5392
+ transform: translateZ(0);
5393
+ }
5394
+ }
5395
+
5396
+ @-webkit-keyframes pa-zoom-out {
5397
+ 0% {
5398
+ opacity: 1;
5399
+ -webkit-transform: translateZ(0);
5400
+ transform: translateZ(0);
5401
+ }
5402
+
5403
+ 100% {
5404
+ opacity: 0;
5405
+ -webkit-transform: translateZ(-100px);
5406
+ transform: translateZ(-100px);
5407
+ }
5408
+ }
5409
+
5410
+ @keyframes pa-zoom-out {
5411
+ 0% {
5412
+ opacity: 1;
5413
+ -webkit-transform: translateZ(0);
5414
+ transform: translateZ(0);
5415
+ }
5416
+
5417
+ 100% {
5418
+ opacity: 0;
5419
+ -webkit-transform: translateZ(-100px);
5420
+ transform: translateZ(-100px);
5421
+ }
5422
+ }
5423
+
5424
+ @-webkit-keyframes pa-rotate-in {
5425
+ 0% {
5426
+ opacity: 0;
5427
+ -webkit-transform: rotateX(180deg);
5428
+ transform: rotateX(180deg);
5429
+ }
5430
+
5431
+ 35% {
5432
+ opacity: 0;
5433
+ -webkit-transform: rotateX(120deg);
5434
+ transform: rotateX(120deg);
5435
+ }
5436
+
5437
+ 65% {
5438
+ opacity: 0;
5439
+ }
5440
+
5441
+ 100% {
5442
+ opacity: 1;
5443
+ -webkit-transform: rotateX(360deg);
5444
+ transform: rotateX(360deg);
5445
+ }
5446
+ }
5447
+
5448
+ @keyframes pa-rotate-in {
5449
+ 0% {
5450
+ opacity: 0;
5451
+ -webkit-transform: rotateX(180deg);
5452
+ transform: rotateX(180deg);
5453
+ }
5454
+
5455
+ 35% {
5456
+ opacity: 0;
5457
+ -webkit-transform: rotateX(120deg);
5458
+ transform: rotateX(120deg);
5459
+ }
5460
+
5461
+ 65% {
5462
+ opacity: 0;
5463
+ }
5464
+
5465
+ 100% {
5466
+ opacity: 1;
5467
+ -webkit-transform: rotateX(360deg);
5468
+ transform: rotateX(360deg);
5469
+ }
5470
+ }
5471
+
5472
+ @-webkit-keyframes pa-rotate-out {
5473
+ 0% {
5474
+ opacity: 1;
5475
+ -webkit-transform: rotateX(0deg);
5476
+ transform: rotateX(0deg);
5477
+ }
5478
+
5479
+ 35% {
5480
+ opacity: 1;
5481
+ -webkit-transform: rotateX(-40deg);
5482
+ transform: rotateX(-40deg);
5483
+ }
5484
+
5485
+ 65% {
5486
+ opacity: 0;
5487
+ }
5488
+
5489
+ 100% {
5490
+ opacity: 0;
5491
+ -webkit-transform: rotateX(180deg);
5492
+ transform: rotateX(180deg);
5493
+ }
5494
+ }
5495
+
5496
+ @keyframes pa-rotate-out {
5497
+ 0% {
5498
+ opacity: 1;
5499
+ -webkit-transform: rotateX(0deg);
5500
+ transform: rotateX(0deg);
5501
+ }
5502
+
5503
+ 35% {
5504
+ opacity: 1;
5505
+ -webkit-transform: rotateX(-40deg);
5506
+ transform: rotateX(-40deg);
5507
+ }
5508
+
5509
+ 65% {
5510
+ opacity: 0;
5511
+ }
5512
+
5513
+ 100% {
5514
+ opacity: 0;
5515
+ -webkit-transform: rotateX(180deg);
5516
+ transform: rotateX(180deg);
5517
+ }
5518
+ }
5519
+
5520
+ /**************** Premium Pricing Table ****************/
5521
+ /*******************************************************/
5522
+ .premium-pricing-table-container {
5523
+ position: relative;
5524
+ overflow: hidden;
5525
+ text-align: center;
5526
+ -webkit-transition: all 0.3s ease-in-out;
5527
+ transition: all 0.3s ease-in-out;
5528
+ }
5529
+
5530
+ .premium-pricing-icon-container {
5531
+ -js-display: flex;
5532
+ display: -webkit-box;
5533
+ display: -webkit-flex;
5534
+ display: -moz-box;
5535
+ display: -ms-flexbox;
5536
+ display: flex;
5537
+ -webkit-box-pack: center;
5538
+ -webkit-justify-content: center;
5539
+ -moz-box-pack: center;
5540
+ -ms-flex-pack: center;
5541
+ justify-content: center;
5542
+ line-height: 0;
5543
+ }
5544
+
5545
+ .premium-pricing-icon-container .premium-pricing-icon {
5546
+ display: inline-block;
5547
+ }
5548
+
5549
+ .premium-pricing-icon-container .premium-pricing-image {
5550
+ overflow: hidden;
5551
+ }
5552
+
5553
+ .premium-pricing-icon-container .premium-pricing-image img {
5554
+ width: 25px;
5555
+ height: 25px;
5556
+ -o-object-fit: cover;
5557
+ object-fit: cover;
5558
+ }
5559
+
5560
+ .premium-badge-left {
5561
+ position: absolute;
5562
+ top: 0;
5563
+ }
5564
+
5565
+ .premium-badge-right {
5566
+ position: absolute;
5567
+ top: 0;
5568
+ right: 0;
5569
+ }
5570
+
5571
+ .premium-badge-left {
5572
+ left: 0;
5573
+ }
5574
+
5575
+ .premium-badge-triangle.premium-badge-left .corner {
5576
+ width: 0;
5577
+ height: 0;
5578
+ border-top: 150px solid;
5579
+ border-bottom: 150px solid transparent;
5580
+ border-right: 150px solid transparent;
5581
+ }
5582
+
5583
+ .premium-badge-triangle.premium-badge-right .corner {
5584
+ width: 0;
5585
+ height: 0;
5586
+ border-bottom: 150px solid transparent;
5587
+ border-right: 150px solid;
5588
+ border-left: 150px solid transparent;
5589
+ }
5590
+
5591
+ .premium-badge-triangle span {
5592
+ position: absolute;
5593
+ top: 35px;
5594
+ width: 100px;
5595
+ text-align: center;
5596
+ -webkit-transform: rotate(-45deg);
5597
+ -ms-transform: rotate(-45deg);
5598
+ transform: rotate(-45deg);
5599
+ display: block;
5600
+ text-transform: uppercase;
5601
+ }
5602
+
5603
+ .premium-badge-triangle.premium-badge-right span {
5604
+ -webkit-transform: rotate(45deg);
5605
+ -ms-transform: rotate(45deg);
5606
+ transform: rotate(45deg);
5607
+ right: 0;
5608
+ }
5609
+
5610
+ .premium-badge-circle {
5611
+ min-width: 4em;
5612
+ min-height: 4em;
5613
+ line-height: 4em;
5614
+ text-align: center;
5615
+ -webkit-border-radius: 100%;
5616
+ border-radius: 100%;
5617
+ position: absolute;
5618
+ z-index: 1;
5619
+ }
5620
+
5621
+ .premium-badge-stripe {
5622
+ position: absolute;
5623
+ -webkit-transform: rotate(90deg);
5624
+ -ms-transform: rotate(90deg);
5625
+ transform: rotate(90deg);
5626
+ width: 15em;
5627
+ overflow: hidden;
5628
+ height: 15em;
5629
+ }
5630
+
5631
+ .premium-badge-stripe.premium-badge-left {
5632
+ -webkit-transform: rotate(0);
5633
+ -ms-transform: rotate(0);
5634
+ transform: rotate(0);
5635
+ }
5636
+
5637
+ .premium-badge-stripe .corner {
5638
+ text-align: center;
5639
+ left: 0;
5640
+ width: 150%;
5641
+ -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5642
+ -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5643
+ transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5644
+ margin-top: 35px;
5645
+ font-size: 13px;
5646
+ line-height: 2;
5647
+ font-weight: 800;
5648
+ text-transform: uppercase;
5649
+ }
5650
+
5651
+ .premium-badge-flag .corner {
5652
+ text-align: center;
5653
+ -webkit-border-radius: 4px 4px 0 4px;
5654
+ border-radius: 4px 4px 0 4px;
5655
+ padding: 3px 15px;
5656
+ position: absolute;
5657
+ top: 10%;
5658
+ right: -8px;
5659
+ }
5660
+
5661
+ .premium-badge-flag .corner::before,
5662
+ .premium-badge-flag .corner::after {
5663
+ content: "";
5664
+ display: block;
5665
+ position: absolute;
5666
+ width: 0;
5667
+ height: 0;
5668
+ top: 100%;
5669
+ right: 0;
5670
+ border-bottom: 8px solid transparent;
5671
+ }
5672
+
5673
+ .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
5674
+ overflow: visible !important;
5675
+ }
5676
+
5677
+ .premium-badge-flag .corner::after {
5678
+ border-left: 8px solid rgba(0, 0, 0, 0.2);
5679
+ }
5680
+
5681
+ .premium-pricing-price-currency {
5682
+ position: relative;
5683
+ }
5684
+
5685
+ .premium-pricing-button-container {
5686
+ display: block;
5687
+ }
5688
+
5689
+ .premium-pricing-list {
5690
+ -js-display: flex;
5691
+ display: -webkit-box;
5692
+ display: -webkit-flex;
5693
+ display: -moz-box;
5694
+ display: -ms-flexbox;
5695
+ display: flex;
5696
+ -webkit-box-orient: vertical;
5697
+ -webkit-box-direction: normal;
5698
+ -webkit-flex-direction: column;
5699
+ -moz-box-orient: vertical;
5700
+ -moz-box-direction: normal;
5701
+ -ms-flex-direction: column;
5702
+ flex-direction: column;
5703
+ list-style-type: none;
5704
+ margin: 0;
5705
+ }
5706
+
5707
+ .premium-pricing-list .premium-pricing-list-item {
5708
+ -js-display: flex;
5709
+ display: -webkit-box;
5710
+ display: -webkit-flex;
5711
+ display: -moz-box;
5712
+ display: -ms-flexbox;
5713
+ display: flex;
5714
+ -webkit-box-align: center;
5715
+ -webkit-align-items: center;
5716
+ -moz-box-align: center;
5717
+ -ms-flex-align: center;
5718
+ align-items: center;
5719
+ }
5720
+
5721
+ .premium-pricing-list .premium-pricing-list-item svg {
5722
+ width: 50px;
5723
+ height: 50px;
5724
+ }
5725
+
5726
+ .premium-pricing-list .premium-pricing-list-item img {
5727
+ width: 30px;
5728
+ height: 30px;
5729
+ -o-object-fit: cover;
5730
+ object-fit: cover;
5731
+ }
5732
+
5733
+ .premium-pricing-list .premium-pricing-list-span {
5734
+ position: relative;
5735
+ }
5736
+
5737
+ .premium-pricing-list .list-item-tooltip {
5738
+ border-bottom: 1px dotted;
5739
+ }
5740
+
5741
+ .premium-pricing-list .premium-pricing-list-tooltip {
5742
+ position: absolute;
5743
+ top: -webkit-calc(100% + 1px);
5744
+ top: calc(100% + 1px);
5745
+ right: 0;
5746
+ visibility: hidden;
5747
+ padding: 15px 20px;
5748
+ -webkit-border-radius: 5px;
5749
+ border-radius: 5px;
5750
+ min-width: 200px;
5751
+ overflow: hidden;
5752
+ text-align: right;
5753
+ font-size: 0.8rem;
5754
+ color: #fff;
5755
+ background-color: #aaa;
5756
+ }
5757
+
5758
+ .premium-pricing-features-left .premium-pricing-list-span {
5759
+ text-align: right;
5760
+ }
5761
+
5762
+ .premium-pricing-features-center .premium-pricing-list-span {
5763
+ text-align: center;
5764
+ }
5765
+
5766
+ .premium-pricing-features-right .premium-pricing-list-span {
5767
+ text-align: left;
5768
+ }
5769
+
5770
+ .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
5771
+ z-index: 99;
5772
+ visibility: visible;
5773
+ opacity: 1;
5774
+ }
5775
+
5776
+ .premium-pricing-slashed-price-value {
5777
+ display: inline-block;
5778
+ font-size: 20px;
5779
+ font-weight: 400;
5780
+ margin-left: 5px;
5781
+ }
5782
+
5783
+ .premium-pricing-price-value {
5784
+ font-size: 70px;
5785
+ }
5786
+
5787
+ .premium-pricing-description-container li {
5788
+ list-style-position: inside;
5789
+ text-indent: -40px;
5790
+ }
5791
+
5792
+ @-moz-document url-prefix() {
5793
+ .premium-pricing-description-container li {
5794
+ text-indent: 0px;
5795
+ }
5796
+ }
5797
+
5798
+ .premium-pricing-price-button {
5799
+ display: block;
5800
+ padding: 6px 12px;
5801
+ line-height: 1.42857143;
5802
+ text-align: center;
5803
+ color: #fff;
5804
+ background: #6ec1e4;
5805
+ margin-bottom: 0;
5806
+ -webkit-transition: all 0.3s ease-in-out;
5807
+ transition: all 0.3s ease-in-out;
5808
+ }
5809
+
5810
+ /**************** Premium Google Maps ******************/
5811
+ /*******************************************************/
5812
+ .premium-maps-info-container {
5813
+ margin-top: 10px;
5814
+ margin-bottom: 10px;
5815
+ }
5816
+
5817
+ .premium-maps-info-title,
5818
+ .premium-maps-info-desc {
5819
+ margin: 0;
5820
+ padding: 0;
5821
+ }
5822
+
5823
+ .premium-maps-container .gm-style-iw {
5824
+ text-align: center;
5825
+ direction: ltr;
5826
+ }
5827
+
5828
+ .premium-maps-container .gm-style img {
5829
+ max-width: none !important;
5830
+ }
5831
+
5832
+ /**************** Premium Button ***********************/
5833
+ /*******************************************************/
5834
+ .premium-button {
5835
+ display: inline-block;
5836
+ position: relative;
5837
+ overflow: hidden;
5838
+ -webkit-backface-visibility: hidden;
5839
+ backface-visibility: hidden;
5840
+ -webkit-transform: translate3d(0, 0, 0);
5841
+ transform: translate3d(0, 0, 0);
5842
+ cursor: pointer;
5843
+ -webkit-transition: all 0.2s ease-in-out !important;
5844
+ transition: all 0.2s ease-in-out !important;
5845
+ }
5846
+
5847
+ .premium-button-sm {
5848
+ padding: 12px 24px;
5849
+ font-size: 14px;
5850
+ line-height: 1;
5851
+ }
5852
+
5853
+ .premium-button .premium-lottie-animation,
5854
+ .premium-image-button .premium-lottie-animation {
5855
+ -js-display: flex;
5856
+ display: -webkit-box;
5857
+ display: -webkit-flex;
5858
+ display: -moz-box;
5859
+ display: -ms-flexbox;
5860
+ display: flex;
5861
+ }
5862
+
5863
+ .premium-button .premium-lottie-animation svg,
5864
+ .premium-image-button .premium-lottie-animation svg {
5865
+ width: 50px;
5866
+ height: 50px;
5867
+ }
5868
+
5869
+ .premium-button-md {
5870
+ padding: 14px 26px;
5871
+ font-size: 16px;
5872
+ line-height: 1.2;
5873
+ }
5874
+
5875
+ .premium-button-lg {
5876
+ padding: 16px 28px;
5877
+ font-size: 18px;
5878
+ line-height: 1.3333;
5879
+ }
5880
+
5881
+ .premium-button-block {
5882
+ font-size: 15px;
5883
+ line-height: 1;
5884
+ padding: 12px 24px;
5885
+ width: 100%;
5886
+ text-align: center;
5887
+ }
5888
+
5889
+ .premium-button-text {
5890
+ display: inline-block;
5891
+ width: 100%;
5892
+ }
5893
+
5894
+ .premium-button-style1,
5895
+ .premium-button-style2,
5896
+ .premium-button-style5,
5897
+ .premium-button-style7 {
5898
+ display: inline-block;
5899
+ vertical-align: middle;
5900
+ -webkit-transform: perspective(1px) translateZ(0);
5901
+ transform: perspective(1px) translateZ(0);
5902
+ -webkit-box-shadow: 0 0 1px transparent;
5903
+ box-shadow: 0 0 1px transparent;
5904
+ position: relative;
5905
+ -webkit-transition-property: color;
5906
+ transition-property: color;
5907
+ -webkit-transition-duration: 0.15s;
5908
+ transition-duration: 0.15s;
5909
+ }
5910
+
5911
+ .premium-button-style1:before,
5912
+ .premium-button-style2:before,
5913
+ .premium-button-style5:before {
5914
+ content: "";
5915
+ position: absolute;
5916
+ z-index: -1;
5917
+ top: 0;
5918
+ right: 0;
5919
+ left: 0;
5920
+ bottom: 0;
5921
+ -webkit-transform: scaleY(0);
5922
+ -ms-transform: scaleY(0);
5923
+ transform: scaleY(0);
5924
+ -webkit-transform-origin: 50% 0;
5925
+ -ms-transform-origin: 50% 0;
5926
+ transform-origin: 50% 0;
5927
+ -webkit-transition-property: -webkit-transform;
5928
+ transition-property: -webkit-transform;
5929
+ transition-property: transform;
5930
+ transition-property: transform, -webkit-transform;
5931
+ -webkit-transition-duration: 0.15s;
5932
+ transition-duration: 0.15s;
5933
+ -webkit-transition-timing-function: ease-out;
5934
+ transition-timing-function: ease-out;
5935
+ }
5936
+
5937
+ .premium-button-style5-radialin:before,
5938
+ .premium-button-style5-radialout:before {
5939
+ -webkit-transform-origin: 50%;
5940
+ -ms-transform-origin: 50%;
5941
+ transform-origin: 50%;
5942
+ -webkit-border-radius: 100%;
5943
+ border-radius: 100%;
5944
+ -webkit-transform: scale(0);
5945
+ -ms-transform: scale(0);
5946
+ transform: scale(0);
5947
+ }
5948
+
5949
+ .premium-button-style5-radialin:before {
5950
+ -webkit-transform: scale(2);
5951
+ -ms-transform: scale(2);
5952
+ transform: scale(2);
5953
+ }
5954
+
5955
+ .premium-button-style5-rectin:before {
5956
+ -webkit-transform-origin: 50%;
5957
+ -ms-transform-origin: 50%;
5958
+ transform-origin: 50%;
5959
+ -webkit-transform: scale(1);
5960
+ -ms-transform: scale(1);
5961
+ transform: scale(1);
5962
+ }
5963
+
5964
+ .premium-button-style5-rectout:before {
5965
+ -webkit-transform-origin: 50%;
5966
+ -ms-transform-origin: 50%;
5967
+ transform-origin: 50%;
5968
+ -webkit-transform: scale(0);
5969
+ -ms-transform: scale(0);
5970
+ transform: scale(0);
5971
+ }
5972
+
5973
+ .premium-button-style5-rectout:hover:before {
5974
+ -webkit-transform: scale(1);
5975
+ -ms-transform: scale(1);
5976
+ transform: scale(1);
5977
+ }
5978
+
5979
+ .premium-button-style5-rectin:hover:before {
5980
+ -webkit-transform: scale(0);
5981
+ -ms-transform: scale(0);
5982
+ transform: scale(0);
5983
+ }
5984
+
5985
+ .premium-button-style5-radialout:hover:before {
5986
+ -webkit-transform: scale(2);
5987
+ -ms-transform: scale(2);
5988
+ transform: scale(2);
5989
+ }
5990
+
5991
+ .premium-button-style5-radialin:hover:before {
5992
+ -webkit-transform: scale(0);
5993
+ -ms-transform: scale(0);
5994
+ transform: scale(0);
5995
+ }
5996
+
5997
+ .premium-button-style1-top:before {
5998
+ -webkit-transform-origin: 50% 100%;
5999
+ -ms-transform-origin: 50% 100%;
6000
+ transform-origin: 50% 100%;
6001
+ }
6002
+
6003
+ .premium-button-style1-right:before {
6004
+ -webkit-transform: scaleX(0);
6005
+ -ms-transform: scaleX(0);
6006
+ transform: scaleX(0);
6007
+ -webkit-transform-origin: 100% 50%;
6008
+ -ms-transform-origin: 100% 50%;
6009
+ transform-origin: 100% 50%;
6010
+ }
6011
+
6012
+ .premium-button-style1-left:before {
6013
+ -webkit-transform: scaleX(0);
6014
+ -ms-transform: scaleX(0);
6015
+ transform: scaleX(0);
6016
+ -webkit-transform-origin: 0% 50%;
6017
+ -ms-transform-origin: 0% 50%;
6018
+ transform-origin: 0% 50%;
6019
+ }
6020
+
6021
+ .premium-button-style2-shutouthor:before,
6022
+ .premium-button-style2-scshutoutver:before {
6023
+ -webkit-transform: scaleY(0);
6024
+ -ms-transform: scaleY(0);
6025
+ transform: scaleY(0);
6026
+ -webkit-transform-origin: 0% 50%;
6027
+ -ms-transform-origin: 0% 50%;
6028
+ transform-origin: 0% 50%;
6029
+ }
6030
+
6031
+ .premium-button-style2-shutoutver:before,
6032
+ .premium-button-style2-scshutouthor:before {
6033
+ -webkit-transform: scaleX(0);
6034
+ -ms-transform: scaleX(0);
6035
+ transform: scaleX(0);
6036
+ -webkit-transform-origin: 50% 50%;
6037
+ -ms-transform-origin: 50% 50%;
6038
+ transform-origin: 50% 50%;
6039
+ }
6040
+
6041
+ .premium-button-style2-shutinhor:before {
6042
+ -webkit-transform: scaleX(1);
6043
+ -ms-transform: scaleX(1);
6044
+ transform: scaleX(1);
6045
+ -webkit-transform-origin: 50%;
6046
+ -ms-transform-origin: 50%;
6047
+ transform-origin: 50%;
6048
+ }
6049
+
6050
+ .premium-button-style2-shutinver:before {
6051
+ -webkit-transform: scaleY(1);
6052
+ -ms-transform: scaleY(1);
6053
+ transform: scaleY(1);
6054
+ -webkit-transform-origin: 50%;
6055
+ -ms-transform-origin: 50%;
6056
+ transform-origin: 50%;
6057
+ }
6058
+
6059
+ .premium-button-style1-bottom:hover:before,
6060
+ .premium-button-style1-top:hover:before {
6061
+ -webkit-transform: scaleY(1);
6062
+ -ms-transform: scaleY(1);
6063
+ transform: scaleY(1);
6064
+ }
6065
+
6066
+ .premium-button-style1-left:hover:before,
6067
+ .premium-button-style1-right:hover:before,
6068
+ .premium-button-style2-shutouthor:hover:before,
6069
+ .premium-button-style2-shutoutver:hover:before {
6070
+ -webkit-transform: scaleX(1);
6071
+ -ms-transform: scaleX(1);
6072
+ transform: scaleX(1);
6073
+ }
6074
+
6075
+ .premium-button-style2-shutinhor:hover:before {
6076
+ -webkit-transform: scaleX(0);
6077
+ -ms-transform: scaleX(0);
6078
+ transform: scaleX(0);
6079
+ }
6080
+
6081
+ .premium-button-style2-shutinver:hover:before {
6082
+ -webkit-transform: scaleY(0);
6083
+ -ms-transform: scaleY(0);
6084
+ transform: scaleY(0);
6085
+ }
6086
+
6087
+ .premium-button-style2-scshutouthor:hover:before {
6088
+ -webkit-transform: scaleX(0.9);
6089
+ -ms-transform: scaleX(0.9);
6090
+ transform: scaleX(0.9);
6091
+ }
6092
+
6093
+ .premium-button-style2-scshutoutver:hover:before {
6094
+ -webkit-transform: scaleY(0.8);
6095
+ -ms-transform: scaleY(0.8);
6096
+ transform: scaleY(0.8);
6097
+ }
6098
+
6099
+ /*Diagonal*/
6100
+ .premium-button-style2-dshutinhor:before {
6101
+ top: 50%;
6102
+ right: 50%;
6103
+ width: 120%;
6104
+ height: 0%;
6105
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
6106
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
6107
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
6108
+ -webkit-transform-origin: 50%;
6109
+ -ms-transform-origin: 50%;
6110
+ transform-origin: 50%;
6111
+ -webkit-transition-property: all;
6112
+ transition-property: all;
6113
+ }
6114
+
6115
+ .premium-button-style2-dshutinver:before {
6116
+ top: 50%;
6117
+ right: 50%;
6118
+ width: 120%;
6119
+ height: 0%;
6120
+ -webkit-transform-origin: 50%;
6121
+ -ms-transform-origin: 50%;
6122
+ transform-origin: 50%;
6123
+ -webkit-transition-property: all;
6124
+ transition-property: all;
6125
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6126
+ -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6127
+ transform: translateX(50%) translateY(-50%) rotate(-45deg);
6128
+ }
6129
+
6130
+ .premium-button-style2-dshutinhor:hover:before,
6131
+ .premium-button-style2-dshutinver:hover:before {
6132
+ height: 220%;
6133
+ }
6134
+
6135
+ .premium-button-style3-before i,
6136
+ .premium-button-style3-before svg {
6137
+ opacity: 0;
6138
+ -webkit-transform: translateX(5px);
6139
+ -ms-transform: translateX(5px);
6140
+ transform: translateX(5px);
6141
+ -webkit-transition: all 0.5s ease-in-out;
6142
+ transition: all 0.5s ease-in-out;
6143
+ }
6144
+
6145
+ .premium-button-style3-after i,
6146
+ .premium-button-style3-after svg {
6147
+ opacity: 0;
6148
+ -webkit-transform: translateX(5px);
6149
+ -ms-transform: translateX(5px);
6150
+ transform: translateX(5px);
6151
+ -webkit-transition: all 0.5s ease-in-out;
6152
+ transition: all 0.5s ease-in-out;
6153
+ -webkit-transform: translateX(-5px);
6154
+ -ms-transform: translateX(-5px);
6155
+ transform: translateX(-5px);
6156
+ }
6157
+
6158
+ .premium-button-style3-after:hover i,
6159
+ .premium-button-style3-after:hover svg {
6160
+ opacity: 1;
6161
+ }
6162
+
6163
+ .premium-button-style3-before:hover i,
6164
+ .premium-button-style3-before:hover svg {
6165
+ opacity: 1;
6166
+ }
6167
+
6168
+ .premium-button-text-icon-wrapper {
6169
+ -js-display: flex;
6170
+ display: -webkit-box;
6171
+ display: -webkit-flex;
6172
+ display: -moz-box;
6173
+ display: -ms-flexbox;
6174
+ display: flex;
6175
+ -webkit-box-pack: center;
6176
+ -webkit-justify-content: center;
6177
+ -moz-box-pack: center;
6178
+ -ms-flex-pack: center;
6179
+ justify-content: center;
6180
+ -webkit-box-align: center;
6181
+ -webkit-align-items: center;
6182
+ -moz-box-align: center;
6183
+ -ms-flex-align: center;
6184
+ align-items: center;
6185
+ -webkit-transition: all 0.2s ease-in-out;
6186
+ transition: all 0.2s ease-in-out;
6187
+ }
6188
+
6189
+ .premium-button-text-icon-wrapper span,
6190
+ .premium-button-text-icon-wrapper i,
6191
+ .premium-button-text-icon-wrapper svg {
6192
+ -webkit-transition: all 0.2s ease-in-out;
6193
+ transition: all 0.2s ease-in-out;
6194
+ }
6195
+
6196
+ .premium-button-style4-icon-wrapper {
6197
+ position: absolute;
6198
+ z-index: 2;
6199
+ width: 100%;
6200
+ text-align: center;
6201
+ -js-display: flex;
6202
+ display: -webkit-box;
6203
+ display: -webkit-flex;
6204
+ display: -moz-box;
6205
+ display: -ms-flexbox;
6206
+ display: flex;
6207
+ -webkit-box-align: center;
6208
+ -webkit-align-items: center;
6209
+ -moz-box-align: center;
6210
+ -ms-flex-align: center;
6211
+ align-items: center;
6212
+ -webkit-box-pack: center;
6213
+ -webkit-justify-content: center;
6214
+ -moz-box-pack: center;
6215
+ -ms-flex-pack: center;
6216
+ justify-content: center;
6217
+ height: 100%;
6218
+ opacity: 0;
6219
+ -webkit-transition: all 0.3s ease-in-out;
6220
+ transition: all 0.3s ease-in-out;
6221
+ }
6222
+
6223
+ .premium-button-style4-icon-wrapper.top {
6224
+ bottom: -100%;
6225
+ right: 0;
6226
+ }
6227
+
6228
+ .premium-button-style4-icon-wrapper.bottom {
6229
+ top: -100%;
6230
+ right: 0;
6231
+ }
6232
+
6233
+ .premium-button-style4-icon-wrapper.left {
6234
+ top: 0;
6235
+ right: -100%;
6236
+ }
6237
+
6238
+ .premium-button-style4-icon-wrapper.right {
6239
+ top: 0;
6240
+ left: -100%;
6241
+ }
6242
+
6243
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
6244
+ top: 0;
6245
+ opacity: 1;
6246
+ }
6247
+
6248
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
6249
+ bottom: 0;
6250
+ opacity: 1;
6251
+ }
6252
+
6253
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
6254
+ right: 0;
6255
+ opacity: 1;
6256
+ }
6257
+
6258
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
6259
+ left: 0;
6260
+ opacity: 1;
6261
+ }
6262
+
6263
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
6264
+ -webkit-transform: translateY(100%);
6265
+ -ms-transform: translateY(100%);
6266
+ transform: translateY(100%);
6267
+ opacity: 0;
6268
+ }
6269
+
6270
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
6271
+ -webkit-transform: translateY(-100%);
6272
+ -ms-transform: translateY(-100%);
6273
+ transform: translateY(-100%);
6274
+ opacity: 0;
6275
+ }
6276
+
6277
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
6278
+ -webkit-transform: translateX(-100%);
6279
+ -ms-transform: translateX(-100%);
6280
+ transform: translateX(-100%);
6281
+ opacity: 0;
6282
+ }
6283
+
6284
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
6285
+ -webkit-transform: translateX(100%);
6286
+ -ms-transform: translateX(100%);
6287
+ transform: translateX(100%);
6288
+ opacity: 0;
6289
+ }
6290
+
6291
+ .premium-button-style6:before {
6292
+ content: "";
6293
+ position: absolute;
6294
+ right: 50%;
6295
+ top: 50%;
6296
+ width: 100px;
6297
+ height: 100px;
6298
+ -webkit-border-radius: 100%;
6299
+ border-radius: 100%;
6300
+ -webkit-transform: translate(50%, -50%) scale(0);
6301
+ -ms-transform: translate(50%, -50%) scale(0);
6302
+ transform: translate(50%, -50%) scale(0);
6303
+ -webkit-transition: all 0.3s ease-in-out;
6304
+ transition: all 0.3s ease-in-out;
6305
+ }
6306
+
6307
+ .premium-button-style6:hover:before {
6308
+ -webkit-transform: translate(50%, -50%) scale(3);
6309
+ -ms-transform: translate(50%, -50%) scale(3);
6310
+ transform: translate(50%, -50%) scale(3);
6311
+ }
6312
+
6313
+ .premium-button-style6 .premium-button-text-icon-wrapper {
6314
+ position: relative;
6315
+ z-index: 1;
6316
+ }
6317
+
6318
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
6319
+ position: absolute;
6320
+ z-index: 0;
6321
+ top: 0;
6322
+ right: 0;
6323
+ width: 0px;
6324
+ height: 0px;
6325
+ -webkit-border-radius: 50%;
6326
+ border-radius: 50%;
6327
+ display: block;
6328
+ -webkit-transform: translate(50%, -50%);
6329
+ -ms-transform: translate(50%, -50%);
6330
+ transform: translate(50%, -50%);
6331
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6332
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6333
+ }
6334
+
6335
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
6336
+ width: 225%;
6337
+ height: 560px;
6338
+ }
6339
+
6340
+ .premium-mouse-detect-yes .premium-button-style6:before {
6341
+ width: 0;
6342
+ height: 0;
6343
+ }
6344
+
6345
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
6346
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6347
+ -webkit-transition: width 0.3s ease-out 0.15s;
6348
+ transition: width 0.3s ease-out 0.15s;
6349
+ }
6350
+
6351
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6352
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
6353
+ -webkit-transition: width 0.3s ease-out 0s;
6354
+ transition: width 0.3s ease-out 0s;
6355
+ }
6356
+
6357
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6358
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6359
+ -webkit-transition: height 0.3s ease-out 0.15s;
6360
+ transition: height 0.3s ease-out 0.15s;
6361
+ }
6362
+
6363
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
6364
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
6365
+ -webkit-transition: height 0.3s ease-out 0s;
6366
+ transition: height 0.3s ease-out 0s;
6367
+ }
6368
+
6369
+ .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
6370
+ -webkit-transition-delay: 0s;
6371
+ transition-delay: 0s;
6372
+ }
6373
+
6374
+ .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
6375
+ -webkit-transition-delay: 0.15s;
6376
+ transition-delay: 0.15s;
6377
+ }
6378
+
6379
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6380
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
6381
+ content: "";
6382
+ position: absolute;
6383
+ left: 0;
6384
+ top: 0;
6385
+ right: 0;
6386
+ height: 0;
6387
+ z-index: -1;
6388
+ }
6389
+
6390
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
6391
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6392
+ content: "";
6393
+ position: absolute;
6394
+ left: 0;
6395
+ bottom: 0;
6396
+ right: 0;
6397
+ height: 0;
6398
+ z-index: -1;
6399
+ }
6400
+
6401
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6402
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
6403
+ content: "";
6404
+ position: absolute;
6405
+ right: 0;
6406
+ top: 0;
6407
+ bottom: 0;
6408
+ width: 0;
6409
+ z-index: -1;
6410
+ }
6411
+
6412
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
6413
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6414
+ content: "";
6415
+ position: absolute;
6416
+ left: 0;
6417
+ top: 0;
6418
+ bottom: 0;
6419
+ width: 0;
6420
+ z-index: -1;
6421
+ }
6422
+
6423
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
6424
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
6425
+ height: 100%;
6426
+ top: 0;
6427
+ }
6428
+
6429
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
6430
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
6431
+ height: 100%;
6432
+ bottom: 0;
6433
+ }
6434
+
6435
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
6436
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
6437
+ width: 100%;
6438
+ left: 0;
6439
+ }
6440
+
6441
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
6442
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
6443
+ width: 100%;
6444
+ right: 0;
6445
+ }
6446
+
6447
+ /**************** Premium Contact Form7 **********/
6448
+ /*************************************************/
6449
+ .premium-contact-form-anim-yes .wpcf7-span::after {
6450
+ display: block;
6451
+ height: 2px;
6452
+ content: "";
6453
+ top: -2px;
6454
+ position: relative;
6455
+ width: 0px;
6456
+ -webkit-transition: all ease-in-out 0.3s;
6457
+ transition: all ease-in-out 0.3s;
6458
+ }
6459
+
6460
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
6461
+ width: 100%;
6462
+ }
6463
+
6464
+ /**************** Premium Image Button ***********/
6465
+ /*************************************************/
6466
+ .premium-image-button {
6467
+ display: inline-block;
6468
+ position: relative;
6469
+ overflow: hidden;
6470
+ background: #6ec1e4;
6471
+ cursor: pointer;
6472
+ -webkit-transition: all 0.2s ease-in-out !important;
6473
+ transition: all 0.2s ease-in-out !important;
6474
+ }
6475
+
6476
+ /*Default background for slide styles*/
6477
+ .premium-image-button:hover,
6478
+ .premium-image-button-style4-icon-wrapper,
6479
+ .premium-image-button-style1-top:before,
6480
+ .premium-image-button-style1-bottom:before,
6481
+ .premium-image-button-style1-left:before,
6482
+ .premium-image-button-style1-right:before {
6483
+ background-color: #54595f;
6484
+ }
6485
+
6486
+ .premium-image-button.premium-image-button-sm {
6487
+ padding: 12px 24px;
6488
+ font-size: 14px;
6489
+ line-height: 1;
6490
+ }
6491
+
6492
+ .premium-image-button.premium-image-button-md {
6493
+ padding: 14px 26px;
6494
+ font-size: 16px;
6495
+ line-height: 1.2;
6496
+ }
6497
+
6498
+ .premium-image-button.premium-image-button-lg {
6499
+ padding: 16px 28px;
6500
+ font-size: 18px;
6501
+ line-height: 1.3333;
6502
+ }
6503
+
6504
+ .premium-image-button.premium-image-button-block {
6505
+ font-size: 15px;
6506
+ line-height: 1;
6507
+ padding: 12px 24px;
6508
+ width: 100%;
6509
+ text-align: center;
6510
+ }
6511
+
6512
+ .premium-image-button-text-icon-wrapper {
6513
+ display: -webkit-box;
6514
+ display: -webkit-flex;
6515
+ display: -ms-flexbox;
6516
+ -js-display: flex;
6517
+ display: -moz-box;
6518
+ display: flex;
6519
+ -webkit-box-pack: center;
6520
+ -webkit-justify-content: center;
6521
+ -moz-box-pack: center;
6522
+ -ms-flex-pack: center;
6523
+ justify-content: center;
6524
+ -webkit-box-align: center;
6525
+ -webkit-align-items: center;
6526
+ -moz-box-align: center;
6527
+ -ms-flex-align: center;
6528
+ align-items: center;
6529
+ position: relative;
6530
+ z-index: 3;
6531
+ }
6532
+
6533
+ .premium-image-button-text-icon-wrapper span,
6534
+ .premium-image-button-text-icon-wrapper,
6535
+ .premium-image-button-text-icon-wrapper i,
6536
+ .premium-image-button-text-icon-wrapper svg {
6537
+ -webkit-transition: all 0.2s ease-in-out;
6538
+ transition: all 0.2s ease-in-out;
6539
+ }
6540
+
6541
+ .premium-image-button-style1-bottom:before,
6542
+ .premium-image-button-style1-top:before,
6543
+ .premium-image-button-style1-left:before,
6544
+ .premium-image-button-style1-right:before {
6545
+ -webkit-transition: all 0.2s ease-in-out;
6546
+ transition: all 0.2s ease-in-out;
6547
+ }
6548
+
6549
+ .premium-image-button-style1-bottom:before {
6550
+ content: "";
6551
+ position: absolute;
6552
+ width: 100%;
6553
+ height: 0;
6554
+ top: 0;
6555
+ right: 0;
6556
+ }
6557
+
6558
+ .premium-image-button-style1-top:before {
6559
+ content: "";
6560
+ position: absolute;
6561
+ width: 100%;
6562
+ height: 0;
6563
+ bottom: 0;
6564
+ right: 0;
6565
+ }
6566
+
6567
+ .premium-image-button-style1-right:before {
6568
+ content: "";
6569
+ position: absolute;
6570
+ width: 0;
6571
+ height: 100%;
6572
+ bottom: 0;
6573
+ right: 0;
6574
+ }
6575
+
6576
+ .premium-image-button-style1-left:before {
6577
+ content: "";
6578
+ position: absolute;
6579
+ width: 0;
6580
+ height: 100%;
6581
+ top: 0;
6582
+ left: 0;
6583
+ }
6584
+
6585
+ .premium-image-button-style1-bottom:hover:before {
6586
+ height: 100%;
6587
+ }
6588
+
6589
+ .premium-image-button-style1-top:hover:before {
6590
+ height: 100%;
6591
+ }
6592
+
6593
+ .premium-image-button-style1-right:hover:before {
6594
+ width: 100%;
6595
+ }
6596
+
6597
+ .premium-image-button-style1-left:hover:before {
6598
+ width: 100%;
6599
+ }
6600
+
6601
+ .premium-image-button-diagonal-top,
6602
+ .premium-image-button-diagonal-bottom,
6603
+ .premium-image-button-diagonal-left,
6604
+ .premium-image-button-diagonal-right {
6605
+ z-index: 10;
6606
+ }
6607
+
6608
+ .premium-image-button-diagonal-top:before,
6609
+ .premium-image-button-diagonal-bottom:before,
6610
+ .premium-image-button-diagonal-left:before,
6611
+ .premium-image-button-diagonal-right:before {
6612
+ position: absolute;
6613
+ top: 0px;
6614
+ right: 0px;
6615
+ width: 100%;
6616
+ height: 100%;
6617
+ content: "";
6618
+ z-index: 1;
6619
+ background: rgba(255, 255, 255, 0.2);
6620
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6621
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6622
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6623
+ -webkit-transition: all 0.8s ease-out;
6624
+ transition: all 0.8s ease-out;
6625
+ }
6626
+
6627
+ .premium-image-button-diagonal-right:hover:before,
6628
+ .premium-image-button-diagonal-left:before {
6629
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6630
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6631
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6632
+ }
6633
+
6634
+ .premium-image-button-diagonal-left:hover:before,
6635
+ .premium-image-button-diagonal-right:before {
6636
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6637
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6638
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6639
+ }
6640
+
6641
+ .premium-image-button-diagonal-top:hover:before,
6642
+ .premium-image-button-diagonal-bottom:before {
6643
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6644
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6645
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6646
+ }
6647
+
6648
+ .premium-image-button-diagonal-bottom:hover:before,
6649
+ .premium-image-button-diagonal-top:before {
6650
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6651
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6652
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6653
+ }
6654
+
6655
+ .premium-image-button-style4-icon-wrapper {
6656
+ position: absolute;
6657
+ z-index: 2;
6658
+ width: 100%;
6659
+ text-align: center;
6660
+ display: -webkit-box;
6661
+ display: -webkit-flex;
6662
+ display: -ms-flexbox;
6663
+ -js-display: flex;
6664
+ display: -moz-box;
6665
+ display: flex;
6666
+ -webkit-box-align: center;
6667
+ -webkit-align-items: center;
6668
+ -moz-box-align: center;
6669
+ -ms-flex-align: center;
6670
+ align-items: center;
6671
+ -webkit-box-pack: center;
6672
+ -webkit-justify-content: center;
6673
+ -moz-box-pack: center;
6674
+ -ms-flex-pack: center;
6675
+ justify-content: center;
6676
+ height: 100%;
6677
+ opacity: 0;
6678
+ -webkit-transition: all 0.3s ease-in-out;
6679
+ transition: all 0.3s ease-in-out;
6680
+ }
6681
+
6682
+ .premium-image-button-style4-icon-wrapper.top {
6683
+ bottom: -100%;
6684
+ right: 0;
6685
+ }
6686
+
6687
+ .premium-image-button-style4-icon-wrapper.bottom {
6688
+ top: -100%;
6689
+ right: 0;
6690
+ }
6691
+
6692
+ .premium-image-button-style4-icon-wrapper.left {
6693
+ top: 0;
6694
+ right: -100%;
6695
+ }
6696
+
6697
+ .premium-image-button-style4-icon-wrapper.right {
6698
+ top: 0;
6699
+ left: -100%;
6700
+ }
6701
+
6702
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
6703
+ top: 0;
6704
+ opacity: 1;
6705
+ }
6706
+
6707
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
6708
+ bottom: 0;
6709
+ opacity: 1;
6710
+ }
6711
+
6712
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
6713
+ right: 0;
6714
+ opacity: 1;
6715
+ }
6716
+
6717
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
6718
+ left: 0;
6719
+ opacity: 1;
6720
+ }
6721
+
6722
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
6723
+ -webkit-transform: translateY(100%);
6724
+ -ms-transform: translateY(100%);
6725
+ transform: translateY(100%);
6726
+ opacity: 0;
6727
+ }
6728
+
6729
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
6730
+ -webkit-transform: translateY(-100%);
6731
+ -ms-transform: translateY(-100%);
6732
+ transform: translateY(-100%);
6733
+ opacity: 0;
6734
+ }
6735
+
6736
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
6737
+ -webkit-transform: translateX(-100%);
6738
+ -ms-transform: translateX(-100%);
6739
+ transform: translateX(-100%);
6740
+ opacity: 0;
6741
+ }
6742
+
6743
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
6744
+ -webkit-transform: translateX(100%);
6745
+ -ms-transform: translateX(100%);
6746
+ transform: translateX(100%);
6747
+ opacity: 0;
6748
+ }
6749
+
6750
+ .premium-image-button-overlap-effect-horizontal:before,
6751
+ .premium-image-button-overlap-effect-vertical:before {
6752
+ position: absolute;
6753
+ content: "";
6754
+ top: 0;
6755
+ right: 0;
6756
+ width: 100%;
6757
+ height: 100%;
6758
+ opacity: 0;
6759
+ -webkit-transition: all 1s ease-in-out;
6760
+ transition: all 1s ease-in-out;
6761
+ background: rgba(255, 255, 255, 0.2);
6762
+ -webkit-animation-name: premium-overlap-effect-done;
6763
+ animation-name: premium-overlap-effect-done;
6764
+ -webkit-animation-duration: 1s;
6765
+ animation-duration: 1s;
6766
+ }
6767
+
6768
+ .premium-image-button-overlap-effect-vertical:before {
6769
+ -webkit-animation-name: premium-overlap-ver-effect-done;
6770
+ animation-name: premium-overlap-ver-effect-done;
6771
+ -webkit-animation-duration: 1s;
6772
+ animation-duration: 1s;
6773
+ }
6774
+
6775
+ .premium-image-button-overlap-effect-horizontal:hover:before {
6776
+ -webkit-animation-name: premium-overlap-effect;
6777
+ animation-name: premium-overlap-effect;
6778
+ -webkit-animation-duration: 1s;
6779
+ animation-duration: 1s;
6780
+ }
6781
+
6782
+ .premium-image-button-overlap-effect-vertical:hover:before {
6783
+ -webkit-animation-name: premium-overlap-ver-effect;
6784
+ animation-name: premium-overlap-ver-effect;
6785
+ -webkit-animation-duration: 1s;
6786
+ animation-duration: 1s;
6787
+ }
6788
+
6789
+ @-webkit-keyframes premium-overlap-effect {
6790
+ 0% {
6791
+ opacity: 0;
6792
+ -webkit-transform: rotateY(0deg);
6793
+ transform: rotateY(0deg);
6794
+ }
6795
+
6796
+ 50% {
6797
+ opacity: 1;
6798
+ -webkit-transform: rotateY(180deg);
6799
+ transform: rotateY(180deg);
6800
+ }
6801
+
6802
+ 100% {
6803
+ opacity: 0;
6804
+ -webkit-transform: rotateY(360deg);
6805
+ transform: rotateY(360deg);
6806
+ }
6807
+ }
6808
+
6809
+ @keyframes premium-overlap-effect {
6810
+ 0% {
6811
+ opacity: 0;
6812
+ -webkit-transform: rotateY(0deg);
6813
+ transform: rotateY(0deg);
6814
+ }
6815
+
6816
+ 50% {
6817
+ opacity: 1;
6818
+ -webkit-transform: rotateY(180deg);
6819
+ transform: rotateY(180deg);
6820
+ }
6821
+
6822
+ 100% {
6823
+ opacity: 0;
6824
+ -webkit-transform: rotateY(360deg);
6825
+ transform: rotateY(360deg);
6826
+ }
6827
+ }
6828
+
6829
+ @-webkit-keyframes premium-overlap-effect-done {
6830
+ 0% {
6831
+ opacity: 0;
6832
+ -webkit-transform: rotateY(0deg);
6833
+ transform: rotateY(0deg);
6834
+ }
6835
+
6836
+ 50% {
6837
+ opacity: 1;
6838
+ -webkit-transform: rotateY(180deg);
6839
+ transform: rotateY(180deg);
6840
+ }
6841
+
6842
+ 100% {
6843
+ opacity: 0;
6844
+ -webkit-transform: rotateY(360deg);
6845
+ transform: rotateY(360deg);
6846
+ }
6847
+ }
6848
+
6849
+ @keyframes premium-overlap-effect-done {
6850
+ 0% {
6851
+ opacity: 0;
6852
+ -webkit-transform: rotateY(0deg);
6853
+ transform: rotateY(0deg);
6854
+ }
6855
+
6856
+ 50% {
6857
+ opacity: 1;
6858
+ -webkit-transform: rotateY(180deg);
6859
+ transform: rotateY(180deg);
6860
+ }
6861
+
6862
+ 100% {
6863
+ opacity: 0;
6864
+ -webkit-transform: rotateY(360deg);
6865
+ transform: rotateY(360deg);
6866
+ }
6867
+ }
6868
+
6869
+ @-webkit-keyframes premium-overlap-ver-effect {
6870
+ 0% {
6871
+ opacity: 0;
6872
+ -webkit-transform: rotateX(0deg);
6873
+ transform: rotateX(0deg);
6874
+ }
6875
+
6876
+ 50% {
6877
+ opacity: 1;
6878
+ -webkit-transform: rotateX(180deg);
6879
+ transform: rotateX(180deg);
6880
+ }
6881
+
6882
+ 100% {
6883
+ opacity: 0;
6884
+ -webkit-transform: rotateX(360deg);
6885
+ transform: rotateX(360deg);
6886
+ }
6887
+ }
6888
+
6889
+ @keyframes premium-overlap-ver-effect {
6890
+ 0% {
6891
+ opacity: 0;
6892
+ -webkit-transform: rotateX(0deg);
6893
+ transform: rotateX(0deg);
6894
+ }
6895
+
6896
+ 50% {
6897
+ opacity: 1;
6898
+ -webkit-transform: rotateX(180deg);
6899
+ transform: rotateX(180deg);
6900
+ }
6901
+
6902
+ 100% {
6903
+ opacity: 0;
6904
+ -webkit-transform: rotateX(360deg);
6905
+ transform: rotateX(360deg);
6906
+ }
6907
+ }
6908
+
6909
+ @-webkit-keyframes premium-overlap-ver-effect-done {
6910
+ 0% {
6911
+ opacity: 0;
6912
+ -webkit-transform: rotateX(0deg);
6913
+ transform: rotateX(0deg);
6914
+ }
6915
+
6916
+ 50% {
6917
+ opacity: 1;
6918
+ -webkit-transform: rotateX(180deg);
6919
+ transform: rotateX(180deg);
6920
+ }
6921
+
6922
+ 100% {
6923
+ opacity: 0;
6924
+ -webkit-transform: rotateX(360deg);
6925
+ transform: rotateX(360deg);
6926
+ }
6927
+ }
6928
+
6929
+ @keyframes premium-overlap-ver-effect-done {
6930
+ 0% {
6931
+ opacity: 0;
6932
+ -webkit-transform: rotateX(0deg);
6933
+ transform: rotateX(0deg);
6934
+ }
6935
+
6936
+ 50% {
6937
+ opacity: 1;
6938
+ -webkit-transform: rotateX(180deg);
6939
+ transform: rotateX(180deg);
6940
+ }
6941
+
6942
+ 100% {
6943
+ opacity: 0;
6944
+ -webkit-transform: rotateX(360deg);
6945
+ transform: rotateX(360deg);
6946
+ }
6947
+ }
6948
+
6949
+ /**************** Premium Grid *******************/
6950
+ /*************************************************/
6951
+ .premium-img-gallery-filter,
6952
+ .premium-blog-filter {
6953
+ display: -webkit-box;
6954
+ display: -webkit-flex;
6955
+ display: -ms-flexbox;
6956
+ -js-display: flex;
6957
+ display: -moz-box;
6958
+ display: flex;
6959
+ -webkit-box-align: center;
6960
+ -webkit-align-items: center;
6961
+ -moz-box-align: center;
6962
+ -ms-flex-align: center;
6963
+ align-items: center;
6964
+ -webkit-box-pack: center;
6965
+ -webkit-justify-content: center;
6966
+ -moz-box-pack: center;
6967
+ -ms-flex-pack: center;
6968
+ justify-content: center;
6969
+ }
6970
+
6971
+ .premium-img-gallery {
6972
+ clear: both;
6973
+ overflow: hidden;
6974
+ }
6975
+
6976
+ .premium-gallery-container .premium-gallery-item {
6977
+ padding: 10px;
6978
+ float: right;
6979
+ /* Google Chrome isotope issue */
6980
+ }
6981
+
6982
+ .premium-gallery-container .grid-sizer {
6983
+ width: 33.33%;
6984
+ }
6985
+
6986
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
6987
+ .premium-blog-filter .premium-blog-filters-container li a.category {
6988
+ outline: none;
6989
+ text-decoration: none;
6990
+ -webkit-border-radius: 75px;
6991
+ border-radius: 75px;
6992
+ margin: 15px 5px 20px;
6993
+ padding: 7px 20px;
6994
+ -webkit-transition: all 0.3s ease-in-out;
6995
+ transition: all 0.3s ease-in-out;
6996
+ }
6997
+
6998
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
6999
+ -webkit-transition: all 0.3s ease-in-out;
7000
+ transition: all 0.3s ease-in-out;
7001
+ }
7002
+
7003
+ .pa-gallery-img {
7004
+ position: relative;
7005
+ }
7006
+
7007
+ .pa-gallery-img .pa-gallery-whole-link {
7008
+ position: absolute;
7009
+ top: 0;
7010
+ right: 0;
7011
+ width: 100%;
7012
+ height: 100%;
7013
+ }
7014
+
7015
+ .pa-gallery-img.style2 .pa-gallery-whole-link {
7016
+ z-index: 99;
7017
+ }
7018
+
7019
+ .pa-gallery-img-container {
7020
+ overflow: hidden;
7021
+ -webkit-backface-visibility: hidden;
7022
+ -moz-backface-visibility: hidden;
7023
+ -webkit-transform: translate3d(0, 0, 0);
7024
+ transform: translate3d(0, 0, 0);
7025
+ }
7026
+
7027
+ .pa-gallery-img-container img {
7028
+ display: block;
7029
+ width: 100%;
7030
+ -webkit-transition: all 0.3s ease-in-out;
7031
+ transition: all 0.3s ease-in-out;
7032
+ }
7033
+
7034
+ .premium-img-gallery.gray img {
7035
+ -webkit-filter: grayscale(100%);
7036
+ filter: grayscale(100%);
7037
+ }
7038
+
7039
+ .premium-img-gallery.zoomout img,
7040
+ .premium-img-gallery.scale img {
7041
+ -webkit-transform: scale(1.2);
7042
+ -ms-transform: scale(1.2);
7043
+ transform: scale(1.2);
7044
+ }
7045
+
7046
+ .premium-img-gallery.sepia img {
7047
+ -webkit-filter: sepia(30%);
7048
+ filter: sepia(30%);
7049
+ }
7050
+
7051
+ .premium-img-gallery.bright img {
7052
+ -webkit-filter: brightness(1);
7053
+ filter: brightness(1);
7054
+ }
7055
+
7056
+ .premium-img-gallery.trans img {
7057
+ -webkit-transform: translateX(15px) scale(1.1);
7058
+ -ms-transform: translateX(15px) scale(1.1);
7059
+ transform: translateX(15px) scale(1.1);
7060
+ }
7061
+
7062
+ .pa-gallery-img .pa-gallery-magnific-image,
7063
+ .pa-gallery-img .pa-gallery-img-link {
7064
+ outline: none;
7065
+ }
7066
+
7067
+ .pa-gallery-img .pa-gallery-magnific-image span,
7068
+ .pa-gallery-img .pa-gallery-img-link span {
7069
+ line-height: 1;
7070
+ display: inline-block;
7071
+ opacity: 0;
7072
+ margin: 0 5px;
7073
+ padding: 15px;
7074
+ -webkit-border-radius: 50%;
7075
+ border-radius: 50%;
7076
+ }
7077
+
7078
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
7079
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
7080
+ margin: 0 5px 20px;
7081
+ }
7082
+
7083
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
7084
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
7085
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
7086
+ }
7087
+
7088
+ .pa-gallery-img:hover .pa-gallery-img-link span {
7089
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7090
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7091
+ }
7092
+
7093
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
7094
+ .pa-gallery-img:hover .pa-gallery-img-link span,
7095
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
7096
+ opacity: 1;
7097
+ }
7098
+
7099
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
7100
+ .premium-blog-filter ul.premium-blog-filters-container {
7101
+ text-align: center;
7102
+ margin: 0;
7103
+ padding: 0;
7104
+ }
7105
+
7106
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
7107
+ .premium-blog-filter .premium-blog-filters-container li {
7108
+ list-style: none;
7109
+ display: -webkit-inline-box;
7110
+ display: -webkit-inline-flex;
7111
+ display: -ms-inline-flexbox;
7112
+ -js-display: inline-flex;
7113
+ display: -moz-inline-box;
7114
+ display: inline-flex;
7115
+ }
7116
+
7117
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
7118
+ -webkit-transform: scale(1.1);
7119
+ -ms-transform: scale(1.1);
7120
+ transform: scale(1.1);
7121
+ }
7122
+
7123
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
7124
+ -webkit-transform: scale(1);
7125
+ -ms-transform: scale(1);
7126
+ transform: scale(1);
7127
+ }
7128
+
7129
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
7130
+ -webkit-transform: scale(1.3) rotate(-5deg);
7131
+ -ms-transform: scale(1.3) rotate(-5deg);
7132
+ transform: scale(1.3) rotate(-5deg);
7133
+ }
7134
+
7135
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
7136
+ -webkit-filter: grayscale(0%);
7137
+ filter: grayscale(0%);
7138
+ }
7139
+
7140
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
7141
+ -webkit-filter: blur(3px);
7142
+ filter: blur(3px);
7143
+ }
7144
+
7145
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
7146
+ -webkit-filter: sepia(0%);
7147
+ filter: sepia(0%);
7148
+ }
7149
+
7150
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
7151
+ -webkit-transform: translateX(0px) scale(1.1);
7152
+ -ms-transform: translateX(0px) scale(1.1);
7153
+ transform: translateX(0px) scale(1.1);
7154
+ }
7155
+
7156
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
7157
+ -webkit-filter: brightness(1.2);
7158
+ filter: brightness(1.2);
7159
+ }
7160
+
7161
+ .pa-gallery-img .premium-gallery-caption {
7162
+ padding: 10px;
7163
+ }
7164
+
7165
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
7166
+ margin-bottom: 0;
7167
+ }
7168
+
7169
+ .pa-gallery-img.style1 {
7170
+ overflow: hidden;
7171
+ }
7172
+
7173
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
7174
+ position: absolute;
7175
+ top: 0;
7176
+ right: 0;
7177
+ width: 100%;
7178
+ height: 100%;
7179
+ -webkit-transition: all 0.3s ease-in-out;
7180
+ transition: all 0.3s ease-in-out;
7181
+ }
7182
+
7183
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
7184
+ position: absolute;
7185
+ top: 33.33%;
7186
+ width: 100%;
7187
+ text-align: center;
7188
+ -webkit-transform: translateY(-50%);
7189
+ -ms-transform: translateY(-50%);
7190
+ transform: translateY(-50%);
7191
+ z-index: 999;
7192
+ }
7193
+
7194
+ .premium-blog-post-container .premium-blog-entry-container {
7195
+ margin: 0 !important;
7196
+ }
7197
+
7198
+ .pa-gallery-img.style1 .premium-gallery-caption {
7199
+ position: absolute;
7200
+ top: auto;
7201
+ left: 0;
7202
+ right: 0;
7203
+ width: 100%;
7204
+ -webkit-transition: all 500ms ease 0s;
7205
+ transition: all 500ms ease 0s;
7206
+ -webkit-transform: translate3d(0, 100%, 0);
7207
+ -ms-transform: translate3d(0, 100%, 0);
7208
+ transform: translate3d(0, 100%, 0);
7209
+ }
7210
+
7211
+ .pa-gallery-img.default .premium-gallery-caption {
7212
+ position: absolute;
7213
+ top: auto;
7214
+ left: 0;
7215
+ right: 0;
7216
+ width: 100%;
7217
+ bottom: 0;
7218
+ }
7219
+
7220
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
7221
+ -webkit-transform: translate3d(0, 0, 0);
7222
+ -ms-transform: translate3d(0, 0, 0);
7223
+ transform: translate3d(0, 0, 0);
7224
+ bottom: -1px !important;
7225
+ }
7226
+
7227
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
7228
+ position: absolute;
7229
+ top: 0;
7230
+ right: 0;
7231
+ width: 100%;
7232
+ height: 100%;
7233
+ opacity: 0;
7234
+ -webkit-backface-visibility: hidden;
7235
+ backface-visibility: hidden;
7236
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
7237
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
7238
+ transition: opacity 0.3s, -webkit-transform 0.3s;
7239
+ transition: transform 0.3s, opacity 0.3s;
7240
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
7241
+ z-index: 1;
7242
+ background-color: rgba(108, 191, 226, 0.68);
7243
+ display: -webkit-box;
7244
+ display: -webkit-flex;
7245
+ display: -ms-flexbox;
7246
+ -js-display: flex;
7247
+ display: -moz-box;
7248
+ display: flex;
7249
+ text-align: center;
7250
+ -webkit-box-align: center;
7251
+ -webkit-align-items: center;
7252
+ -moz-box-align: center;
7253
+ -ms-flex-align: center;
7254
+ align-items: center;
7255
+ }
7256
+
7257
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
7258
+ width: 100%;
7259
+ }
7260
+
7261
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
7262
+ opacity: 1;
7263
+ -webkit-transform: translate(-15px, 15px);
7264
+ -ms-transform: translate(-15px, 15px);
7265
+ transform: translate(-15px, 15px);
7266
+ }
7267
+
7268
+ .premium-clearfix {
7269
+ clear: both;
7270
+ }
7271
+
7272
+ .premium-gallery-container .pa-gallery-item {
7273
+ padding: 10px;
7274
+ }
7275
+
7276
+ /**
7277
+ * Metro Layout
7278
+ */
7279
+ .premium-img-gallery-metro .premium-gallery-item {
7280
+ overflow: hidden;
7281
+ }
7282
+
7283
+ .premium-img-gallery-metro .pa-gallery-img {
7284
+ height: 100%;
7285
+ }
7286
+
7287
+ .premium-img-gallery-metro .pa-gallery-img-container {
7288
+ height: 100%;
7289
+ }
7290
+
7291
+ .premium-img-gallery-metro .pa-gallery-img-container img {
7292
+ min-height: 100%;
7293
+ width: 100%;
7294
+ -o-object-fit: fill;
7295
+ object-fit: fill;
7296
+ }
7297
+
7298
+ .premium-img-gallery .premium-gallery-item-hidden {
7299
+ visibility: hidden;
7300
+ width: 0 !important;
7301
+ height: 0 !important;
7302
+ margin: 0 !important;
7303
+ padding: 0 !important;
7304
+ }
7305
+
7306
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
7307
+ -webkit-box-shadow: none;
7308
+ box-shadow: none;
7309
+ text-shadow: none;
7310
+ border: none;
7311
+ outline: none;
7312
+ -webkit-box-align: center;
7313
+ -ms-flex-align: center;
7314
+ -webkit-align-items: center;
7315
+ -moz-box-align: center;
7316
+ align-items: center;
7317
+ vertical-align: bottom;
7318
+ cursor: pointer;
7319
+ line-height: 1;
7320
+ font-style: normal;
7321
+ font-weight: normal;
7322
+ background-image: none;
7323
+ color: #fff;
7324
+ -webkit-transition: all 0.3s ease-in-out;
7325
+ transition: all 0.3s ease-in-out;
7326
+ }
7327
+
7328
+ .premium-gallery-load-more-btn {
7329
+ display: -webkit-inline-box;
7330
+ display: -webkit-inline-flex;
7331
+ display: -ms-inline-flexbox;
7332
+ -js-display: inline-flex;
7333
+ display: -moz-inline-box;
7334
+ display: inline-flex;
7335
+ -webkit-box-align: center;
7336
+ -webkit-align-items: center;
7337
+ -moz-box-align: center;
7338
+ -ms-flex-align: center;
7339
+ align-items: center;
7340
+ }
7341
+
7342
+ .premium-loader {
7343
+ border: 3px solid #f3f3f3;
7344
+ border-top-width: 3px;
7345
+ border-top-style: solid;
7346
+ border-top-color: rgb(243, 243, 243);
7347
+ -webkit-border-radius: 50%;
7348
+ border-radius: 50%;
7349
+ border-top: 3px solid;
7350
+ border-top-color: #bbb;
7351
+ width: 30px;
7352
+ height: 30px;
7353
+ -webkit-animation: spin 2s linear infinite;
7354
+ animation: spin 2s linear infinite;
7355
+ margin: 0 auto;
7356
+ }
7357
+
7358
+ .premium-gallery-load-more-btn div {
7359
+ margin-right: 3px;
7360
+ }
7361
+
7362
+ .premium-gallery-load-more-btn .premium-loader {
7363
+ display: inline-block;
7364
+ width: 20px;
7365
+ height: 20px;
7366
+ }
7367
+
7368
+ /** * Video */
7369
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
7370
+ display: inline-block;
7371
+ }
7372
+
7373
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
7374
+ .pa-gallery-img .pa-gallery-video-icon {
7375
+ cursor: pointer;
7376
+ }
7377
+
7378
+ .pa-gallery-img-container iframe,
7379
+ .pa-gallery-img-container video {
7380
+ position: absolute;
7381
+ visibility: hidden;
7382
+ top: 0;
7383
+ right: 0;
7384
+ max-width: 100%;
7385
+ width: 100%;
7386
+ height: 100%;
7387
+ margin: 0;
7388
+ line-height: 1;
7389
+ border: none;
7390
+ }
7391
+
7392
+ .pa-gallery-img-container video {
7393
+ -o-object-fit: contain;
7394
+ object-fit: contain;
7395
+ }
7396
+
7397
+ .pa-gallery-icons-inner-container svg,
7398
+ .pa-gallery-icons-caption-cell svg {
7399
+ width: 14px;
7400
+ height: 14px;
7401
+ }
7402
+
7403
+ .premium-gallery-gradient-layer {
7404
+ position: absolute;
7405
+ bottom: 40px;
7406
+ width: 100%;
7407
+ height: 20px;
7408
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
7409
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7410
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7411
+ }
7412
+
7413
+ @-webkit-keyframes spin {
7414
+ 0% {
7415
+ -webkit-transform: rotate(0deg);
7416
+ }
7417
+
7418
+ 100% {
7419
+ -webkit-transform: rotate(-360deg);
7420
+ }
7421
+ }
7422
+
7423
+ @keyframes spin {
7424
+ 0% {
7425
+ -webkit-transform: rotate(0deg);
7426
+ transform: rotate(0deg);
7427
+ }
7428
+
7429
+ 100% {
7430
+ -webkit-transform: rotate(-360deg);
7431
+ transform: rotate(-360deg);
7432
+ }
7433
+ }
7434
+
7435
+ /************ Premium Vertical Scroll ************/
7436
+ /*************************************************/
7437
+ .premium-vscroll-inner {
7438
+ position: relative;
7439
+ /* overflow: hidden;
7440
+ */
7441
+ min-height: 100%;
7442
+ }
7443
+
7444
+ .premium-vscroll-inner .premium-vscroll-dots {
7445
+ position: fixed;
7446
+ z-index: 100;
7447
+ opacity: 1;
7448
+ margin-top: -32px;
7449
+ -webkit-transition: all 0.3s ease-in-out;
7450
+ transition: all 0.3s ease-in-out;
7451
+ }
7452
+
7453
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
7454
+ opacity: 1;
7455
+ -webkit-transition: all 0.3s ease-in-out;
7456
+ transition: all 0.3s ease-in-out;
7457
+ }
7458
+
7459
+ .premium-vscroll-inner .premium-vscroll-dots,
7460
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
7461
+ opacity: 0;
7462
+ visibility: hidden;
7463
+ }
7464
+
7465
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
7466
+ opacity: 1;
7467
+ visibility: visible;
7468
+ }
7469
+
7470
+ .premium-vscroll-dots.middle {
7471
+ top: 50%;
7472
+ }
7473
+
7474
+ .premium-vscroll-dots.top {
7475
+ top: 40px;
7476
+ }
7477
+
7478
+ .premium-vscroll-dots.bottom {
7479
+ bottom: 30px;
7480
+ }
7481
+
7482
+ .premium-vscroll-dots.right {
7483
+ left: 17px;
7484
+ }
7485
+
7486
+ .premium-vscroll-dots.left {
7487
+ right: 17px;
7488
+ }
7489
+
7490
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
7491
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
7492
+ margin: 0 !important;
7493
+ padding: 0;
7494
+ }
7495
+
7496
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
7497
+ width: 14px;
7498
+ height: 13px;
7499
+ margin: 7px;
7500
+ position: relative;
7501
+ display: -webkit-box;
7502
+ display: -webkit-flex;
7503
+ display: -ms-flexbox;
7504
+ -js-display: flex;
7505
+ display: -moz-box;
7506
+ display: flex;
7507
+ -webkit-box-pack: center;
7508
+ -ms-flex-pack: center;
7509
+ -webkit-justify-content: center;
7510
+ -moz-box-pack: center;
7511
+ justify-content: center;
7512
+ -webkit-box-align: center;
7513
+ -ms-flex-align: center;
7514
+ -webkit-align-items: center;
7515
+ -moz-box-align: center;
7516
+ align-items: center;
7517
+ overflow: visible;
7518
+ }
7519
+
7520
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
7521
+ display: block;
7522
+ position: relative;
7523
+ z-index: 1;
7524
+ width: 100%;
7525
+ height: 100%;
7526
+ cursor: pointer;
7527
+ text-decoration: none;
7528
+ }
7529
+
7530
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
7531
+ top: 2px;
7532
+ right: 2.5px;
7533
+ width: 8px;
7534
+ height: 8px;
7535
+ border: 1px solid #000;
7536
+ -webkit-border-radius: 50%;
7537
+ border-radius: 50%;
7538
+ position: absolute;
7539
+ z-index: 1;
7540
+ -webkit-transition: all 0.3s ease-in-out;
7541
+ transition: all 0.3s ease-in-out;
7542
+ }
7543
+
7544
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
7545
+ -webkit-transform: scale(1.6);
7546
+ -ms-transform: scale(1.6);
7547
+ transform: scale(1.6);
7548
+ }
7549
+
7550
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
7551
+ position: absolute;
7552
+ color: #fff;
7553
+ font-size: 14px;
7554
+ font-family: arial, helvetica, sans-serif;
7555
+ white-space: nowrap;
7556
+ max-width: 220px;
7557
+ padding-right: 0.4em;
7558
+ padding-left: 0.4em;
7559
+ }
7560
+
7561
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
7562
+ left: 27px;
7563
+ }
7564
+
7565
+ /* * Lines */
7566
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
7567
+ width: 4px;
7568
+ height: 30px;
7569
+ }
7570
+
7571
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
7572
+ width: 100%;
7573
+ height: 100%;
7574
+ -webkit-border-radius: 0;
7575
+ border-radius: 0;
7576
+ }
7577
+
7578
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
7579
+ -webkit-transform: scale(1);
7580
+ -ms-transform: scale(1);
7581
+ transform: scale(1);
7582
+ }
7583
+
7584
+ @media (max-width: 768px) {
7585
+ .premium-vscroll-dots.right {
7586
+ left: 7px;
7587
+ }
7588
+
7589
+ .premium-vscroll-dots.left {
7590
+ right: 7px;
7591
+ }
7592
+ }
7593
+
7594
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
7595
+ position: absolute;
7596
+ top: 50%;
7597
+ content: "";
7598
+ right: -webkit-calc(100% - 1px);
7599
+ right: calc(100% - 1px);
7600
+ width: 10px;
7601
+ height: 0;
7602
+ border-top: 6px solid transparent;
7603
+ border-bottom: 6px solid transparent;
7604
+ border-right: 6px solid;
7605
+ -webkit-transform: translateY(-50%);
7606
+ -ms-transform: translateY(-50%);
7607
+ transform: translateY(-50%);
7608
+ }
7609
+
7610
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
7611
+ position: absolute;
7612
+ top: 50%;
7613
+ content: "";
7614
+ left: -webkit-calc(100% - 1px);
7615
+ left: calc(100% - 1px);
7616
+ width: 10px;
7617
+ height: 0;
7618
+ border-top: 6px solid transparent;
7619
+ border-bottom: 6px solid transparent;
7620
+ border-left: 6px solid;
7621
+ -webkit-transform: translateY(-50%);
7622
+ -ms-transform: translateY(-50%);
7623
+ transform: translateY(-50%);
7624
+ }
7625
+
7626
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
7627
+ right: 27px;
7628
+ }
7629
+
7630
+ .premium-vscroll-nav-menu {
7631
+ position: fixed;
7632
+ top: 20px;
7633
+ height: 40px;
7634
+ z-index: 100;
7635
+ padding: 0;
7636
+ margin: 0;
7637
+ }
7638
+
7639
+ .premium-vscroll-nav-menu.left {
7640
+ right: 0;
7641
+ }
7642
+
7643
+ .premium-vscroll-nav-menu.right {
7644
+ left: 0;
7645
+ }
7646
+
7647
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
7648
+ display: inline-block;
7649
+ margin: 10px;
7650
+ color: #000;
7651
+ background: #fff;
7652
+ background: rgba(255, 255, 255, 0.3);
7653
+ }
7654
+
7655
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
7656
+ padding: 9px 18px;
7657
+ display: block;
7658
+ cursor: pointer;
7659
+ }
7660
+
7661
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
7662
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
7663
+ color: #000;
7664
+ }
7665
+
7666
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
7667
+ .multiscroll-nav li a:focus {
7668
+ outline: none;
7669
+ }
7670
+
7671
+ .premium-vscroll-temp .slimScrollBar {
7672
+ visibility: hidden;
7673
+ }
7674
+
7675
+ /************ Premium Image Scroll ***************/
7676
+ /*************************************************/
7677
+ .premium-image-scroll-section,
7678
+ .premium-image-scroll-container {
7679
+ -webkit-transition: all 0.3s ease-in-out;
7680
+ transition: all 0.3s ease-in-out;
7681
+ }
7682
+
7683
+ .premium-image-scroll-section {
7684
+ position: relative;
7685
+ overflow: hidden;
7686
+ width: 100%;
7687
+ -webkit-mask-image: -webkit-radial-gradient(white, black);
7688
+ }
7689
+
7690
+ .premium-image-scroll-container {
7691
+ width: 100%;
7692
+ }
7693
+
7694
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
7695
+ -webkit-mask-repeat: no-repeat;
7696
+ mask-repeat: no-repeat;
7697
+ -webkit-mask-position: center;
7698
+ mask-position: center;
7699
+ }
7700
+
7701
+ .premium-container-scroll {
7702
+ overflow: auto;
7703
+ }
7704
+
7705
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
7706
+ position: relative;
7707
+ width: 100%;
7708
+ height: 100%;
7709
+ }
7710
+
7711
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
7712
+ max-width: none;
7713
+ height: 100%;
7714
+ }
7715
+
7716
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
7717
+ width: 100%;
7718
+ max-width: 100%;
7719
+ height: auto;
7720
+ }
7721
+
7722
+ .premium-image-scroll-ver {
7723
+ position: relative;
7724
+ }
7725
+
7726
+ .premium-image-scroll-container .premium-image-scroll-overlay {
7727
+ background: rgba(2, 2, 2, 0.3);
7728
+ }
7729
+
7730
+ .premium-image-scroll-container .premium-image-scroll-link,
7731
+ .premium-image-scroll-container .premium-image-scroll-overlay {
7732
+ position: absolute;
7733
+ top: 0;
7734
+ bottom: 0;
7735
+ right: 0;
7736
+ left: 0;
7737
+ z-index: 4;
7738
+ }
7739
+
7740
+ .premium-image-scroll-content {
7741
+ display: inline-block;
7742
+ position: absolute;
7743
+ height: auto;
7744
+ top: 50%;
7745
+ right: 50%;
7746
+ text-align: center;
7747
+ z-index: 5;
7748
+ -webkit-transform: translate(50%, -50%);
7749
+ -ms-transform: translate(50%, -50%);
7750
+ transform: translate(50%, -50%);
7751
+ }
7752
+
7753
+ .premium-container-scroll-instant .premium-image-scroll-image {
7754
+ -webkit-transition: all 0s ease-in-out !important;
7755
+ transition: all 0s ease-in-out !important;
7756
+ }
7757
+
7758
+ .premium-image-scroll-container img {
7759
+ -webkit-transition: -webkit-transform 3s ease-in-out;
7760
+ transition: -webkit-transform 3s ease-in-out;
7761
+ transition: transform 3s ease-in-out;
7762
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
7763
+ }
7764
+
7765
+ .premium-image-scroll-container .premium-image-scroll-overlay,
7766
+ .premium-image-scroll-container .premium-image-scroll-content {
7767
+ -webkit-transition: all 0.3s ease-in-out;
7768
+ transition: all 0.3s ease-in-out;
7769
+ opacity: 1;
7770
+ }
7771
+
7772
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
7773
+ opacity: 0;
7774
+ }
7775
+
7776
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
7777
+ opacity: 0;
7778
+ visibility: hidden;
7779
+ }
7780
+
7781
+ .premium-image-scroll-content .premium-image-scroll-icon {
7782
+ display: inline-block;
7783
+ font-family: "pa-elements" !important;
7784
+ speak: none;
7785
+ font-style: normal;
7786
+ font-weight: normal;
7787
+ font-variant: normal;
7788
+ text-transform: none;
7789
+ line-height: 1;
7790
+ -webkit-font-smoothing: antialiased;
7791
+ -moz-osx-font-smoothing: grayscale;
7792
+ -webkit-animation-duration: 0.5s;
7793
+ animation-duration: 0.5s;
7794
+ -webkit-animation-iteration-count: infinite;
7795
+ animation-iteration-count: infinite;
7796
+ -webkit-animation-direction: alternate;
7797
+ animation-direction: alternate;
7798
+ -webkit-animation-timing-function: ease-in-out;
7799
+ animation-timing-function: ease-in-out;
7800
+ }
7801
+
7802
+ .pa-horizontal-mouse-scroll:before {
7803
+ content: "\e917";
7804
+ }
7805
+
7806
+ .pa-vertical-mouse-scroll:before {
7807
+ content: "\e918";
7808
+ }
7809
+
7810
+ .pa-horizontal-mouse-scroll {
7811
+ -webkit-animation-name: pa-scroll-horizontal;
7812
+ animation-name: pa-scroll-horizontal;
7813
+ }
7814
+
7815
+ .pa-vertical-mouse-scroll {
7816
+ -webkit-animation-name: pa-scroll-vertical;
7817
+ animation-name: pa-scroll-vertical;
7818
+ }
7819
+
7820
+ @-webkit-keyframes pa-scroll-vertical {
7821
+ 0% {
7822
+ -webkit-transform: translateY(0px);
7823
+ transform: translateY(0px);
7824
+ }
7825
+
7826
+ 100% {
7827
+ -webkit-transform: translateY(5px);
7828
+ transform: translateY(5px);
7829
+ }
7830
+ }
7831
+
7832
+ @keyframes pa-scroll-vertical {
7833
+ 0% {
7834
+ -webkit-transform: translateY(0px);
7835
+ transform: translateY(0px);
7836
+ }
7837
+
7838
+ 100% {
7839
+ -webkit-transform: translateY(5px);
7840
+ transform: translateY(5px);
7841
+ }
7842
+ }
7843
+
7844
+ @-webkit-keyframes pa-scroll-horizontal {
7845
+ 0% {
7846
+ -webkit-transform: translateX(0px);
7847
+ transform: translateX(0px);
7848
+ }
7849
+
7850
+ 100% {
7851
+ -webkit-transform: translateX(-5px);
7852
+ transform: translateX(-5px);
7853
+ }
7854
+ }
7855
+
7856
+ @keyframes pa-scroll-horizontal {
7857
+ 0% {
7858
+ -webkit-transform: translateX(0px);
7859
+ transform: translateX(0px);
7860
+ }
7861
+
7862
+ 100% {
7863
+ -webkit-transform: translateX(-5px);
7864
+ transform: translateX(-5px);
7865
+ }
7866
+ }
7867
+
7868
+ /********* Premium Lottie Animations **********/
7869
+ /**********************************************/
7870
+ .premium-lottie-wrap .premium-lottie-animation {
7871
+ position: relative;
7872
+ -js-display: inline-flex;
7873
+ display: -webkit-inline-box;
7874
+ display: -webkit-inline-flex;
7875
+ display: -moz-inline-box;
7876
+ display: -ms-inline-flexbox;
7877
+ display: inline-flex;
7878
+ -webkit-transition: all 0.3s ease-in-out;
7879
+ transition: all 0.3s ease-in-out;
7880
+ }
7881
+
7882
+ .premium-lottie-wrap .premium-lottie-animation a {
7883
+ position: absolute;
7884
+ left: 0;
7885
+ top: 0;
7886
+ width: 100%;
7887
+ height: 100%;
7888
+ }
7889
+
7890
+ /**************** Premium Bullet List *****************/
7891
+ /******************************************************/
7892
+ .premium-icon-list-box {
7893
+ -js-display: flex;
7894
+ display: -webkit-box;
7895
+ display: -webkit-flex;
7896
+ display: -moz-box;
7897
+ display: -ms-flexbox;
7898
+ display: flex;
7899
+ -webkit-flex-wrap: wrap;
7900
+ -ms-flex-wrap: wrap;
7901
+ flex-wrap: wrap;
7902
+ -webkit-box-orient: vertical;
7903
+ -webkit-box-direction: normal;
7904
+ -webkit-flex-direction: column;
7905
+ -moz-box-orient: vertical;
7906
+ -moz-box-direction: normal;
7907
+ -ms-flex-direction: column;
7908
+ flex-direction: column;
7909
+ }
7910
+
7911
+ .premium-icon-list-box .premium-icon-list-content-grow-lc {
7912
+ -webkit-transform-origin: right center;
7913
+ -ms-transform-origin: right center;
7914
+ transform-origin: right center;
7915
+ }
7916
+
7917
+ .premium-icon-list-box .premium-icon-list-content-grow-rc {
7918
+ -webkit-transform-origin: left center;
7919
+ -ms-transform-origin: left center;
7920
+ transform-origin: left center;
7921
+ }
7922
+
7923
+ .premium-icon-list-box .premium-icon-list-content-grow-cc {
7924
+ -webkit-transform-origin: center center;
7925
+ -ms-transform-origin: center center;
7926
+ transform-origin: center center;
7927
+ }
7928
+
7929
+ .premium-icon-list-content {
7930
+ -js-display: flex;
7931
+ display: -webkit-box;
7932
+ display: -webkit-flex;
7933
+ display: -moz-box;
7934
+ display: -ms-flexbox;
7935
+ display: flex;
7936
+ -webkit-transition: all 0.3s ease-in-out;
7937
+ transition: all 0.3s ease-in-out;
7938
+ width: auto;
7939
+ position: relative;
7940
+ }
7941
+
7942
+ .premium-icon-list-content .premium-icon-list-text span,
7943
+ .premium-icon-list-content .premium-icon-list-wrapper {
7944
+ display: inline-block;
7945
+ -webkit-align-self: center;
7946
+ -ms-flex-item-align: center;
7947
+ align-self: center;
7948
+ -webkit-transition: all 0.3s ease-in-out;
7949
+ transition: all 0.3s ease-in-out;
7950
+ }
7951
+
7952
+ .premium-icon-list-content .premium-icon-list-text span {
7953
+ margin: 0 5px;
7954
+ }
7955
+
7956
+ .premium-icon-list-content .premium-icon-list-icon-text p {
7957
+ font-size: 18px;
7958
+ background-color: #eee;
7959
+ padding: 1px 5px;
7960
+ -webkit-border-radius: 2px;
7961
+ border-radius: 2px;
7962
+ }
7963
+
7964
+ .premium-icon-list-content .premium-icon-list-text span,
7965
+ .premium-icon-list-content .premium-icon-list-icon-text p,
7966
+ .premium-icon-list-content .premium-icon-list-wrapper img,
7967
+ .premium-icon-list-content .premium-icon-list-wrapper svg,
7968
+ .premium-icon-list-content .premium-icon-list-wrapper i {
7969
+ -webkit-transition: all 0.3s ease-in-out;
7970
+ transition: all 0.3s ease-in-out;
7971
+ }
7972
+
7973
+ .premium-icon-list-content .premium-icon-list-wrapper {
7974
+ position: relative;
7975
+ line-height: 0;
7976
+ }
7977
+
7978
+ .premium-icon-list-content .premium-icon-list-wrapper img,
7979
+ .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
7980
+ width: 30px !important;
7981
+ height: 30px !important;
7982
+ position: relative;
7983
+ z-index: 500;
7984
+ }
7985
+
7986
+ .premium-icon-list-content .premium-icon-list-wrapper i,
7987
+ .premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
7988
+ position: relative;
7989
+ z-index: 500;
7990
+ }
7991
+
7992
+ .premium-icon-list-content .premium-icon-list-link {
7993
+ position: absolute;
7994
+ top: 0;
7995
+ right: 0;
7996
+ width: 100%;
7997
+ height: 100%;
7998
+ z-index: 1000;
7999
+ }
8000
+
8001
+ .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
8002
+ width: 100%;
8003
+ height: 100%;
8004
+ position: absolute;
8005
+ top: 0.5em;
8006
+ z-index: 100;
8007
+ -js-display: flex;
8008
+ display: -webkit-box;
8009
+ display: -webkit-flex;
8010
+ display: -moz-box;
8011
+ display: -ms-flexbox;
8012
+ display: flex;
8013
+ -webkit-box-pack: center;
8014
+ -webkit-justify-content: center;
8015
+ -moz-box-pack: center;
8016
+ -ms-flex-pack: center;
8017
+ justify-content: center;
8018
+ }
8019
+
8020
+ .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
8021
+ content: "";
8022
+ border-left-width: 1px;
8023
+ border-left-style: solid;
8024
+ border-color: #333333;
8025
+ display: block;
8026
+ height: 100%;
8027
+ }
8028
+
8029
+ li.premium-icon-list-content.premium-icon-list-content-inline {
8030
+ -webkit-align-self: center;
8031
+ -ms-flex-item-align: center;
8032
+ align-self: center;
8033
+ z-index: 2;
8034
+ }
8035
+
8036
+ li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
8037
+ margin: 0 3px;
8038
+ }
8039
+
8040
+ li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
8041
+ margin: 0 0 0 3px;
8042
+ }
8043
+
8044
+ .premium-icon-list-divider:not(:last-child) {
8045
+ width: 100%;
8046
+ -webkit-box-flex: 0;
8047
+ -webkit-flex: 0 0 100%;
8048
+ -moz-box-flex: 0;
8049
+ -ms-flex: 0 0 100%;
8050
+ flex: 0 0 100%;
8051
+ overflow: hidden;
8052
+ }
8053
+
8054
+ .premium-icon-list-divider:not(:last-child):after {
8055
+ content: "";
8056
+ display: block;
8057
+ border-top-style: solid;
8058
+ border-top-width: 1px;
8059
+ }
8060
+
8061
+ .premium-icon-list-divider-inline:not(:last-child) {
8062
+ float: left;
8063
+ display: inline-block;
8064
+ position: relative;
8065
+ height: 100%;
8066
+ overflow: hidden;
8067
+ -webkit-align-self: center;
8068
+ -ms-flex-item-align: center;
8069
+ align-self: center;
8070
+ margin: 0 3px;
8071
+ }
8072
+
8073
+ .premium-icon-list-divider-inline:not(:last-child):after {
8074
+ content: "";
8075
+ display: block;
8076
+ border-right-width: 1px;
8077
+ height: 33px;
8078
+ border-right-style: solid;
8079
+ }
8080
+
8081
+ .premium-icon-list-icon-text {
8082
+ line-height: 1.5;
8083
+ }
8084
+
8085
+ .premium-icon-list-icon-text p,
8086
+ ul.premium-icon-list-box,
8087
+ li.premium-icon-list-content {
8088
+ margin: 0;
8089
+ }
8090
+
8091
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
8092
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
8093
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
8094
+ color: transparent !important;
8095
+ text-shadow: 0 0 3px #aaa;
8096
+ }
8097
+
8098
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
8099
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
8100
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
8101
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
8102
+ -webkit-filter: blur(3px);
8103
+ filter: blur(3px);
8104
+ }
8105
+
8106
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
8107
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
8108
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
8109
+ color: #aaa !important;
8110
+ text-shadow: 0 0px 0 transparent;
8111
+ }
8112
+
8113
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
8114
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
8115
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
8116
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
8117
+ -webkit-filter: none;
8118
+ filter: none;
8119
+ }
8120
+
8121
+ .premium-icon-list-content .premium-icon-list-badge {
8122
+ font-size: 11px;
8123
+ top: auto;
8124
+ min-width: -webkit-max-content;
8125
+ min-width: -moz-max-content;
8126
+ min-width: max-content;
8127
+ height: -webkit-fit-content;
8128
+ height: -moz-fit-content;
8129
+ height: fit-content;
8130
+ }
8131
+
8132
+ .premium-icon-list-content .premium-icon-list-icon-text p {
8133
+ font-size: 13px;
8134
+ }
8135
+
8136
+ .premium-icon-list-gradient-effect[data-text] {
8137
+ display: inline-block;
8138
+ position: relative;
8139
+ text-decoration: none;
8140
+ }
8141
+
8142
+ .premium-icon-list-gradient-effect[data-text]::before {
8143
+ content: attr(data-text);
8144
+ position: absolute;
8145
+ z-index: 1;
8146
+ overflow: hidden;
8147
+ -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8148
+ clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8149
+ -webkit-background-clip: text;
8150
+ background-clip: text;
8151
+ -webkit-text-fill-color: transparent;
8152
+ -webkit-transition: all 0.4s ease;
8153
+ transition: all 0.4s ease;
8154
+ }
8155
+
8156
+ .premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
8157
+ .premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
8158
+ -webkit-animation: rtlgradient 1s forwards;
8159
+ animation: rtlgradient 1s forwards;
8160
+ }
8161
+
8162
+ @-webkit-keyframes rtlgradient {
8163
+ 0% {
8164
+ -webkit-clip-path: circle(0% at 150% 50%);
8165
+ clip-path: circle(0% at 150% 50%);
8166
+ }
8167
+
8168
+ 100% {
8169
+ -webkit-clip-path: circle(100% at 50% 50%);
8170
+ clip-path: circle(100% at 50% 50%);
8171
+ }
8172
+ }
8173
+
8174
+ @keyframes rtlgradient {
8175
+ 0% {
8176
+ -webkit-clip-path: circle(0% at 150% 50%);
8177
+ clip-path: circle(0% at 150% 50%);
8178
+ }
8179
+
8180
+ 100% {
8181
+ -webkit-clip-path: circle(100% at 50% 50%);
8182
+ clip-path: circle(100% at 50% 50%);
8183
+ }
8184
+ }
8185
+
8186
+ ul[data-list-animation*="animated-"] .premium-icon-list-divider,
8187
+ ul[data-list-animation*="animated-"] .premium-icon-list-content,
8188
+ ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
8189
+ opacity: 0;
8190
+ }
8191
+
8192
+ .premium-icon-list-content-grow-effect:hover {
8193
+ -webkit-transform: scale(1.07);
8194
+ -ms-transform: scale(1.07);
8195
+ transform: scale(1.07);
8196
  }
assets/frontend/css/premium-addons.css CHANGED
@@ -1,6703 +1,6707 @@
1
- @font-face {
2
- font-family: "pa-elements";
3
- src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
4
- src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"), url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"), url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
5
- font-weight: normal;
6
- font-style: normal; }
7
-
8
- /**************** Premium Banner ****************/
9
- /************************************************/
10
- .premium-banner {
11
- overflow: hidden; }
12
-
13
- .premium-banner-ib {
14
- display: block;
15
- position: relative;
16
- z-index: 1;
17
- overflow: hidden;
18
- margin: 0;
19
- text-align: center;
20
- -webkit-box-sizing: border-box;
21
- -moz-box-sizing: border-box;
22
- box-sizing: border-box; }
23
- .premium-banner-ib img {
24
- display: block;
25
- position: relative; }
26
-
27
- .premium-banner-img-wrap {
28
- -js-display: flex;
29
- display: -webkit-box;
30
- display: -webkit-flex;
31
- display: -moz-box;
32
- display: -ms-flexbox;
33
- display: flex;
34
- height: 100%; }
35
- .premium-banner-img-wrap .premium-banner-ib-img {
36
- -webkit-flex-shrink: 0;
37
- -ms-flex-negative: 0;
38
- flex-shrink: 0; }
39
-
40
- .premium-banner-ib-desc .premium-banner-read-more {
41
- z-index: 100; }
42
-
43
- .elementor-widget-premium-addon-banner .premium-banner-ib-title {
44
- background: transparent; }
45
-
46
- .premium-banner-ib *,
47
- .premium-banner-ib .premium-banner-ib-desc {
48
- -webkit-box-sizing: border-box;
49
- -moz-box-sizing: border-box;
50
- box-sizing: border-box; }
51
-
52
- .premium-banner-ib img {
53
- min-width: 100%;
54
- max-width: 100%;
55
- -webkit-transition: opacity 0.35s;
56
- transition: opacity 0.35s; }
57
-
58
- .premium-banner-ib .premium-banner-ib-desc {
59
- padding: 15px;
60
- -webkit-backface-visibility: hidden;
61
- backface-visibility: hidden;
62
- -webkit-box-sizing: border-box;
63
- -moz-box-sizing: border-box;
64
- box-sizing: border-box;
65
- position: absolute;
66
- top: 0;
67
- left: 0;
68
- width: 100%;
69
- height: 100%; }
70
-
71
- .premium-banner-ib .premium-banner-ib-link {
72
- position: absolute;
73
- top: 0;
74
- left: 0;
75
- width: 100%;
76
- height: 100%;
77
- z-index: 1000;
78
- text-indent: 200%;
79
- white-space: nowrap;
80
- font-size: 0;
81
- opacity: 0; }
82
-
83
- .premium-banner-ib a.premium-banner-ib-link {
84
- display: block;
85
- background: 0 0; }
86
-
87
- .premium-banner-animation1 img {
88
- width: -webkit-calc(100% + 50px) !important;
89
- width: calc(100% + 50px) !important;
90
- max-width: -webkit-calc(100% + 50px) !important;
91
- max-width: calc(100% + 50px) !important;
92
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
93
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
95
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
96
- -webkit-transform: translate3d(-40px, 0, 0);
97
- transform: translate3d(-40px, 0, 0); }
98
-
99
- .premium-banner-animation2 .premium-banner-ib-title {
100
- padding: 15px; }
101
-
102
- .premium-banner-animation1 .premium-banner-ib-desc {
103
- top: auto;
104
- bottom: 0;
105
- min-height: 25%;
106
- height: auto;
107
- max-height: 100%;
108
- text-align: left; }
109
-
110
- .premium-banner-animation1 .premium-banner-ib-content,
111
- .premium-banner-animation1 .premium-banner-ib-title,
112
- .premium-banner-animation1 .premium-banner-read-more {
113
- -webkit-transform: translate3d(0, 40px, 0);
114
- transform: translate3d(0, 40px, 0);
115
- -webkit-transition-delay: 0.05s;
116
- transition-delay: 0.05s;
117
- -webkit-transition-duration: 0.35s;
118
- transition-duration: 0.35s; }
119
-
120
- .premium-banner-animation1 .premium-banner-ib-title {
121
- -webkit-transition: -webkit-transform 0.35s;
122
- transition: -webkit-transform 0.35s;
123
- transition: transform 0.35s;
124
- transition: transform 0.35s, -webkit-transform 0.35s; }
125
-
126
- .premium-banner-animation1 .premium-banner-ib-content,
127
- .premium-banner-animation1 .premium-banner-read-more {
128
- margin-top: 10px;
129
- opacity: 0;
130
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
131
- transition: opacity 0.2s, -webkit-transform 0.35s;
132
- transition: opacity 0.2s, transform 0.35s;
133
- transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
134
-
135
- .premium-banner-animation1:hover .premium-banner-ib-content,
136
- .premium-banner-animation1.active .premium-banner-ib-content,
137
- .premium-banner-animation1:hover .premium-banner-read-more,
138
- .premium-banner-animation1.active .premium-banner-read-more {
139
- opacity: 1;
140
- -webkit-transition-delay: 0.05s;
141
- transition-delay: 0.05s;
142
- -webkit-transition-duration: 0.35s;
143
- transition-duration: 0.35s; }
144
-
145
- .premium-banner-animation1:hover .premium-banner-ib-content,
146
- .premium-banner-animation1.active .premium-banner-ib-content,
147
- .premium-banner-animation1:hover .premium-banner-read-more,
148
- .premium-banner-animation1.active .premium-banner-read-more,
149
- .premium-banner-animation1:hover .premium-banner-ib-title,
150
- .premium-banner-animation1.active .premium-banner-ib-title,
151
- .premium-banner-animation1:hover img,
152
- .premium-banner-animation1.active img {
153
- -webkit-transform: translate3d(0, 0, 0);
154
- transform: translate3d(0, 0, 0);
155
- -webkit-transition-delay: 0.05s;
156
- transition-delay: 0.05s;
157
- -webkit-transition-duration: 0.35s;
158
- transition-duration: 0.35s; }
159
-
160
- .premium-banner-animation1.zoomout img,
161
- .premium-banner-animation1.scale img {
162
- -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
163
- transform: translate3d(-40px, 0, 0) scale(1.1); }
164
-
165
- .premium-banner-ib.sepia img {
166
- -webkit-filter: sepia(30%);
167
- filter: sepia(30%); }
168
-
169
- .premium-banner-ib.bright img {
170
- -webkit-filter: brightness(1);
171
- filter: brightness(1); }
172
-
173
- .premium-banner-ib.sepia:hover img {
174
- -webkit-filter: sepia(0%);
175
- filter: sepia(0%); }
176
-
177
- .premium-banner-ib.bright:hover img {
178
- -webkit-filter: brightness(1.2);
179
- filter: brightness(1.2); }
180
-
181
- .premium-banner-animation1.premium-banner-min-height img,
182
- .premium-banner-animation2.premium-banner-min-height img,
183
- .premium-banner-animation4.premium-banner-min-height img,
184
- .premium-banner-animation5.premium-banner-min-height img,
185
- .premium-banner-animation6.premium-banner-min-height img,
186
- .premium-banner-animation13.premium-banner-min-height img {
187
- height: auto; }
188
-
189
- .premium-banner-animation2 img {
190
- width: 100%; }
191
-
192
- .premium-banner-animation2 .premium-banner-ib-desc::before {
193
- position: absolute;
194
- content: "";
195
- top: 0;
196
- left: 0;
197
- width: 100%;
198
- height: 100%;
199
- opacity: 0;
200
- -webkit-transform: translate3d(0, 50%, 0);
201
- transform: translate3d(0, 50%, 0); }
202
-
203
- .premium-banner-animation2 .premium-banner-ib-title {
204
- position: absolute;
205
- top: 50%;
206
- left: 0;
207
- width: 100%;
208
- -webkit-transition: color 0.35s, -webkit-transform 0.35s;
209
- transition: color 0.35s, -webkit-transform 0.35s;
210
- transition: transform 0.35s, color 0.35s;
211
- transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
212
- -webkit-transform: translate3d(0, -50%, 0);
213
- transform: translate3d(0, -50%, 0); }
214
-
215
- .premium-banner-animation2 .premium-banner-ib-content,
216
- .premium-banner-animation2 .premium-banner-read-more,
217
- .premium-banner-animation2 .premium-banner-ib-desc::before {
218
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
219
- transition: opacity 0.35s, -webkit-transform 0.35s;
220
- transition: opacity 0.35s, transform 0.35s;
221
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
222
-
223
- .premium-banner-animation2 .premium-banner-ib-content,
224
- .premium-banner-animation2 .premium-banner-read-more {
225
- position: absolute;
226
- bottom: 0;
227
- left: 0;
228
- padding: 15px;
229
- width: 100%;
230
- max-height: 50%;
231
- opacity: 0;
232
- -webkit-transform: translate3d(0, 10px, 0);
233
- transform: translate3d(0, 10px, 0); }
234
-
235
- .premium-banner-animation2:hover .premium-banner-ib-title,
236
- .premium-banner-animation2.active .premium-banner-ib-title {
237
- -webkit-transform: translate3d(0, -40px, 0);
238
- transform: translate3d(0, -40px, 0); }
239
-
240
- .premium-banner-animation2:hover .premium-banner-read-more,
241
- .premium-banner-animation2.active .premium-banner-read-more,
242
- .premium-banner-animation2:hover .premium-banner-ib-desc::before,
243
- .premium-banner-animation2.active .premium-banner-ib-desc::before {
244
- opacity: 1;
245
- -webkit-transform: translate3d(0, 0, 0);
246
- transform: translate3d(0, 0, 0); }
247
-
248
- .premium-banner-animation2:hover .premium-banner-ib-content,
249
- .premium-banner-animation2.active .premium-banner-ib-content {
250
- opacity: 1;
251
- -webkit-transform: translate3d(0, -30px, 0);
252
- transform: translate3d(0, -30px, 0); }
253
-
254
- .premium-banner-animation3 .premium-banner-ib-title {
255
- position: absolute;
256
- bottom: 0;
257
- left: 0;
258
- padding: 15px;
259
- width: 100%;
260
- text-align: left;
261
- -webkit-transform: translate3d(0, -30px, 0);
262
- transform: translate3d(0, -30px, 0); }
263
-
264
- .premium-banner-animation3 .premium-banner-ib-desc::before,
265
- .premium-banner-animation3 .premium-banner-ib-title {
266
- -webkit-transition: -webkit-transform 0.35s;
267
- transition: -webkit-transform 0.35s;
268
- transition: transform 0.35s;
269
- transition: transform 0.35s, -webkit-transform 0.35s; }
270
-
271
- .premium-banner-animation3:hover .premium-banner-ib-desc::before,
272
- .premium-banner-animation3.active .premium-banner-ib-desc::before,
273
- .premium-banner-animation3:hover .premium-banner-ib-title,
274
- .premium-banner-animation3.active .premium-banner-ib-title {
275
- opacity: 1;
276
- -webkit-transform: translate3d(0, 0, 0);
277
- transform: translate3d(0, 0, 0); }
278
-
279
- .premium-banner-animation3 .premium-banner-ib-content {
280
- max-height: -webkit-calc(100% - 60px - 1.5em);
281
- max-height: calc(100% - 60px - 1.5em);
282
- overflow: hidden; }
283
-
284
- .premium-banner-animation4 img {
285
- width: -webkit-calc(100% + 40px) !important;
286
- width: calc(100% + 40px) !important;
287
- max-width: -webkit-calc(100% + 40px) !important;
288
- max-width: calc(100% + 40px) !important; }
289
-
290
- .premium-banner-animation4 .premium-banner-ib-desc {
291
- padding: 30px; }
292
- .premium-banner-animation4 .premium-banner-ib-desc::after {
293
- position: absolute;
294
- content: "";
295
- opacity: 0; }
296
- .premium-banner-animation4 .premium-banner-ib-desc::before {
297
- position: absolute;
298
- content: "";
299
- opacity: 0;
300
- top: 50px;
301
- right: 30px;
302
- bottom: 50px;
303
- left: 30px;
304
- border-top: 1px solid #fff;
305
- border-bottom: 1px solid #fff;
306
- -webkit-transform: scale(0, 1);
307
- -ms-transform: scale(0, 1);
308
- transform: scale(0, 1);
309
- -webkit-transform-origin: 0 0;
310
- -ms-transform-origin: 0 0;
311
- transform-origin: 0 0; }
312
- .premium-banner-animation4 .premium-banner-ib-desc::after {
313
- top: 30px;
314
- right: 50px;
315
- bottom: 30px;
316
- left: 50px;
317
- border-right: 1px solid #fff;
318
- border-left: 1px solid #fff;
319
- -webkit-transform: scale(1, 0);
320
- -ms-transform: scale(1, 0);
321
- transform: scale(1, 0);
322
- -webkit-transform-origin: 100% 0;
323
- -ms-transform-origin: 100% 0;
324
- transform-origin: 100% 0; }
325
-
326
- .premium-banner-animation4 .premium-banner-ib-title {
327
- padding: 50px 30px 0 30px;
328
- -webkit-transition: -webkit-transform 0.35s;
329
- transition: -webkit-transform 0.35s;
330
- transition: transform 0.35s;
331
- transition: transform 0.35s, -webkit-transform 0.35s; }
332
-
333
- .premium-banner-animation4 .premium-banner-ib-content,
334
- .premium-banner-animation4 .premium-banner-read-more {
335
- padding: 10px 30px;
336
- opacity: 0;
337
- overflow: hidden;
338
- -webkit-transform: translate3d(0, -10px, 0);
339
- transform: translate3d(0, -10px, 0); }
340
-
341
- .premium-banner-animation4 .premium-banner-ib-title,
342
- .premium-banner-animation4 img {
343
- -webkit-transform: translate3d(-30px, 0, 0);
344
- transform: translate3d(-30px, 0, 0); }
345
-
346
- .premium-banner-animation4.zoomout img,
347
- .premium-banner-animation4.scale img {
348
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
349
- transform: translate3d(-30px, 0, 0) scale(1.1); }
350
-
351
- .premium-banner-animation4 .premium-banner-ib-content,
352
- .premium-banner-animation4 .premium-banner-read-more {
353
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
354
- transition: opacity 0.35s, -webkit-transform 0.35s;
355
- transition: opacity 0.35s, transform 0.35s;
356
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
357
-
358
- .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
359
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
360
- transition: opacity 0.35s, -webkit-transform 0.35s;
361
- transition: opacity 0.35s, transform 0.35s;
362
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
363
-
364
- .premium-banner-animation4 img {
365
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
366
- transition: opacity 0.35s, -webkit-transform 0.35s;
367
- transition: opacity 0.35s, transform 0.35s;
368
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
369
-
370
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
371
- .premium-banner-animation4.active .premium-banner-ib-desc::after,
372
- .premium-banner-animation4:hover .premium-banner-ib-desc::before,
373
- .premium-banner-animation4.active .premium-banner-ib-desc::before {
374
- opacity: 1;
375
- -webkit-transform: scale(1);
376
- -ms-transform: scale(1);
377
- transform: scale(1); }
378
-
379
- .premium-banner-animation4:hover .premium-banner-ib-content,
380
- .premium-banner-animation4.active .premium-banner-ib-content,
381
- .premium-banner-animation4:hover .premium-banner-read-more,
382
- .premium-banner-animation4.active .premium-banner-read-more,
383
- .premium-banner-animation4:hover .premium-banner-ib-title,
384
- .premium-banner-animation4.active .premium-banner-ib-title {
385
- opacity: 1;
386
- -webkit-transform: translate3d(0, 0, 0);
387
- transform: translate3d(0, 0, 0); }
388
-
389
- .premium-banner-animation4:hover .premium-banner-ib-content,
390
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
391
- .premium-banner-animation4:hover .premium-banner-ib-title,
392
- .premium-banner-animation4:hover img {
393
- -webkit-transition-delay: 0.15s;
394
- transition-delay: 0.15s; }
395
-
396
- .premium-banner-animation5 .premium-banner-ib-desc {
397
- top: auto;
398
- bottom: 0;
399
- padding: 15px;
400
- height: auto;
401
- background: #f2f2f2;
402
- color: #3c4a50;
403
- -webkit-transition: -webkit-transform 0.35s;
404
- transition: -webkit-transform 0.35s;
405
- transition: transform 0.35s;
406
- transition: transform 0.35s, -webkit-transform 0.35s;
407
- -webkit-transform: translate3d(0, 100%, 0);
408
- transform: translate3d(0, 100%, 0); }
409
-
410
- .premium-banner-animation5 .premium-banner-ib-content {
411
- position: absolute;
412
- top: auto;
413
- bottom: 100%;
414
- left: 0;
415
- width: 100%;
416
- padding: 15px;
417
- opacity: 0;
418
- -webkit-transition: opacity 0.35s;
419
- transition: opacity 0.35s; }
420
-
421
- .premium-banner-animation5 .premium-banner-ib-title,
422
- .premium-banner-animation5 .premium-banner-read-more {
423
- -webkit-transition: -webkit-transform 0.35s;
424
- transition: -webkit-transform 0.35s;
425
- transition: transform 0.35s;
426
- transition: transform 0.35s, -webkit-transform 0.35s;
427
- -webkit-transform: translate3d(0, 200%, 0);
428
- transform: translate3d(0, 200%, 0);
429
- text-align: center; }
430
-
431
- .premium-banner-animation5 .premium-banner-ib-title {
432
- margin: 10px 0; }
433
-
434
- .premium-banner-animation5:hover .premium-banner-ib-content,
435
- .premium-banner-animation5.active .premium-banner-ib-content,
436
- .premium-banner-animation5:hover .premium-banner-ib-content *,
437
- .premium-banner-animation5.active .premium-banner-ib-content * {
438
- opacity: 1 !important;
439
- z-index: 99 !important;
440
- -webkit-backface-visibility: hidden !important;
441
- backface-visibility: hidden !important; }
442
-
443
- .premium-banner-animation5:hover .premium-banner-ib-desc,
444
- .premium-banner-animation5.active .premium-banner-ib-desc,
445
- .premium-banner-animation5:hover .premium-banner-ib-title,
446
- .premium-banner-animation5.active .premium-banner-ib-title,
447
- .premium-banner-animation5:hover .premium-banner-read-more,
448
- .premium-banner-animation5.active .premium-banner-read-more {
449
- -webkit-transform: translateY(0);
450
- -ms-transform: translateY(0);
451
- transform: translateY(0); }
452
-
453
- .premium-banner-animation5:hover .premium-banner-ib-title {
454
- -webkit-transition-delay: 0.05s;
455
- transition-delay: 0.05s; }
456
-
457
- .premium-banner-animation5 img {
458
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
459
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
461
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
462
-
463
- .premium-banner-animation2 img,
464
- .premium-banner-animation4 img,
465
- .premium-banner-animation6 img {
466
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
467
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
469
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
470
-
471
- .premium-banner-animation5.zoomout img,
472
- .premium-banner-animation5.scale img {
473
- -webkit-transform: scale(1.1);
474
- -ms-transform: scale(1.1);
475
- transform: scale(1.1); }
476
-
477
- .premium-banner-animation2.zoomout img,
478
- .premium-banner-animation2.scale img {
479
- -webkit-transform: scale(1.1);
480
- -ms-transform: scale(1.1);
481
- transform: scale(1.1); }
482
-
483
- .premium-banner-animation6.zoomout img,
484
- .premium-banner-animation6.scale img {
485
- -webkit-transform: scale(1.1);
486
- -ms-transform: scale(1.1);
487
- transform: scale(1.1); }
488
-
489
- .premium-banner-animation5.zoomin:hover img,
490
- .premium-banner-animation2.zoomin:hover img,
491
- .premium-banner-animation6.zoomin:hover img {
492
- -webkit-transform: scale(1.1);
493
- -ms-transform: scale(1.1);
494
- transform: scale(1.1); }
495
-
496
- .premium-banner-animation5.zoomout:hover img,
497
- .premium-banner-animation2.zoomout:hover img,
498
- .premium-banner-animation6.zoomout:hover img {
499
- -webkit-transform: scale(1);
500
- -ms-transform: scale(1);
501
- transform: scale(1); }
502
-
503
- .premium-banner-animation5.scale:hover img,
504
- .premium-banner-animation2.scale:hover img,
505
- .premium-banner-animation6.scale:hover img {
506
- -webkit-transform: scale(1.2) rotate(5deg);
507
- -ms-transform: scale(1.2) rotate(5deg);
508
- transform: scale(1.2) rotate(5deg); }
509
-
510
- .premium-banner-animation5.grayscale:hover img,
511
- .premium-banner-animation2.grayscale:hover img,
512
- .premium-banner-animation6.grayscale:hover img {
513
- -webkit-filter: grayscale(100%);
514
- filter: grayscale(100%); }
515
-
516
- .premium-banner-animation5.blur:hover img,
517
- .premium-banner-animation2.blur:hover img {
518
- -webkit-filter: blur(3px);
519
- filter: blur(3px); }
520
-
521
- .premium-banner-animation6.blur:hover img {
522
- -webkit-filter: blur(3px);
523
- filter: blur(3px); }
524
-
525
- .premium-banner-animation6 .premium-banner-ib-desc {
526
- padding: 45px; }
527
- .premium-banner-animation6 .premium-banner-ib-desc::before {
528
- position: absolute;
529
- content: "";
530
- top: 30px;
531
- right: 30px;
532
- bottom: 30px;
533
- left: 30px;
534
- border: 1px solid #fff; }
535
-
536
- .premium-banner-animation6 .premium-banner-ib-title {
537
- margin: 20px 0 10px;
538
- -webkit-transition: -webkit-transform 0.35s;
539
- transition: -webkit-transform 0.35s;
540
- transition: transform 0.35s;
541
- transition: transform 0.35s, -webkit-transform 0.35s;
542
- -webkit-transform: translate3d(0, 100%, 0);
543
- transform: translate3d(0, 100%, 0); }
544
-
545
- .premium-banner-animation6 .premium-banner-ib-content,
546
- .premium-banner-animation6 .premium-banner-read-more,
547
- .premium-banner-animation6 .premium-banner-ib-desc::before {
548
- opacity: 0;
549
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
550
- transition: opacity 0.35s, -webkit-transform 0.35s;
551
- transition: opacity 0.35s, transform 0.35s;
552
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
553
- -webkit-transform: scale(0);
554
- -ms-transform: scale(0);
555
- transform: scale(0); }
556
-
557
- .premium-banner-animation6 .premium-banner-read-more {
558
- margin-top: 10px; }
559
-
560
- .premium-banner-animation6:hover .premium-banner-ib-title,
561
- .premium-banner-animation6.active .premium-banner-ib-title {
562
- -webkit-transform: translate3d(0, 0, 0);
563
- transform: translate3d(0, 0, 0); }
564
-
565
- .premium-banner-animation6:hover .premium-banner-ib-content,
566
- .premium-banner-animation6.active .premium-banner-ib-content,
567
- .premium-banner-animation6:hover .premium-banner-read-more,
568
- .premium-banner-animation6.active .premium-banner-read-more,
569
- .premium-banner-animation6:hover .premium-banner-ib-desc::before,
570
- .premium-banner-animation6.active .premium-banner-ib-desc::before {
571
- opacity: 1;
572
- -webkit-transform: scale(1);
573
- -ms-transform: scale(1);
574
- transform: scale(1); }
575
-
576
- .premium-banner-animation12 .premium-banner-ib-desc::after {
577
- position: absolute;
578
- content: "";
579
- right: 30px;
580
- bottom: 30px;
581
- left: 30px;
582
- height: -webkit-calc(50% - 30px);
583
- height: calc(50% - 30px);
584
- border: 7px solid #fff;
585
- -webkit-transition: -webkit-transform 0.35s;
586
- transition: -webkit-transform 0.35s;
587
- transition: transform 0.35s;
588
- transition: transform 0.35s, -webkit-transform 0.35s;
589
- -webkit-transform: translate3d(0, -100%, 0);
590
- transform: translate3d(0, -100%, 0); }
591
-
592
- .premium-banner-animation12:hover .premium-banner-ib-desc::after,
593
- .premium-banner-animation12.active .premium-banner-ib-desc::after {
594
- -webkit-transform: translate3d(0, 0, 0);
595
- transform: translate3d(0, 0, 0); }
596
-
597
- .premium-banner-animation12 .premium-banner-ib-desc {
598
- padding: 45px;
599
- text-align: left; }
600
-
601
- .premium-banner-animation12 .premium-banner-ib-content {
602
- position: absolute;
603
- right: 60px;
604
- bottom: 60px;
605
- left: 60px;
606
- opacity: 0;
607
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
608
- transition: opacity 0.35s, -webkit-transform 0.35s;
609
- transition: opacity 0.35s, transform 0.35s;
610
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
611
- -webkit-transform: translate3d(0, -100px, 0);
612
- transform: translate3d(0, -100px, 0); }
613
-
614
- .premium-banner-animation12:hover .premium-banner-ib-content,
615
- .premium-banner-animation12.active .premium-banner-ib-content {
616
- opacity: 1;
617
- -webkit-transform: translate3d(0, 0, 0);
618
- transform: translate3d(0, 0, 0); }
619
-
620
- .premium-banner-animation13 img {
621
- width: -webkit-calc(100% + 20px) !important;
622
- width: calc(100% + 20px) !important;
623
- max-width: -webkit-calc(100% + 20px) !important;
624
- max-width: calc(100% + 20px) !important;
625
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
626
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
628
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
629
- -webkit-transform: translate3d(-10px, 0, 0);
630
- transform: translate3d(-10px, 0, 0);
631
- -webkit-backface-visibility: hidden;
632
- backface-visibility: hidden; }
633
-
634
- .premium-banner-animation13.zoomout img,
635
- .premium-banner-animation13.scale img {
636
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
637
- transform: translate3d(-10px, 0, 0) scale(1.1); }
638
-
639
- .premium-banner-animation13.none:hover img {
640
- -webkit-transform: translate3d(0, 0, 0);
641
- transform: translate3d(0, 0, 0); }
642
-
643
- .premium-banner-animation1.none:hover img,
644
- .premium-banner-animation4.none:hover img {
645
- -webkit-transform: translate3d(0, 0, 0);
646
- transform: translate3d(0, 0, 0); }
647
-
648
- .premium-banner-animation13.zoomin:hover img,
649
- .premium-banner-animation1.zoomin:hover img,
650
- .premium-banner-animation4.zoomin:hover img,
651
- .premium-banner-animation8.zoomin:hover img,
652
- .premium-banner-animation7.zoomin:hover img,
653
- .premium-banner-animation9.zoomin:hover img,
654
- .premium-banner-animation10.zoomin:hover img,
655
- .premium-banner-animation11.zoomin:hover img {
656
- -webkit-transform: translate3d(0, 0, 0) scale(1.1);
657
- transform: translate3d(0, 0, 0) scale(1.1); }
658
-
659
- .premium-banner-animation13.zoomout:hover img,
660
- .premium-banner-animation1.zoomout:hover img,
661
- .premium-banner-animation4.zoomout:hover img,
662
- .premium-banner-animation8.zoomout:hover img,
663
- .premium-banner-animation7.zoomout:hover img,
664
- .premium-banner-animation9.zoomout:hover img,
665
- .premium-banner-animation10.zoomout:hover img,
666
- .premium-banner-animation11.zoomout:hover img {
667
- -webkit-transform: translate3d(0, 0, 0) scale(1);
668
- transform: translate3d(0, 0, 0) scale(1); }
669
-
670
- .premium-banner-animation13.scale:hover img,
671
- .premium-banner-animation1.scale:hover img,
672
- .premium-banner-animation4.scale:hover img,
673
- .premium-banner-animation8.scale:hover img,
674
- .premium-banner-animation7.scale:hover img,
675
- .premium-banner-animation9.scale:hover img,
676
- .premium-banner-animation10.scale:hover img,
677
- .premium-banner-animation11.scale:hover img {
678
- -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
679
- transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
680
-
681
- .premium-banner-animation13.grayscale:hover img,
682
- .premium-banner-animation1.grayscale:hover img,
683
- .premium-banner-animation4.grayscale:hover img,
684
- .premium-banner-animation8.grayscale:hover img,
685
- .premium-banner-animation7.grayscale:hover img,
686
- .premium-banner-animation9.grayscale:hover img,
687
- .premium-banner-animation10.grayscale:hover img,
688
- .premium-banner-animation11.grayscale:hover img {
689
- -webkit-transform: translate3d(0, 0, 0);
690
- transform: translate3d(0, 0, 0);
691
- -webkit-filter: grayscale(100%);
692
- filter: grayscale(100%); }
693
-
694
- .premium-banner-animation13.blur:hover img,
695
- .premium-banner-animation1.blur:hover img,
696
- .premium-banner-animation4.blur:hover,
697
- .premium-banner-animation8.blur:hover img,
698
- .premium-banner-animation7.blur:hover img,
699
- .premium-banner-animation9.blur:hover img,
700
- .premium-banner-animation10.blur:hover img,
701
- .premium-banner-animation11.blur:hover img {
702
- -webkit-transform: translate3d(0, 0, 0);
703
- transform: translate3d(0, 0, 0);
704
- -webkit-filter: blur(3px);
705
- filter: blur(3px); }
706
-
707
- .premium-banner-animation13 .premium-banner-ib-desc {
708
- text-align: left; }
709
-
710
- .premium-banner-animation13 .premium-banner-ib-title {
711
- position: relative;
712
- overflow: hidden;
713
- padding: 5px 0 10px; }
714
- .premium-banner-animation13 .premium-banner-ib-title::after {
715
- position: absolute;
716
- content: "";
717
- bottom: 0;
718
- left: 0;
719
- width: 100%;
720
- height: 2px;
721
- background: #fff;
722
- -webkit-transition: -webkit-transform 0.35s;
723
- transition: -webkit-transform 0.35s;
724
- transition: transform 0.35s;
725
- transition: transform 0.35s, -webkit-transform 0.35s;
726
- -webkit-transform: translate3d(-101%, 0, 0);
727
- transform: translate3d(-101%, 0, 0); }
728
-
729
- .premium-banner-animation13:hover .premium-banner-ib-title::after,
730
- .premium-banner-animation13.active .premium-banner-ib-title::after {
731
- -webkit-transform: translate3d(0, 0, 0);
732
- transform: translate3d(0, 0, 0); }
733
-
734
- .premium-banner-animation13 .premium-banner-ib-content,
735
- .premium-banner-animation13 .premium-banner-read-more {
736
- padding: 15px 0;
737
- opacity: 0;
738
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
739
- transition: opacity 0.35s, -webkit-transform 0.35s;
740
- transition: opacity 0.35s, transform 0.35s;
741
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
742
- -webkit-transform: translate3d(100%, 0, 0);
743
- transform: translate3d(100%, 0, 0); }
744
-
745
- .premium-banner-animation13:hover .premium-banner-ib-content,
746
- .premium-banner-animation13.active .premium-banner-ib-content,
747
- .premium-banner-animation13:hover .premium-banner-read-more,
748
- .premium-banner-animation13.active .premium-banner-read-more {
749
- opacity: 1;
750
- -webkit-transform: translate3d(0, 0, 0);
751
- transform: translate3d(0, 0, 0); }
752
-
753
- .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
754
- left: 50%;
755
- width: auto !important;
756
- height: 100%;
757
- max-width: none;
758
- -webkit-transform: translateX(-50%);
759
- -ms-transform: translateX(-50%);
760
- transform: translateX(-50%); }
761
-
762
- .premium-banner-ib img {
763
- border: none;
764
- padding: 0;
765
- margin: 0; }
766
-
767
- .premium-banner-animation7 img {
768
- width: -webkit-calc(100% + 40px) !important;
769
- width: calc(100% + 40px) !important;
770
- max-width: -webkit-calc(100% + 40px) !important;
771
- max-width: calc(100% + 40px) !important;
772
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
773
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
775
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
776
-
777
- .premium-banner-animation7 .premium-banner-brlr {
778
- width: 7px; }
779
-
780
- .premium-banner-animation7 .premium-banner-brtb {
781
- height: 7px; }
782
-
783
- .premium-banner-animation7 .premium-banner-br {
784
- position: absolute;
785
- z-index: 1;
786
- background-color: white;
787
- -webkit-transition: all 0.3s ease-in-out;
788
- transition: all 0.3s ease-in-out;
789
- -webkit-transition-delay: 0.2s;
790
- transition-delay: 0.2s; }
791
-
792
- .premium-banner-animation7 .premium-banner-bleft {
793
- left: 30px;
794
- top: -webkit-calc(100% - 150px);
795
- top: calc(100% - 150px);
796
- height: 0; }
797
-
798
- .premium-banner-animation7 .premium-banner-bright {
799
- right: 30px;
800
- bottom: -webkit-calc(100% - 150px);
801
- bottom: calc(100% - 150px);
802
- height: 0; }
803
-
804
- .premium-banner-animation7 .premium-banner-bottom {
805
- right: -webkit-calc(100% - 150px);
806
- right: calc(100% - 150px);
807
- bottom: 30px;
808
- width: 0; }
809
-
810
- .premium-banner-animation7 .premium-banner-btop {
811
- left: -webkit-calc(100% - 150px);
812
- left: calc(100% - 150px);
813
- top: 30px;
814
- width: 0; }
815
-
816
- .premium-banner-animation7 .premium-banner-ib-desc {
817
- padding: 70px;
818
- display: table; }
819
- .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
820
- display: table-cell;
821
- vertical-align: middle; }
822
-
823
- .premium-banner-animation7 .premium-banner-ib-title {
824
- margin-top: 0; }
825
-
826
- .premium-banner-animation7 .premium-banner-ib-title,
827
- .premium-banner-animation7 img {
828
- -webkit-transform: translate3d(-30px, 0, 0);
829
- transform: translate3d(-30px, 0, 0); }
830
-
831
- .premium-banner-animation7.zoomout img,
832
- .premium-banner-animation7.scale img {
833
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
834
- transform: translate3d(-30px, 0, 0) scale(1.1); }
835
-
836
- .premium-banner-animation7 .premium-banner-ib-content,
837
- .premium-banner-animation7 .premium-banner-read-more {
838
- margin-top: 10px; }
839
-
840
- .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
841
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
842
- transition: opacity 0.35s, -webkit-transform 0.35s;
843
- transition: opacity 0.35s, transform 0.35s;
844
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
845
-
846
- .premium-banner-animation7 .premium-banner-ib-title,
847
- .premium-banner-animation7 .premium-banner-ib-content,
848
- .premium-banner-animation7 .premium-banner-read-more {
849
- opacity: 0;
850
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
851
- transition: opacity 0.35s, -webkit-transform 0.35s;
852
- transition: opacity 0.35s, transform 0.35s;
853
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
854
-
855
- .premium-banner-animation7:hover .premium-banner-ib-content,
856
- .premium-banner-animation7.active .premium-banner-ib-content,
857
- .premium-banner-animation7:hover .premium-banner-read-more,
858
- .premium-banner-animation7.active .premium-banner-read-more,
859
- .premium-banner-animation7:hover .premium-banner-ib-title,
860
- .premium-banner-animation7.active .premium-banner-ib-title {
861
- opacity: 1;
862
- -webkit-transform: translate3d(0, 0, 0);
863
- transform: translate3d(0, 0, 0); }
864
-
865
- .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
866
- top: 30px;
867
- height: 70px; }
868
-
869
- .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
870
- bottom: 30px;
871
- height: 70px; }
872
-
873
- .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
874
- right: 30px;
875
- width: 70px; }
876
-
877
- .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
878
- left: 30px;
879
- width: 70px; }
880
-
881
- .premium-banner-animation7:hover .premium-banner-ib-content,
882
- .premium-banner-animation7:hover .premium-banner-read-more,
883
- .premium-banner-animation7:hover .premium-banner-ib-title,
884
- .premium-banner-animation7:hover img {
885
- -webkit-transition-delay: 0.15s;
886
- transition-delay: 0.15s; }
887
-
888
- .premium-banner-animation8 img {
889
- width: -webkit-calc(100% + 40px) !important;
890
- width: calc(100% + 40px) !important;
891
- max-width: -webkit-calc(100% + 40px) !important;
892
- max-width: calc(100% + 40px) !important;
893
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
894
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
896
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
897
-
898
- .premium-banner-animation8 .premium-banner-brlr {
899
- width: 7px; }
900
-
901
- .premium-banner-animation8 .premium-banner-brtb {
902
- height: 7px; }
903
-
904
- .premium-banner-animation8 .premium-banner-br {
905
- position: absolute;
906
- z-index: 1;
907
- background-color: white;
908
- -webkit-transition: all 0.3s ease-in-out;
909
- transition: all 0.3s ease-in-out;
910
- -webkit-transition-delay: 0.2s;
911
- transition-delay: 0.2s; }
912
-
913
- .premium-banner-animation8 .premium-banner-bleft {
914
- left: 30px;
915
- top: 50%;
916
- -webkit-transform: translateY(-50%);
917
- -ms-transform: translateY(-50%);
918
- transform: translateY(-50%);
919
- height: 0; }
920
-
921
- .premium-banner-animation8 .premium-banner-bright {
922
- right: 30px;
923
- top: 50%;
924
- -webkit-transform: translateY(-50%);
925
- -ms-transform: translateY(-50%);
926
- transform: translateY(-50%);
927
- height: 0; }
928
-
929
- .premium-banner-animation8 .premium-banner-bottom {
930
- left: 50%;
931
- -webkit-transform: translateX(-50%);
932
- -ms-transform: translateX(-50%);
933
- transform: translateX(-50%);
934
- bottom: 30px;
935
- width: 0; }
936
-
937
- .premium-banner-animation8 .premium-banner-btop {
938
- left: 50%;
939
- -webkit-transform: translateX(-50%);
940
- -ms-transform: translateX(-50%);
941
- transform: translateX(-50%);
942
- top: 30px;
943
- width: 0; }
944
-
945
- .premium-banner-animation8 .premium-banner-ib-desc {
946
- padding: 70px;
947
- display: table; }
948
- .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
949
- display: table-cell;
950
- vertical-align: middle; }
951
-
952
- .premium-banner-animation8 .premium-banner-ib-title {
953
- margin-top: 0; }
954
-
955
- .premium-banner-animation8 .premium-banner-ib-title,
956
- .premium-banner-animation8 img {
957
- -webkit-transform: translate3d(-30px, 0, 0);
958
- transform: translate3d(-30px, 0, 0); }
959
-
960
- .premium-banner-animation8.zoomout img,
961
- .premium-banner-animation8.scale img {
962
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
963
- transform: translate3d(-30px, 0, 0) scale(1.1); }
964
-
965
- .premium-banner-animation8 .premium-banner-ib-content,
966
- .premium-banner-animation8 .premium-banner-read-more {
967
- margin-top: 10px; }
968
-
969
- .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
970
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
971
- transition: opacity 0.35s, -webkit-transform 0.35s;
972
- transition: opacity 0.35s, transform 0.35s;
973
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
974
-
975
- .premium-banner-animation8 .premium-banner-ib-title,
976
- .premium-banner-animation8 .premium-banner-ib-content,
977
- .premium-banner-animation8 .premium-banner-read-more {
978
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
979
- transition: opacity 0.35s, -webkit-transform 0.35s;
980
- transition: opacity 0.35s, transform 0.35s;
981
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
982
- opacity: 0; }
983
-
984
- .premium-banner-animation8:hover .premium-banner-ib-content,
985
- .premium-banner-animation8.active .premium-banner-ib-content,
986
- .premium-banner-animation8:hover .premium-banner-read-more,
987
- .premium-banner-animation8.active .premium-banner-read-more,
988
- .premium-banner-animation8:hover .premium-banner-ib-title,
989
- .premium-banner-animation8.active .premium-banner-ib-title {
990
- opacity: 1;
991
- -webkit-transform: translate3d(0, 0, 0);
992
- transform: translate3d(0, 0, 0); }
993
-
994
- .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
995
- height: -webkit-calc(100% - 61px);
996
- height: calc(100% - 61px); }
997
-
998
- .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
999
- height: -webkit-calc(100% - 61px);
1000
- height: calc(100% - 61px); }
1001
-
1002
- .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1003
- width: -webkit-calc(100% - 61px);
1004
- width: calc(100% - 61px); }
1005
-
1006
- .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1007
- width: -webkit-calc(100% - 61px);
1008
- width: calc(100% - 61px); }
1009
-
1010
- .premium-banner-animation8:hover .premium-banner-ib-content,
1011
- .premium-banner-animation8:hover .premium-banner-ib-title,
1012
- .premium-banner-animation8:hover .premium-banner-read-more,
1013
- .premium-banner-animation8:hover img {
1014
- -webkit-transition-delay: 0.15s;
1015
- transition-delay: 0.15s; }
1016
-
1017
- .premium-banner-animation9 img {
1018
- width: -webkit-calc(100% + 20px) !important;
1019
- width: calc(100% + 20px) !important;
1020
- max-width: -webkit-calc(100% + 20px) !important;
1021
- max-width: calc(100% + 20px) !important;
1022
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1023
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1025
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1026
- -webkit-transform: scale(1.2);
1027
- -ms-transform: scale(1.2);
1028
- transform: scale(1.2); }
1029
-
1030
- .premium-banner-animation9 .premium-banner-ib-desc {
1031
- width: 100%;
1032
- height: 100%; }
1033
- .premium-banner-animation9 .premium-banner-ib-desc::before {
1034
- position: absolute;
1035
- top: 50%;
1036
- left: 50%;
1037
- width: 80%;
1038
- height: 1px;
1039
- background: #fff;
1040
- content: "";
1041
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1042
- transition: opacity 0.35s, -webkit-transform 0.35s;
1043
- transition: opacity 0.35s, transform 0.35s;
1044
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1045
- -webkit-transform: translate3d(-50%, -50%, 0);
1046
- transform: translate3d(-50%, -50%, 0); }
1047
- .premium-banner-animation9 .premium-banner-ib-desc::after {
1048
- position: absolute;
1049
- top: 50%;
1050
- left: 50%;
1051
- width: 80%;
1052
- height: 1px;
1053
- background: #fff;
1054
- content: "";
1055
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1056
- transition: opacity 0.35s, -webkit-transform 0.35s;
1057
- transition: opacity 0.35s, transform 0.35s;
1058
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1059
- -webkit-transform: translate3d(-50%, -50%, 0);
1060
- transform: translate3d(-50%, -50%, 0); }
1061
-
1062
- .premium-banner-animation9 .premium-banner-ib-title {
1063
- position: absolute;
1064
- top: 50%;
1065
- left: 0;
1066
- width: 100%;
1067
- -webkit-transition: -webkit-transform 0.35s;
1068
- transition: -webkit-transform 0.35s;
1069
- transition: transform 0.35s;
1070
- transition: transform 0.35s, -webkit-transform 0.35s;
1071
- -webkit-transform: translate3d(0, -70px, 0);
1072
- transform: translate3d(0, -70px, 0);
1073
- margin-top: 0;
1074
- padding: 0 10%; }
1075
-
1076
- .premium-banner-animation9:hover .premium-banner-ib-title,
1077
- .premium-banner-animation9.active .premium-banner-ib-title {
1078
- -webkit-transform: translate3d(0, -80px, 0);
1079
- transform: translate3d(0, -80px, 0); }
1080
-
1081
- .premium-banner-animation9 .premium-banner-ib-content,
1082
- .premium-banner-animation9 .premium-banner-read-more {
1083
- position: absolute;
1084
- top: 50%;
1085
- left: 0;
1086
- width: 100%;
1087
- -webkit-transition: -webkit-transform 0.35s;
1088
- transition: -webkit-transform 0.35s;
1089
- transition: transform 0.35s;
1090
- transition: transform 0.35s, -webkit-transform 0.35s;
1091
- padding: 0 10%;
1092
- -webkit-transform: translate3d(0, 35px, 0);
1093
- transform: translate3d(0, 35px, 0); }
1094
-
1095
- .premium-banner-animation9 .premium-banner-read-more {
1096
- top: 75%; }
1097
-
1098
- .premium-banner-animation9:hover .premium-banner-ib-content,
1099
- .premium-banner-animation9.active .premium-banner-ib-content,
1100
- .premium-banner-animation9:hover .premium-banner-read-more,
1101
- .premium-banner-animation9.active .premium-banner-read-more {
1102
- -webkit-transform: translate3d(0, 45px, 0);
1103
- transform: translate3d(0, 45px, 0); }
1104
-
1105
- .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1106
- .premium-banner-animation9.active .premium-banner-ib-desc::before {
1107
- opacity: 0.5;
1108
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1109
- transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1110
-
1111
- .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1112
- .premium-banner-animation9.active .premium-banner-ib-desc::after {
1113
- opacity: 0.5;
1114
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1115
- transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1116
-
1117
- .premium-banner-animation9:hover img {
1118
- -webkit-transform: scale(1);
1119
- -ms-transform: scale(1);
1120
- transform: scale(1); }
1121
-
1122
- .premium-banner-animation10 img {
1123
- width: -webkit-calc(100% + 20px) !important;
1124
- width: calc(100% + 20px) !important;
1125
- max-width: -webkit-calc(100% + 20px) !important;
1126
- max-width: calc(100% + 20px) !important;
1127
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1128
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1130
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1131
-
1132
- .premium-banner-animation10 .premium-banner-ib-title {
1133
- position: relative;
1134
- overflow: hidden;
1135
- padding: 5px 0 15px;
1136
- -webkit-transition: -webkit-transform 0.35s;
1137
- transition: -webkit-transform 0.35s;
1138
- transition: transform 0.35s;
1139
- transition: transform 0.35s, -webkit-transform 0.35s;
1140
- -webkit-transform: translate3d(0, 20px, 0);
1141
- transform: translate3d(0, 20px, 0);
1142
- margin-bottom: 0; }
1143
- .premium-banner-animation10 .premium-banner-ib-title::after {
1144
- position: absolute;
1145
- content: "";
1146
- bottom: 0;
1147
- left: 0;
1148
- width: 100%;
1149
- height: 3px;
1150
- background: #fff;
1151
- opacity: 0;
1152
- -webkit-transform: translate3d(0, 100%, 0);
1153
- transform: translate3d(0, 100%, 0);
1154
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1155
- transition: opacity 0.35s, -webkit-transform 0.35s;
1156
- transition: opacity 0.35s, transform 0.35s;
1157
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1158
-
1159
- .premium-banner-animation10:hover .premium-banner-ib-title,
1160
- .premium-banner-animation10.active .premium-banner-ib-title {
1161
- -webkit-transform: translate3d(0, 0, 0);
1162
- transform: translate3d(0, 0, 0); }
1163
-
1164
- .premium-banner-animation10:hover .premium-banner-ib-title::after,
1165
- .premium-banner-animation10.active .premium-banner-ib-title::after {
1166
- opacity: 1;
1167
- -webkit-transform: translate3d(0, 0, 0);
1168
- transform: translate3d(0, 0, 0); }
1169
-
1170
- .premium-banner-animation10.zoomout img,
1171
- .premium-banner-animation10.scale img {
1172
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1173
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1174
-
1175
- .premium-banner-animation10 .premium-banner-ib-content,
1176
- .premium-banner-animation10 .premium-banner-read-more {
1177
- padding-top: 15px;
1178
- opacity: 0;
1179
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1180
- transition: opacity 0.35s, -webkit-transform 0.35s;
1181
- transition: opacity 0.35s, transform 0.35s;
1182
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1183
- -webkit-transform: translate3d(0, 100%, 0);
1184
- transform: translate3d(0, 100%, 0); }
1185
-
1186
- .premium-banner-animation10 .premium-banner-read-more {
1187
- padding: 0; }
1188
-
1189
- .premium-banner-animation10:hover .premium-banner-ib-content,
1190
- .premium-banner-animation10.active .premium-banner-ib-content,
1191
- .premium-banner-animation10:hover .premium-banner-read-more,
1192
- .premium-banner-animation10.active .premium-banner-read-more {
1193
- opacity: 1;
1194
- -webkit-transform: translate3d(0, 0, 0);
1195
- transform: translate3d(0, 0, 0); }
1196
-
1197
- .premium-banner-animation11 {
1198
- -webkit-transition: -webkit-transform 1s ease-out;
1199
- transition: -webkit-transform 1s ease-out;
1200
- transition: transform 1s ease-out;
1201
- transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1202
- -webkit-transition-delay: 0.125s;
1203
- transition-delay: 0.125s; }
1204
- .premium-banner-animation11 .premium-banner-ib-desc {
1205
- position: absolute;
1206
- z-index: 5;
1207
- -webkit-transform: translate3d(-30px, 0, 0);
1208
- transform: translate3d(-30px, 0, 0);
1209
- opacity: 0;
1210
- top: auto;
1211
- bottom: 0;
1212
- min-height: 25%;
1213
- height: auto;
1214
- max-height: 100%;
1215
- text-align: left;
1216
- padding: 30px;
1217
- -webkit-transition: all 0.6s ease-out;
1218
- transition: all 0.6s ease-out; }
1219
- .premium-banner-animation11 img {
1220
- width: 100%;
1221
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1222
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1224
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1225
- .premium-banner-animation11 .premium-banner-ib-title {
1226
- margin-bottom: 10px; }
1227
- .premium-banner-animation11 .premium-banner-gradient {
1228
- position: absolute;
1229
- left: 0;
1230
- top: 0;
1231
- right: 0;
1232
- bottom: 0; }
1233
- .premium-banner-animation11 .premium-banner-gradient:after,
1234
- .premium-banner-animation11 .premium-banner-gradient:before {
1235
- position: absolute;
1236
- content: "";
1237
- left: 0;
1238
- top: 0;
1239
- right: 0;
1240
- bottom: 0;
1241
- -webkit-transform: translate3d(-100%, 0, 0);
1242
- transform: translate3d(-100%, 0, 0);
1243
- background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1244
- background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
- z-index: 2; }
1246
- .premium-banner-animation11 .premium-banner-gradient:before {
1247
- mix-blend-mode: color; }
1248
- .premium-banner-animation11 .premium-banner-gradient:after {
1249
- mix-blend-mode: multiply; }
1250
- .premium-banner-animation11:hover .premium-banner-ib-desc,
1251
- .premium-banner-animation11.active .premium-banner-ib-desc {
1252
- opacity: 1;
1253
- -webkit-transform: translate3d(0, 0, 0);
1254
- transform: translate3d(0, 0, 0); }
1255
- .premium-banner-animation11:hover .premium-banner-gradient:after,
1256
- .premium-banner-animation11:hover .premium-banner-gradient:before,
1257
- .premium-banner-animation11.active .premium-banner-gradient:after,
1258
- .premium-banner-animation11.active .premium-banner-gradient:before {
1259
- -webkit-transform: translate3d(0, 0, 0);
1260
- transform: translate3d(0, 0, 0); }
1261
- .premium-banner-animation11.zoomout img,
1262
- .premium-banner-animation11.scale img {
1263
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1264
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1265
-
1266
- /**************** Premium CountDown *************/
1267
- /************************************************/
1268
- .premium-countdown {
1269
- -js-display: flex;
1270
- display: -webkit-box;
1271
- display: -webkit-flex;
1272
- display: -moz-box;
1273
- display: -ms-flexbox;
1274
- display: flex;
1275
- text-align: center; }
1276
-
1277
- .countdown-row {
1278
- display: block;
1279
- text-align: center; }
1280
-
1281
- .countdown .countdown-section {
1282
- display: inline-block;
1283
- max-width: 100%;
1284
- margin-bottom: 15px;
1285
- -js-display: inline-flex;
1286
- display: -webkit-inline-box;
1287
- display: -webkit-inline-flex;
1288
- display: -moz-inline-box;
1289
- display: -ms-inline-flexbox;
1290
- display: inline-flex;
1291
- -webkit-box-align: center;
1292
- -webkit-align-items: center;
1293
- -moz-box-align: center;
1294
- -ms-flex-align: center;
1295
- align-items: center; }
1296
- .countdown .countdown-section:last-child {
1297
- margin-right: 0; }
1298
-
1299
- .countdown span.countdown-amount {
1300
- font-size: 70px;
1301
- line-height: 1;
1302
- padding: 40px; }
1303
-
1304
- .countdown .pre_time-mid {
1305
- display: block; }
1306
-
1307
- .premium-countdown-separator-yes .countdown_separator {
1308
- display: block;
1309
- margin: 0 50px;
1310
- font-size: 30px; }
1311
-
1312
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1313
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1314
- display: none; }
1315
-
1316
- /**
1317
- * Digit and unit styles
1318
- */
1319
- .side .countdown-section .countdown-period {
1320
- vertical-align: bottom; }
1321
-
1322
- .countdown .countdown-section .countdown-period {
1323
- font-size: 17px;
1324
- line-height: 3em; }
1325
-
1326
- .side .countdown-section .countdown-amount,
1327
- .side .countdown-section .countdown-period {
1328
- display: inline-block; }
1329
-
1330
- .side .countdown-section .countdown-amount {
1331
- margin-right: 5px; }
1332
-
1333
- .down .countdown-section .countdown-amount,
1334
- .down .countdown-section .countdown-period {
1335
- display: block; }
1336
-
1337
- /**
1338
- * Flip Layout
1339
- */
1340
- .premium-countdown-flip .premium-countdown-block {
1341
- text-align: center;
1342
- -js-display: inline-flex;
1343
- display: -webkit-inline-box;
1344
- display: -webkit-inline-flex;
1345
- display: -moz-inline-box;
1346
- display: -ms-inline-flexbox;
1347
- display: inline-flex;
1348
- -webkit-box-align: center;
1349
- -webkit-align-items: center;
1350
- -moz-box-align: center;
1351
- -ms-flex-align: center;
1352
- align-items: center; }
1353
- .premium-countdown-flip .premium-countdown-block:last-child {
1354
- margin-right: 0; }
1355
-
1356
- .premium-countdown-flip .premium-countdown-label {
1357
- overflow: hidden;
1358
- color: #1a1a1a;
1359
- text-transform: uppercase; }
1360
-
1361
- .premium-countdown-flip .premium-countdown-figure {
1362
- position: relative;
1363
- height: 110px;
1364
- width: 100px;
1365
- line-height: 107px;
1366
- background-color: #fff;
1367
- -webkit-border-radius: 10px;
1368
- border-radius: 10px;
1369
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
1370
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
1371
- .premium-countdown-flip .premium-countdown-figure:last-child {
1372
- margin-right: 0; }
1373
- .premium-countdown-flip .premium-countdown-figure > span {
1374
- position: absolute;
1375
- left: 0;
1376
- right: 0;
1377
- margin: auto;
1378
- font-weight: 700; }
1379
- .premium-countdown-flip .premium-countdown-figure .top {
1380
- z-index: 3;
1381
- -webkit-transform-origin: 50% 100%;
1382
- -ms-transform-origin: 50% 100%;
1383
- transform-origin: 50% 100%;
1384
- -webkit-transform: perspective(200px);
1385
- transform: perspective(200px);
1386
- -webkit-backface-visibility: hidden;
1387
- backface-visibility: hidden; }
1388
- .premium-countdown-flip .premium-countdown-figure .bottom {
1389
- z-index: 1; }
1390
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
1391
- content: "";
1392
- position: absolute;
1393
- display: block;
1394
- top: 0;
1395
- left: 0;
1396
- width: 100%;
1397
- height: 50%;
1398
- background-color: rgba(0, 0, 0, 0.02); }
1399
- .premium-countdown-flip .premium-countdown-figure .top-back {
1400
- -webkit-backface-visibility: hidden;
1401
- backface-visibility: hidden;
1402
- z-index: 4;
1403
- bottom: 0;
1404
- -webkit-transform-origin: 50% 0;
1405
- -ms-transform-origin: 50% 0;
1406
- transform-origin: 50% 0;
1407
- -webkit-transform: perspective(200px) rotateX(180deg);
1408
- transform: perspective(200px) rotateX(180deg); }
1409
- .premium-countdown-flip .premium-countdown-figure .top-back span {
1410
- position: absolute;
1411
- top: -100%;
1412
- left: 0;
1413
- right: 0;
1414
- margin: auto; }
1415
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
1416
- z-index: 2;
1417
- top: 0; }
1418
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1419
- position: absolute;
1420
- top: 0;
1421
- left: 0;
1422
- right: 0;
1423
- margin: auto; }
1424
- .premium-countdown-flip .premium-countdown-figure .top,
1425
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
1426
- .premium-countdown-flip .premium-countdown-figure .top-back {
1427
- height: 50%;
1428
- overflow: hidden;
1429
- background-color: #f7f7f7;
1430
- -webkit-border-top-left-radius: 10px;
1431
- border-top-left-radius: 10px;
1432
- -webkit-border-top-right-radius: 10px;
1433
- border-top-right-radius: 10px; }
1434
- .premium-countdown-flip .premium-countdown-figure .top-back {
1435
- -webkit-border-bottom-left-radius: 10px;
1436
- border-bottom-left-radius: 10px;
1437
- -webkit-border-bottom-right-radius: 10px;
1438
- border-bottom-right-radius: 10px; }
1439
- .premium-countdown-flip .premium-countdown-figure .top::after,
1440
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1441
- content: "";
1442
- position: absolute;
1443
- z-index: -1;
1444
- left: 0;
1445
- bottom: 0;
1446
- width: 100%;
1447
- height: 100%;
1448
- border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1449
-
1450
- .side .premium-countdown-figure,
1451
- .side .premium-countdown-label {
1452
- display: inline-block; }
1453
-
1454
- .side .premium-countdown-figure {
1455
- margin-right: 5px; }
1456
-
1457
- .down .premium-countdown-figure,
1458
- .down .premium-countdown-label {
1459
- display: block; }
1460
-
1461
- .down .premium-countdown-label {
1462
- width: 100%; }
1463
-
1464
- /**************** Premium Carousel ****************/
1465
- /**************************************************/
1466
- .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
1467
- -js-display: flex;
1468
- display: -webkit-box;
1469
- display: -webkit-flex;
1470
- display: -moz-box;
1471
- display: -ms-flexbox;
1472
- display: flex;
1473
- -webkit-box-align: center;
1474
- -webkit-align-items: center;
1475
- -moz-box-align: center;
1476
- -ms-flex-align: center;
1477
- align-items: center;
1478
- -webkit-box-pack: center;
1479
- -webkit-justify-content: center;
1480
- -moz-box-pack: center;
1481
- -ms-flex-pack: center;
1482
- justify-content: center;
1483
- width: 2em;
1484
- height: 2em;
1485
- line-height: 0;
1486
- text-align: center;
1487
- position: absolute;
1488
- z-index: 99;
1489
- cursor: pointer;
1490
- -webkit-transition: all 0.3s ease-in-out;
1491
- transition: all 0.3s ease-in-out;
1492
- -webkit-appearance: inherit;
1493
- border: none;
1494
- -webkit-box-shadow: none;
1495
- box-shadow: none; }
1496
-
1497
- .premium-tabs-nav-list a.carousel-arrow,
1498
- .premium-fb-rev-container a.carousel-arrow,
1499
- .premium-blog-wrap a.carousel-arrow,
1500
- .premium-hscroll-wrap a.carousel-arrow,
1501
- .premium-twitter-feed-wrapper a.carousel-arrow,
1502
- .premium-facebook-feed-wrapper a.carousel-arrow,
1503
- .premium-instafeed-container a.carousel-arrow,
1504
- .premium-persons-container a.carousel-arrow {
1505
- -js-display: flex;
1506
- display: -webkit-box;
1507
- display: -webkit-flex;
1508
- display: -moz-box;
1509
- display: -ms-flexbox;
1510
- display: flex;
1511
- -webkit-box-align: center;
1512
- -webkit-align-items: center;
1513
- -moz-box-align: center;
1514
- -ms-flex-align: center;
1515
- align-items: center;
1516
- -webkit-box-pack: center;
1517
- -webkit-justify-content: center;
1518
- -moz-box-pack: center;
1519
- -ms-flex-pack: center;
1520
- justify-content: center;
1521
- width: 2em;
1522
- height: 2em;
1523
- line-height: 0;
1524
- text-align: center;
1525
- position: absolute;
1526
- z-index: 99;
1527
- cursor: pointer;
1528
- -webkit-transition: all 0.3s ease-in-out;
1529
- transition: all 0.3s ease-in-out;
1530
- -webkit-appearance: inherit;
1531
- border: none;
1532
- -webkit-box-shadow: none;
1533
- box-shadow: none; }
1534
-
1535
- div[class^="premium-"] .slick-arrow i {
1536
- display: block; }
1537
-
1538
- .ver-carousel-arrow.carousel-next i {
1539
- margin-bottom: -3px; }
1540
-
1541
- .premium-carousel-wrapper a.slick-arrow:hover {
1542
- -webkit-box-shadow: none !important;
1543
- box-shadow: none !important; }
1544
-
1545
- .premium-carousel-wrapper .premium-carousel-content-hidden {
1546
- visibility: hidden; }
1547
-
1548
- .premium-carousel-wrapper a.carousel-arrow {
1549
- top: 50%; }
1550
-
1551
- .premium-tabs-nav-list a.carousel-arrow,
1552
- .premium-fb-rev-container a.carousel-arrow,
1553
- .premium-blog-wrap a.carousel-arrow,
1554
- .premium-hscroll-wrap a.carousel-arrow,
1555
- .premium-twitter-feed-wrapper a.carousel-arrow,
1556
- .premium-facebook-feed-wrapper a.carousel-arrow,
1557
- .premium-instafeed-container a.carousel-arrow,
1558
- .premium-persons-container a.carousel-arrow {
1559
- top: 50%;
1560
- -webkit-transform: translateY(-50%);
1561
- -ms-transform: translateY(-50%);
1562
- transform: translateY(-50%); }
1563
-
1564
- .premium-carousel-wrapper a.ver-carousel-arrow {
1565
- left: 50%;
1566
- -webkit-transform: translateX(-50%);
1567
- -ms-transform: translateX(-50%);
1568
- transform: translateX(-50%); }
1569
-
1570
- a.carousel-arrow.carousel-next {
1571
- right: -20px; }
1572
-
1573
- a.carousel-arrow.carousel-prev {
1574
- left: -20px; }
1575
-
1576
- a.ver-carousel-arrow.carousel-next {
1577
- bottom: -56px; }
1578
-
1579
- a.ver-carousel-arrow.carousel-prev {
1580
- top: -45px; }
1581
-
1582
- a.circle-bg {
1583
- -webkit-border-radius: 100%;
1584
- border-radius: 100%; }
1585
-
1586
- a.circle-border {
1587
- -webkit-border-radius: 100%;
1588
- border-radius: 100%;
1589
- border: solid black; }
1590
-
1591
- a.square-border {
1592
- border: solid black; }
1593
-
1594
- .premium-carousel-dots-below ul.slick-dots,
1595
- .premium-blog-wrap ul.slick-dots,
1596
- .premium-fb-rev-reviews ul.slick-dots {
1597
- position: relative;
1598
- bottom: 0;
1599
- list-style: none;
1600
- text-align: center;
1601
- margin: 0;
1602
- padding: 0; }
1603
-
1604
- .premium-carousel-dots-above ul.slick-dots {
1605
- position: absolute;
1606
- -js-display: flex;
1607
- display: -webkit-box;
1608
- display: -webkit-flex;
1609
- display: -moz-box;
1610
- display: -ms-flexbox;
1611
- display: flex;
1612
- width: auto;
1613
- top: 50%;
1614
- bottom: auto;
1615
- -webkit-transform: translateY(-50%);
1616
- -ms-transform: translateY(-50%);
1617
- transform: translateY(-50%);
1618
- -webkit-box-orient: vertical;
1619
- -webkit-box-direction: normal;
1620
- -webkit-flex-direction: column;
1621
- -moz-box-orient: vertical;
1622
- -moz-box-direction: normal;
1623
- -ms-flex-direction: column;
1624
- flex-direction: column; }
1625
-
1626
- ul.slick-dots li {
1627
- font-size: 10px;
1628
- -js-display: inline-flex;
1629
- display: -webkit-inline-box;
1630
- display: -webkit-inline-flex;
1631
- display: -moz-inline-box;
1632
- display: -ms-inline-flexbox;
1633
- display: inline-flex;
1634
- -webkit-box-pack: center;
1635
- -webkit-justify-content: center;
1636
- -moz-box-pack: center;
1637
- -ms-flex-pack: center;
1638
- justify-content: center;
1639
- -webkit-box-align: center;
1640
- -webkit-align-items: center;
1641
- -moz-box-align: center;
1642
- -ms-flex-align: center;
1643
- align-items: center;
1644
- margin: 5px;
1645
- width: 20px;
1646
- height: 20px;
1647
- cursor: pointer; }
1648
-
1649
- /*
1650
- * Custom Navigation Dot
1651
- */
1652
- .premium-carousel-wrapper .premium-carousel-nav-dot,
1653
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1654
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1655
- display: none; }
1656
-
1657
- .premium-carousel-wrapper ul.slick-dots svg {
1658
- width: 20px;
1659
- height: 20px; }
1660
-
1661
- /* Ripple Out */
1662
- @-webkit-keyframes hvr-ripple-out {
1663
- 0% {
1664
- -webkit-transform: scale(1);
1665
- transform: scale(1);
1666
- opacity: 1; }
1667
- 100% {
1668
- -webkit-transform: scale(1.5);
1669
- transform: scale(1.5);
1670
- opacity: 0; } }
1671
- @keyframes hvr-ripple-out {
1672
- 0% {
1673
- -webkit-transform: scale(1);
1674
- transform: scale(1);
1675
- opacity: 1; }
1676
- 100% {
1677
- -webkit-transform: scale(1.5);
1678
- transform: scale(1.5);
1679
- opacity: 0; } }
1680
-
1681
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
1682
- padding-bottom: 1px; }
1683
-
1684
- .premium-carousel-ripple-yes ul.slick-dots li {
1685
- position: relative; }
1686
- .premium-carousel-ripple-yes ul.slick-dots li i {
1687
- position: relative;
1688
- z-index: 1; }
1689
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1690
- content: "";
1691
- position: absolute;
1692
- -webkit-transform: scale(1);
1693
- -ms-transform: scale(1);
1694
- transform: scale(1);
1695
- top: 0;
1696
- right: 0;
1697
- bottom: 0;
1698
- left: 0;
1699
- -webkit-border-radius: 50%;
1700
- border-radius: 50%;
1701
- pointer-events: none;
1702
- background-color: rgba(0, 0, 0, 0.15); }
1703
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1704
- background-color: rgba(0, 0, 0, 0.3); }
1705
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1706
- -webkit-animation: hvr-ripple-out 1.3s infinite;
1707
- animation: hvr-ripple-out 1.3s infinite; }
1708
-
1709
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
1710
- -webkit-transform: scale(1.25, 1.25);
1711
- -ms-transform: scale(1.25, 1.25);
1712
- transform: scale(1.25, 1.25);
1713
- -webkit-transition: all 0.3s ease-in-out !important;
1714
- transition: all 0.3s ease-in-out !important; }
1715
-
1716
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
1717
- -webkit-transform: scale(1, 1);
1718
- -ms-transform: scale(1, 1);
1719
- transform: scale(1, 1); }
1720
-
1721
- [dir="rtl"] .premium-carousel-inner .slick-slide {
1722
- float: right; }
1723
-
1724
- /**************** Premium Counter ***************/
1725
- /************************************************/
1726
- .premium-counter-area {
1727
- padding: 10px 0;
1728
- -js-display: flex;
1729
- display: -webkit-box;
1730
- display: -webkit-flex;
1731
- display: -moz-box;
1732
- display: -ms-flexbox;
1733
- display: flex;
1734
- -webkit-box-pack: center;
1735
- -webkit-justify-content: center;
1736
- -moz-box-pack: center;
1737
- -ms-flex-pack: center;
1738
- justify-content: center;
1739
- -webkit-box-align: center;
1740
- -webkit-align-items: center;
1741
- -moz-box-align: center;
1742
- -ms-flex-align: center;
1743
- align-items: center; }
1744
- .premium-counter-area.top {
1745
- -webkit-box-orient: vertical;
1746
- -webkit-box-direction: normal;
1747
- -webkit-flex-direction: column;
1748
- -moz-box-orient: vertical;
1749
- -moz-box-direction: normal;
1750
- -ms-flex-direction: column;
1751
- flex-direction: column; }
1752
- .premium-counter-area.right {
1753
- -webkit-box-orient: horizontal;
1754
- -webkit-box-direction: reverse;
1755
- -webkit-flex-direction: row-reverse;
1756
- -moz-box-orient: horizontal;
1757
- -moz-box-direction: reverse;
1758
- -ms-flex-direction: row-reverse;
1759
- flex-direction: row-reverse; }
1760
- .premium-counter-area.right .premium-counter-icon {
1761
- padding-left: 20px; }
1762
- .premium-counter-area.left .premium-counter-icon {
1763
- padding-right: 20px; }
1764
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
1765
- vertical-align: text-top; }
1766
- .premium-counter-area .premium-counter-icon span.icon {
1767
- text-align: center;
1768
- display: inline-block;
1769
- vertical-align: middle; }
1770
- .premium-counter-area .premium-counter-icon .circle {
1771
- -webkit-border-radius: 100%;
1772
- border-radius: 100%; }
1773
- .premium-counter-area .premium-counter-icon img,
1774
- .premium-counter-area .premium-counter-icon svg {
1775
- width: 80px; }
1776
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
1777
- height: 80px; }
1778
- .premium-counter-area .premium-counter-title {
1779
- padding: 0;
1780
- margin: 0; }
1781
- .premium-counter-area .premium-counter-value-wrap {
1782
- -js-display: flex;
1783
- display: -webkit-box;
1784
- display: -webkit-flex;
1785
- display: -moz-box;
1786
- display: -ms-flexbox;
1787
- display: flex;
1788
- -webkit-box-align: center;
1789
- -webkit-align-items: center;
1790
- -moz-box-align: center;
1791
- -ms-flex-align: center;
1792
- align-items: center; }
1793
-
1794
- .premium-init-wrapper.right {
1795
- text-align: right; }
1796
-
1797
- span.icon.flex-width {
1798
- width: auto !important;
1799
- height: auto !important; }
1800
-
1801
- .premium-counter-area .premium-counter-init {
1802
- font-size: 35px; }
1803
-
1804
- /**************** Premium Image Separator ****************/
1805
- /*********************************************************/
1806
- .premium-image-separator-container {
1807
- position: absolute;
1808
- width: 100%;
1809
- z-index: 2;
1810
- top: auto;
1811
- -webkit-transition: all 0.3s ease-in-out;
1812
- transition: all 0.3s ease-in-out; }
1813
- .premium-image-separator-container svg,
1814
- .premium-image-separator-container img {
1815
- display: inline-block !important;
1816
- -webkit-mask-repeat: no-repeat;
1817
- mask-repeat: no-repeat;
1818
- -webkit-mask-position: center;
1819
- mask-position: center; }
1820
- .premium-image-separator-container .premium-image-separator-link {
1821
- position: absolute;
1822
- z-index: 9999;
1823
- top: 0;
1824
- left: 0;
1825
- width: 100%;
1826
- height: 100%;
1827
- text-decoration: none; }
1828
- .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
1829
- -webkit-box-shadow: none !important;
1830
- box-shadow: none !important;
1831
- outline: none !important;
1832
- border: none !important;
1833
- text-decoration: none !important; }
1834
- .premium-image-separator-container i {
1835
- padding: 0.1em;
1836
- -webkit-transition: all 0.3s ease-in-out;
1837
- transition: all 0.3s ease-in-out; }
1838
-
1839
- /**************** Premium Modal Box ****************/
1840
- /***************************************************/
1841
- .premium-modal-trigger-btn,
1842
- .premium-modal-box-modal-lower-close {
1843
- display: inline-block;
1844
- padding: 6px 12px;
1845
- margin-bottom: 0;
1846
- font-size: 14px;
1847
- font-weight: normal;
1848
- line-height: 1.42857143;
1849
- text-align: center;
1850
- white-space: nowrap;
1851
- vertical-align: middle;
1852
- -ms-touch-action: manipulation;
1853
- touch-action: manipulation;
1854
- cursor: pointer;
1855
- -webkit-user-select: none;
1856
- -moz-user-select: none;
1857
- -ms-user-select: none;
1858
- user-select: none;
1859
- background-image: none;
1860
- border: 1px solid transparent; }
1861
-
1862
- .premium-modal-trigger-btn i {
1863
- -webkit-transition: all 0.3s ease-in-out;
1864
- transition: all 0.3s ease-in-out; }
1865
-
1866
- .premium-btn-md {
1867
- padding: 8px 14px;
1868
- font-size: 16px;
1869
- line-height: 1.2; }
1870
-
1871
- .premium-btn-lg {
1872
- padding: 10px 16px;
1873
- font-size: 18px;
1874
- line-height: 1.3333333; }
1875
-
1876
- .premium-btn-block {
1877
- display: block;
1878
- width: 100%; }
1879
-
1880
- .premium-modal-box-modal-close {
1881
- float: right;
1882
- font-size: 21px;
1883
- font-weight: bold;
1884
- line-height: 1;
1885
- color: #000; }
1886
- .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
1887
- color: #000;
1888
- text-decoration: none;
1889
- cursor: pointer; }
1890
-
1891
- button.premium-modal-box-modal-close {
1892
- -webkit-appearance: none;
1893
- padding: 0;
1894
- cursor: pointer;
1895
- background: transparent;
1896
- border: 0; }
1897
-
1898
- .premium-modal-box-modal {
1899
- position: fixed;
1900
- top: 0;
1901
- right: 0;
1902
- bottom: 0;
1903
- left: 0;
1904
- z-index: 1050;
1905
- display: none;
1906
- -webkit-overflow-scrolling: touch;
1907
- outline: 0;
1908
- padding: 0 !important;
1909
- background: rgba(0, 0, 0, 0.5);
1910
- -webkit-box-align: center;
1911
- -webkit-align-items: center;
1912
- -moz-box-align: center;
1913
- -ms-flex-align: center;
1914
- align-items: center;
1915
- -webkit-box-pack: center;
1916
- -webkit-justify-content: center;
1917
- -moz-box-pack: center;
1918
- -ms-flex-pack: center;
1919
- justify-content: center; }
1920
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
1921
- position: absolute;
1922
- max-height: -webkit-calc(100vh - 150px);
1923
- max-height: calc(100vh - 150px);
1924
- -js-display: flex;
1925
- display: -webkit-box;
1926
- display: -webkit-flex;
1927
- display: -moz-box;
1928
- display: -ms-flexbox;
1929
- display: flex;
1930
- -webkit-box-orient: vertical;
1931
- -webkit-box-direction: normal;
1932
- -webkit-flex-direction: column;
1933
- -moz-box-orient: vertical;
1934
- -moz-box-direction: normal;
1935
- -ms-flex-direction: column;
1936
- flex-direction: column;
1937
- opacity: 0; }
1938
-
1939
- .premium-modal-box-modal-content {
1940
- background-color: #fff;
1941
- background-clip: padding-box;
1942
- border: 1px solid rgba(0, 0, 0, 0.2);
1943
- -webkit-border-radius: 6px;
1944
- border-radius: 6px;
1945
- outline: 0; }
1946
-
1947
- .premium-modal-backdrop.premium-in {
1948
- filter: alpha(opacity=50);
1949
- opacity: 0.5 !important; }
1950
-
1951
- .premium-in {
1952
- opacity: 1; }
1953
-
1954
- .premium-modal-backdrop {
1955
- position: fixed;
1956
- top: 0;
1957
- right: 0;
1958
- bottom: 0;
1959
- left: 0;
1960
- z-index: 1040;
1961
- background-color: #000; }
1962
-
1963
- .premium-in {
1964
- -js-display: flex !important;
1965
- display: -webkit-box !important;
1966
- display: -webkit-flex !important;
1967
- display: -moz-box !important;
1968
- display: -ms-flexbox !important;
1969
- display: flex !important; }
1970
-
1971
- .premium-modal-box-modal-header {
1972
- -js-display: flex;
1973
- display: -webkit-box;
1974
- display: -webkit-flex;
1975
- display: -moz-box;
1976
- display: -ms-flexbox;
1977
- display: flex;
1978
- -webkit-box-pack: justify;
1979
- -webkit-justify-content: space-between;
1980
- -moz-box-pack: justify;
1981
- -ms-flex-pack: justify;
1982
- justify-content: space-between;
1983
- -webkit-box-align: center;
1984
- -webkit-align-items: center;
1985
- -moz-box-align: center;
1986
- -ms-flex-align: center;
1987
- align-items: center;
1988
- padding: 5px 15px;
1989
- border-bottom: 1px solid #e5e5e5; }
1990
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
1991
- margin-top: -2px; }
1992
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
1993
- -js-display: flex;
1994
- display: -webkit-box;
1995
- display: -webkit-flex;
1996
- display: -moz-box;
1997
- display: -ms-flexbox;
1998
- display: flex;
1999
- -webkit-box-align: center;
2000
- -webkit-align-items: center;
2001
- -moz-box-align: center;
2002
- -ms-flex-align: center;
2003
- align-items: center;
2004
- margin: 0;
2005
- padding: 0; }
2006
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2007
- width: 50px;
2008
- height: 60px; }
2009
-
2010
- .premium-modal-box-modal-body {
2011
- position: relative;
2012
- padding: 15px;
2013
- overflow: hidden; }
2014
-
2015
- .premium-modal-box-modal-footer {
2016
- padding: 15px;
2017
- text-align: right;
2018
- border-top: 1px solid #e5e5e5; }
2019
-
2020
- .premium-modal-scrollbar-measure {
2021
- position: absolute;
2022
- top: -9999px;
2023
- width: 50px;
2024
- height: 50px;
2025
- overflow: scroll; }
2026
-
2027
- .premium-modal-trigger-text {
2028
- background: none !important;
2029
- display: inline-block; }
2030
-
2031
- .premium-modal-box-container {
2032
- width: 100% !important; }
2033
-
2034
- /*Open Modal Button Style*/
2035
- .premium-modal-trigger-container .premium-modal-trigger-btn {
2036
- border: none;
2037
- -webkit-transition: all 0.3s ease-in-out;
2038
- transition: all 0.3s ease-in-out; }
2039
-
2040
- .premium-modal-trigger-container .premium-modal-trigger-img,
2041
- .premium-modal-trigger-container .premium-modal-trigger-text,
2042
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2043
- cursor: pointer; }
2044
-
2045
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2046
- display: inline-block;
2047
- width: 200px;
2048
- height: 200px;
2049
- -webkit-transition: all 0.3s ease-in-out;
2050
- transition: all 0.3s ease-in-out; }
2051
-
2052
- /*Image on Modal Header Style*/
2053
- .premium-modal-box-modal-header img {
2054
- width: 48px;
2055
- padding-right: 5px; }
2056
-
2057
- .premium-modal-box-modal-header i,
2058
- .premium-modal-box-modal-header svg {
2059
- padding-right: 6px; }
2060
-
2061
- .premium-modal-box-modal-close {
2062
- position: relative;
2063
- z-index: 99; }
2064
-
2065
- .premium-modal-trigger-img,
2066
- .premium-modal-trigger-text,
2067
- .premium-modal-box-close-button-container,
2068
- .premium-modal-box-modal-close,
2069
- .premium-modal-box-modal-lower-close {
2070
- -webkit-transition: all 0.3s ease-in-out;
2071
- transition: all 0.3s ease-in-out; }
2072
-
2073
- @media (min-width: 768px) {
2074
- .premium-modal-box-modal-dialog {
2075
- width: 700px;
2076
- max-height: 600px;
2077
- overflow: auto; } }
2078
-
2079
- @media (max-width: 767px) {
2080
- .premium-modal-box-modal-dialog {
2081
- width: 100%;
2082
- max-height: 500px;
2083
- overflow: auto; } }
2084
-
2085
- .premium-modal-box-container[data-modal-animation*="animated-"] {
2086
- opacity: 0; }
2087
-
2088
- /**************** Premium Progress Bar ****************/
2089
- /******************************************************/
2090
- .premium-progressbar-container {
2091
- position: relative; }
2092
-
2093
- .premium-progressbar-bar-wrap {
2094
- position: relative;
2095
- text-align: left;
2096
- overflow: hidden;
2097
- height: 25px;
2098
- margin-bottom: 50px;
2099
- background-color: #f5f5f5;
2100
- -webkit-border-radius: 4px;
2101
- border-radius: 4px;
2102
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2103
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
2104
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
2105
- background-color: transparent;
2106
- width: 100%;
2107
- -js-display: flex;
2108
- display: -webkit-box;
2109
- display: -webkit-flex;
2110
- display: -moz-box;
2111
- display: -ms-flexbox;
2112
- display: flex;
2113
- height: auto;
2114
- -webkit-box-shadow: none;
2115
- box-shadow: none; }
2116
- .premium-progressbar-bar-wrap .progress-segment {
2117
- position: relative;
2118
- width: 25px;
2119
- height: 25px;
2120
- -webkit-border-radius: 50%;
2121
- border-radius: 50%;
2122
- overflow: hidden;
2123
- background-color: #f5f5f5; }
2124
- .premium-progressbar-bar-wrap .progress-segment.filled {
2125
- background: #6ec1e4; }
2126
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2127
- margin: 0 4px; }
2128
- .premium-progressbar-bar-wrap .progress-segment:first-child {
2129
- margin-right: 4px; }
2130
- .premium-progressbar-bar-wrap .progress-segment:last-child {
2131
- margin-left: 4px; }
2132
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2133
- position: absolute;
2134
- top: 0;
2135
- left: 0;
2136
- height: 100%;
2137
- background-color: #6ec1e4; }
2138
-
2139
- .premium-progressbar-bar {
2140
- float: left;
2141
- width: 0%;
2142
- height: 100%;
2143
- font-size: 12px;
2144
- line-height: 20px;
2145
- background: #6ec1e4;
2146
- text-align: center;
2147
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2148
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
2149
-
2150
- .premium-progressbar-striped .premium-progressbar-bar {
2151
- background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2152
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2153
- -webkit-background-size: 40px 40px;
2154
- background-size: 40px 40px; }
2155
-
2156
- .premium-progressbar-active .premium-progressbar-bar {
2157
- -webkit-animation: progress-bar-stripes 2s linear infinite;
2158
- animation: progress-bar-stripes 2s linear infinite; }
2159
-
2160
- .premium-progressbar-gradient .premium-progressbar-bar {
2161
- -webkit-background-size: 400% 400% !important;
2162
- background-size: 400% 400% !important;
2163
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2164
- animation: progress-bar-gradient 10s ease-in-out infinite; }
2165
-
2166
- .premium-progressbar-bar {
2167
- position: absolute;
2168
- overflow: hidden;
2169
- line-height: 20px; }
2170
-
2171
- .premium-progressbar-container .clearfix {
2172
- clear: both; }
2173
-
2174
- .premium-progressbar-bar {
2175
- -webkit-transition: width 0s ease-in-out !important;
2176
- transition: width 0s ease-in-out !important; }
2177
-
2178
- .premium-progressbar-container p:first-of-type {
2179
- margin: 0;
2180
- float: left; }
2181
-
2182
- .premium-progressbar-container p:nth-of-type(2) {
2183
- margin: 0;
2184
- float: right; }
2185
-
2186
- .premium-progressbar-name {
2187
- left: 50%;
2188
- top: 0;
2189
- right: 0;
2190
- -webkit-transform: translateX(-12.5px);
2191
- -ms-transform: translateX(-12.5px);
2192
- transform: translateX(-12.5px);
2193
- z-index: 1; }
2194
-
2195
- .premium-progressbar-multiple-label {
2196
- position: relative;
2197
- float: left;
2198
- width: 0;
2199
- left: 50%; }
2200
-
2201
- .premium-progressbar-center-label {
2202
- position: relative;
2203
- white-space: nowrap; }
2204
-
2205
- .premium-progressbar-arrow {
2206
- height: 15px;
2207
- left: 50%;
2208
- display: inline-block;
2209
- border-left: 7px solid transparent;
2210
- border-right: 7px solid transparent;
2211
- border-top: 11px solid;
2212
- -webkit-transform: translateX(-50%);
2213
- -ms-transform: translateX(-50%);
2214
- transform: translateX(-50%); }
2215
-
2216
- .premium-progressbar-pin {
2217
- border-left: 1px solid;
2218
- height: 12px;
2219
- left: 50%;
2220
- display: inline-block; }
2221
-
2222
- /**
2223
- * Circle Progress Bar
2224
- */
2225
- .premium-progressbar-circle-wrap {
2226
- width: 200px;
2227
- height: 200px;
2228
- position: relative;
2229
- margin: 0 auto; }
2230
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
2231
- position: absolute;
2232
- top: 0;
2233
- left: 0;
2234
- width: 100%;
2235
- height: 100%;
2236
- -webkit-clip-path: inset(0 0 0 50%);
2237
- clip-path: inset(0 0 0 50%); }
2238
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2239
- position: absolute;
2240
- left: 0;
2241
- top: 0;
2242
- height: 100%;
2243
- width: 100%;
2244
- border-width: 6px;
2245
- border-style: solid;
2246
- border-color: #54595f;
2247
- -webkit-border-radius: 50%;
2248
- border-radius: 50%;
2249
- -webkit-clip-path: inset(0 50% 0 0);
2250
- clip-path: inset(0 50% 0 0); }
2251
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2252
- -webkit-transform: rotate(0);
2253
- -ms-transform: rotate(0);
2254
- transform: rotate(0); }
2255
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2256
- -webkit-transform: rotate(180deg);
2257
- -ms-transform: rotate(180deg);
2258
- transform: rotate(180deg);
2259
- visibility: hidden; }
2260
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2261
- width: 100%;
2262
- height: 100%;
2263
- border: 6px solid #eee;
2264
- -webkit-border-radius: 50%;
2265
- border-radius: 50%; }
2266
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2267
- position: absolute;
2268
- top: 0;
2269
- left: 0;
2270
- width: 100%;
2271
- height: 100%;
2272
- -js-display: flex;
2273
- display: -webkit-box;
2274
- display: -webkit-flex;
2275
- display: -moz-box;
2276
- display: -ms-flexbox;
2277
- display: flex;
2278
- -webkit-box-orient: vertical;
2279
- -webkit-box-direction: normal;
2280
- -webkit-flex-direction: column;
2281
- -moz-box-orient: vertical;
2282
- -moz-box-direction: normal;
2283
- -ms-flex-direction: column;
2284
- flex-direction: column;
2285
- -webkit-box-pack: center;
2286
- -webkit-justify-content: center;
2287
- -moz-box-pack: center;
2288
- -ms-flex-pack: center;
2289
- justify-content: center;
2290
- -webkit-box-align: center;
2291
- -webkit-align-items: center;
2292
- -moz-box-align: center;
2293
- -ms-flex-align: center;
2294
- align-items: center; }
2295
- .premium-progressbar-circle-wrap .premium-lottie-animation {
2296
- line-height: 1; }
2297
-
2298
- @-webkit-keyframes progress-bar-stripes {
2299
- from {
2300
- background-position: 0 0; }
2301
- to {
2302
- background-position: 40px 0; } }
2303
-
2304
- @keyframes progress-bar-stripes {
2305
- from {
2306
- background-position: 0 0; }
2307
- to {
2308
- background-position: 40px 0; } }
2309
-
2310
- @-webkit-keyframes progress-bar-gradient {
2311
- 0% {
2312
- background-position: 0% 50%; }
2313
- 50% {
2314
- background-position: 100% 50%; }
2315
- 100% {
2316
- background-position: 0% 50%; } }
2317
-
2318
- @keyframes progress-bar-gradient {
2319
- 0% {
2320
- background-position: 0% 50%; }
2321
- 50% {
2322
- background-position: 100% 50%; }
2323
- 100% {
2324
- background-position: 0% 50%; } }
2325
-
2326
- /**************** Premium Testimonials ****************/
2327
- /******************************************************/
2328
- .premium-testimonial-box {
2329
- width: 100%;
2330
- background: transparent;
2331
- -webkit-transition: all 0.3s ease-in-out;
2332
- transition: all 0.3s ease-in-out; }
2333
- .premium-testimonial-box .premium-testimonial-author-info {
2334
- -js-display: flex;
2335
- display: -webkit-box;
2336
- display: -webkit-flex;
2337
- display: -moz-box;
2338
- display: -ms-flexbox;
2339
- display: flex;
2340
- -webkit-box-pack: center;
2341
- -webkit-justify-content: center;
2342
- -moz-box-pack: center;
2343
- -ms-flex-pack: center;
2344
- justify-content: center;
2345
- -webkit-box-align: center;
2346
- -webkit-align-items: center;
2347
- -moz-box-align: center;
2348
- -ms-flex-align: center;
2349
- align-items: center; }
2350
- .premium-testimonial-box .premium-testimonial-person-name,
2351
- .premium-testimonial-box .premium-testimonial-company-name {
2352
- font-weight: 600;
2353
- margin: 0; }
2354
-
2355
- .premium-testimonial-container {
2356
- position: relative; }
2357
-
2358
- .premium-testimonial-img-wrapper {
2359
- margin-left: auto;
2360
- margin-right: auto;
2361
- overflow: hidden;
2362
- border-style: solid !important; }
2363
- .premium-testimonial-img-wrapper.circle {
2364
- -webkit-border-radius: 50%;
2365
- border-radius: 50%; }
2366
- .premium-testimonial-img-wrapper.rounded {
2367
- -webkit-border-radius: 15px;
2368
- border-radius: 15px; }
2369
- .premium-testimonial-img-wrapper img {
2370
- -o-object-fit: cover;
2371
- object-fit: cover;
2372
- width: 100%;
2373
- height: 100% !important; }
2374
-
2375
- .premium-testimonial-content-wrapper {
2376
- position: relative;
2377
- -js-display: flex;
2378
- display: -webkit-box;
2379
- display: -webkit-flex;
2380
- display: -moz-box;
2381
- display: -ms-flexbox;
2382
- display: flex;
2383
- -webkit-box-orient: vertical;
2384
- -webkit-box-direction: normal;
2385
- -webkit-flex-direction: column;
2386
- -moz-box-orient: vertical;
2387
- -moz-box-direction: normal;
2388
- -ms-flex-direction: column;
2389
- flex-direction: column;
2390
- z-index: 2;
2391
- width: 100%;
2392
- padding: 20px;
2393
- text-align: center; }
2394
-
2395
- .premium-testimonial-clear-float {
2396
- clear: both; }
2397
-
2398
- .premium-testimonial-upper-quote,
2399
- .premium-testimonial-lower-quote {
2400
- position: absolute;
2401
- z-index: 1; }
2402
-
2403
- /**************** Premium Dual Heading *****************/
2404
- /*******************************************************/
2405
- .premium-dual-header-container .premium-dual-header-first-header,
2406
- .premium-dual-header-container .premium-dual-header-second-header {
2407
- position: relative;
2408
- padding: 0;
2409
- margin: 0;
2410
- display: inline-block;
2411
- -webkit-transform: translate(0, 0);
2412
- -ms-transform: translate(0, 0);
2413
- transform: translate(0, 0); }
2414
-
2415
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2416
- .premium-dual-header-second-clip {
2417
- -webkit-text-fill-color: transparent;
2418
- -webkit-background-clip: text;
2419
- background-clip: text; }
2420
-
2421
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2422
- .premium-dual-header-second-clip.stroke {
2423
- -webkit-text-stroke-color: transparent;
2424
- -webkit-text-fill-color: #fafafa;
2425
- -webkit-text-stroke-width: 2px; }
2426
-
2427
- @media (max-width: 500px) {
2428
- .premium-dual-header-container .premium-dual-header-first-header,
2429
- .premium-dual-header-container .premium-dual-header-second-header {
2430
- display: block;
2431
- word-wrap: break-word; }
2432
- .premium-dual-header-first-container,
2433
- .premium-dual-header-second-container {
2434
- margin: 0; } }
2435
-
2436
- @media (min-width: 501px) {
2437
- .premium-dual-header-first-container {
2438
- margin-right: 5px; } }
2439
-
2440
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2441
- .premium-dual-header-second-header.gradient {
2442
- -webkit-background-size: 300% 300% !important;
2443
- background-size: 300% 300% !important;
2444
- -webkit-animation: Gradient 10s ease-in-out infinite;
2445
- animation: Gradient 10s ease-in-out infinite; }
2446
-
2447
- @-webkit-keyframes Gradient {
2448
- 0% {
2449
- background-position: 0% 50%; }
2450
- 50% {
2451
- background-position: 100% 50%; }
2452
- 100% {
2453
- background-position: 0% 50%; } }
2454
-
2455
- @keyframes Gradient {
2456
- 0% {
2457
- background-position: 0% 50%; }
2458
- 50% {
2459
- background-position: 100% 50%; }
2460
- 100% {
2461
- background-position: 0% 50%; } }
2462
-
2463
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2464
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2465
- display: inline-block !important; }
2466
-
2467
- /**************** Premium Title ****************/
2468
- /***********************************************/
2469
- .premium-title-container {
2470
- position: relative;
2471
- width: 100%;
2472
- clear: both; }
2473
- .premium-title-container .premium-title-header {
2474
- position: relative;
2475
- margin: 0;
2476
- padding: 10px; }
2477
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
2478
- -webkit-box-align: center;
2479
- -webkit-align-items: center;
2480
- -moz-box-align: center;
2481
- -ms-flex-align: center;
2482
- align-items: center; }
2483
- .premium-title-container .premium-title-header svg {
2484
- width: 40px;
2485
- height: 40px; }
2486
- .premium-title-container .premium-title-header img {
2487
- width: 40px;
2488
- height: 40px;
2489
- -o-object-fit: cover;
2490
- object-fit: cover; }
2491
- .premium-title-container .premium-title-header a {
2492
- position: absolute;
2493
- top: 0;
2494
- left: 0;
2495
- width: 100%;
2496
- height: 100%; }
2497
- .premium-title-container .premium-lottie-animation {
2498
- -js-display: flex;
2499
- display: -webkit-box;
2500
- display: -webkit-flex;
2501
- display: -moz-box;
2502
- display: -ms-flexbox;
2503
- display: flex; }
2504
-
2505
- .premium-title-icon-row .premium-title-icon {
2506
- margin-right: 10px; }
2507
-
2508
- .premium-title-icon-row-reverse .premium-title-icon {
2509
- margin-left: 10px; }
2510
-
2511
- .premium-title-style3,
2512
- .premium-title-style4 {
2513
- -js-display: flex;
2514
- display: -webkit-box;
2515
- display: -webkit-flex;
2516
- display: -moz-box;
2517
- display: -ms-flexbox;
2518
- display: flex; }
2519
-
2520
- .premium-title-style1,
2521
- .premium-title-style2,
2522
- .premium-title-style5,
2523
- .premium-title-style6,
2524
- .premium-title-style8,
2525
- .premium-title-style9 {
2526
- -js-display: inline-flex;
2527
- display: -webkit-inline-box;
2528
- display: -webkit-inline-flex;
2529
- display: -moz-inline-box;
2530
- display: -ms-inline-flexbox;
2531
- display: inline-flex; }
2532
-
2533
- .premium-title-style7 {
2534
- -js-display: inline-flex;
2535
- display: -webkit-inline-box;
2536
- display: -webkit-inline-flex;
2537
- display: -moz-inline-box;
2538
- display: -ms-inline-flexbox;
2539
- display: inline-flex;
2540
- -webkit-box-orient: vertical;
2541
- -webkit-box-direction: normal;
2542
- -webkit-flex-direction: column;
2543
- -moz-box-orient: vertical;
2544
- -moz-box-direction: normal;
2545
- -ms-flex-direction: column;
2546
- flex-direction: column; }
2547
- .premium-title-style7 .premium-title-style7-inner {
2548
- -js-display: flex;
2549
- display: -webkit-box;
2550
- display: -webkit-flex;
2551
- display: -moz-box;
2552
- display: -ms-flexbox;
2553
- display: flex;
2554
- -webkit-box-align: center;
2555
- -webkit-align-items: center;
2556
- -moz-box-align: center;
2557
- -ms-flex-align: center;
2558
- align-items: center; }
2559
-
2560
- .premium-title-style1 {
2561
- border-left: 3px solid #6ec1e4; }
2562
-
2563
- .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
2564
- border-bottom: 3px solid #6ec1e4; }
2565
-
2566
- /*Style 6 Header*/
2567
- .premium-title-style6:before {
2568
- position: absolute;
2569
- left: 50%;
2570
- bottom: 0;
2571
- margin-left: -2px;
2572
- content: "";
2573
- border: 3px solid transparent; }
2574
-
2575
- /*Style 6 Trinagle*/
2576
- .premium-title-style7-stripe-wrap {
2577
- -js-display: flex;
2578
- display: -webkit-box;
2579
- display: -webkit-flex;
2580
- display: -moz-box;
2581
- display: -ms-flexbox;
2582
- display: flex; }
2583
-
2584
- .premium-title-style7:before {
2585
- display: none; }
2586
-
2587
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
2588
- -webkit-background-size: 125px 125px !important;
2589
- background-size: 125px !important;
2590
- color: rgba(255, 255, 255, 0);
2591
- -webkit-background-clip: text !important;
2592
- background-clip: text !important;
2593
- -webkit-animation-name: pa-shinny-text !important;
2594
- animation-name: pa-shinny-text !important;
2595
- -webkit-animation-duration: var(--animation-speed) !important;
2596
- animation-duration: var(--animation-speed) !important;
2597
- -webkit-animation-iteration-count: infinite !important;
2598
- animation-iteration-count: infinite !important;
2599
- background: var(--base-color) -webkit-gradient(linear, left top, right top, from(var(--base-color)), to(var(--base-color)), color-stop(0.5, var(--shiny-color))) 0 0 no-repeat; }
2600
-
2601
- @-webkit-keyframes pa-shinny-text {
2602
- 0% {
2603
- background-position: 0%; }
2604
- 100% {
2605
- background-position: 200%; } }
2606
-
2607
- @keyframes pa-shinny-text {
2608
- 0% {
2609
- background-position: 0%; }
2610
- 100% {
2611
- background-position: 200%; } }
2612
-
2613
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
2614
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
2615
- animation: pa-blur-shadow 2s 1 alternate; }
2616
-
2617
- @-webkit-keyframes pa-blur-shadow {
2618
- from {
2619
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2620
- color: transparent; }
2621
- to {
2622
- text-shadow: 0; } }
2623
-
2624
- @keyframes pa-blur-shadow {
2625
- from {
2626
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2627
- color: transparent; }
2628
- to {
2629
- text-shadow: 0; } }
2630
-
2631
- .premium-title-gradient-yes .premium-title-text,
2632
- .premium-title-gradient-yes .premium-title-icon {
2633
- -webkit-background-clip: text;
2634
- -webkit-text-fill-color: transparent;
2635
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
2636
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
2637
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
2638
- -webkit-animation: pa-text-gradient 8s infinite;
2639
- animation: pa-text-gradient 8s infinite; }
2640
-
2641
- @-webkit-keyframes pa-text-gradient {
2642
- 0%,
2643
- 100% {
2644
- -webkit-filter: hue-rotate(0deg);
2645
- filter: hue-rotate(0deg); }
2646
- 50% {
2647
- -webkit-filter: hue-rotate(360deg);
2648
- filter: hue-rotate(360deg); } }
2649
-
2650
- @keyframes pa-text-gradient {
2651
- 0%,
2652
- 100% {
2653
- -webkit-filter: hue-rotate(0deg);
2654
- filter: hue-rotate(0deg); }
2655
- 50% {
2656
- -webkit-filter: hue-rotate(360deg);
2657
- filter: hue-rotate(360deg); } }
2658
-
2659
- /*
2660
- * Common Title/Dual Heading
2661
- */
2662
- .premium-title-bg-text:before {
2663
- position: absolute;
2664
- content: attr(data-background);
2665
- top: 0;
2666
- left: 0;
2667
- text-align: left; }
2668
-
2669
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
2670
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
2671
- background: inherit; }
2672
-
2673
- .premium-mask-yes .premium-mask-span {
2674
- position: relative;
2675
- overflow: hidden;
2676
- -js-display: inline-flex !important;
2677
- display: -webkit-inline-box !important;
2678
- display: -webkit-inline-flex !important;
2679
- display: -moz-inline-box !important;
2680
- display: -ms-inline-flexbox !important;
2681
- display: inline-flex !important; }
2682
- .premium-mask-yes .premium-mask-span::after {
2683
- content: "";
2684
- position: absolute;
2685
- top: 0;
2686
- right: 0px;
2687
- width: 100%;
2688
- height: 100%;
2689
- background-color: currentColor;
2690
- -webkit-backface-visibility: visible;
2691
- backface-visibility: visible; }
2692
-
2693
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
2694
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2695
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2696
- -webkit-transform: translateX(-103%);
2697
- -ms-transform: translateX(-103%);
2698
- transform: translateX(-103%); }
2699
-
2700
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
2701
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2702
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2703
- -webkit-transform: translateX(103%);
2704
- -ms-transform: translateX(103%);
2705
- transform: translateX(103%); }
2706
-
2707
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
2708
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2709
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2710
- -webkit-transform: translateY(-103%);
2711
- -ms-transform: translateY(-103%);
2712
- transform: translateY(-103%); }
2713
-
2714
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
2715
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2716
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2717
- -webkit-transform: translateY(103%);
2718
- -ms-transform: translateY(103%);
2719
- transform: translateY(103%); }
2720
-
2721
- @-webkit-keyframes pa-mask-tr {
2722
- 0% {
2723
- -webkit-transform: translateX(0%);
2724
- transform: translateX(0%); }
2725
- 100% {
2726
- -webkit-transform: translateX(103%);
2727
- transform: translateX(103%); } }
2728
-
2729
- @keyframes pa-mask-tr {
2730
- 0% {
2731
- -webkit-transform: translateX(0%);
2732
- transform: translateX(0%); }
2733
- 100% {
2734
- -webkit-transform: translateX(103%);
2735
- transform: translateX(103%); } }
2736
-
2737
- @-webkit-keyframes pa-mask-tl {
2738
- 0% {
2739
- -webkit-transform: translateX(0%);
2740
- transform: translateX(0%); }
2741
- 100% {
2742
- -webkit-transform: translateX(-103%);
2743
- transform: translateX(-103%); } }
2744
-
2745
- @keyframes pa-mask-tl {
2746
- 0% {
2747
- -webkit-transform: translateX(0%);
2748
- transform: translateX(0%); }
2749
- 100% {
2750
- -webkit-transform: translateX(-103%);
2751
- transform: translateX(-103%); } }
2752
-
2753
- @-webkit-keyframes pa-mask-tb {
2754
- 0% {
2755
- -webkit-transform: translateY(0%);
2756
- transform: translateY(0%); }
2757
- 100% {
2758
- -webkit-transform: translateY(103%);
2759
- transform: translateY(103%); } }
2760
-
2761
- @keyframes pa-mask-tb {
2762
- 0% {
2763
- -webkit-transform: translateY(0%);
2764
- transform: translateY(0%); }
2765
- 100% {
2766
- -webkit-transform: translateY(103%);
2767
- transform: translateY(103%); } }
2768
-
2769
- @-webkit-keyframes pa-mask-tt {
2770
- 0% {
2771
- -webkit-transform: translateY(0%);
2772
- transform: translateY(0%); }
2773
- 100% {
2774
- -webkit-transform: translateY(-103%);
2775
- transform: translateY(-103%); } }
2776
-
2777
- @keyframes pa-mask-tt {
2778
- 0% {
2779
- -webkit-transform: translateY(0%);
2780
- transform: translateY(0%); }
2781
- 100% {
2782
- -webkit-transform: translateY(-103%);
2783
- transform: translateY(-103%); } }
2784
-
2785
- /**************** Premium Video Box ************/
2786
- /***********************************************/
2787
- .premium-video-box-transform {
2788
- -webkit-transform: none !important;
2789
- -ms-transform: none !important;
2790
- transform: none !important; }
2791
-
2792
- .premium-video-box-container {
2793
- -js-display: flex;
2794
- display: -webkit-box;
2795
- display: -webkit-flex;
2796
- display: -moz-box;
2797
- display: -ms-flexbox;
2798
- display: flex;
2799
- -webkit-box-orient: vertical;
2800
- -webkit-box-direction: normal;
2801
- -webkit-flex-direction: column;
2802
- -moz-box-orient: vertical;
2803
- -moz-box-direction: normal;
2804
- -ms-flex-direction: column;
2805
- flex-direction: column; }
2806
-
2807
- .premium-video-box-container > div {
2808
- position: relative;
2809
- overflow: hidden; }
2810
-
2811
- .pa-aspect-ratio-11 .premium-video-box-container > div {
2812
- padding-bottom: 100%; }
2813
-
2814
- .pa-aspect-ratio-169 .premium-video-box-container > div {
2815
- padding-bottom: 56.25%; }
2816
-
2817
- .pa-aspect-ratio-43 .premium-video-box-container > div {
2818
- padding-bottom: 75%; }
2819
-
2820
- .pa-aspect-ratio-32 .premium-video-box-container > div {
2821
- padding-bottom: 66.6666%; }
2822
-
2823
- .pa-aspect-ratio-219 .premium-video-box-container > div {
2824
- padding-bottom: 42.8571%; }
2825
-
2826
- .pa-aspect-ratio-916 .premium-video-box-container > div {
2827
- padding-bottom: 177.8%; }
2828
-
2829
- .premium-video-box-image-container {
2830
- position: absolute;
2831
- top: 0;
2832
- left: 0;
2833
- bottom: 0;
2834
- right: 0;
2835
- width: 100%;
2836
- height: 100%;
2837
- -webkit-background-size: cover;
2838
- background-size: cover;
2839
- background-position: 50%;
2840
- cursor: pointer;
2841
- margin: auto;
2842
- -webkit-transition: 0.2s all;
2843
- transition: 0.2s all; }
2844
-
2845
- .premium-video-box-play-icon-container {
2846
- position: absolute;
2847
- z-index: 2;
2848
- cursor: pointer;
2849
- -webkit-transform: translate(-50%, -50%);
2850
- -ms-transform: translate(-50%, -50%);
2851
- transform: translate(-50%, -50%);
2852
- background: rgba(252, 252, 252, 0.35); }
2853
-
2854
- .premium-video-box-description-container {
2855
- position: absolute;
2856
- z-index: 2;
2857
- padding: 5px;
2858
- text-align: center;
2859
- cursor: pointer;
2860
- -webkit-transform: translate(-50%, -50%);
2861
- -ms-transform: translate(-50%, -50%);
2862
- transform: translate(-50%, -50%); }
2863
-
2864
- .premium-video-box-text {
2865
- margin-bottom: 0 !important;
2866
- -webkit-transition: all 0.3s ease-in-out;
2867
- transition: all 0.3s ease-in-out; }
2868
-
2869
- .premium-video-box-play-icon {
2870
- padding: 15px;
2871
- -webkit-transform: translateX(4%);
2872
- -ms-transform: translateX(4%);
2873
- transform: translateX(4%);
2874
- -webkit-transition: all 0.3s ease-in-out;
2875
- transition: all 0.3s ease-in-out; }
2876
-
2877
- .premium-video-box-video-container {
2878
- position: absolute;
2879
- top: 0;
2880
- left: 0;
2881
- z-index: 2;
2882
- width: 100%;
2883
- height: 100%;
2884
- -webkit-transition: opacity 0.8s ease-in-out;
2885
- transition: opacity 0.8s ease-in-out;
2886
- overflow: hidden;
2887
- cursor: pointer; }
2888
-
2889
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
2890
- opacity: 0;
2891
- visibility: hidden; }
2892
-
2893
- .premium-video-box-video-container iframe {
2894
- max-width: 100%;
2895
- width: 100%;
2896
- height: 100%;
2897
- margin: 0;
2898
- line-height: 1;
2899
- border: none; }
2900
-
2901
- .premium-video-box-video-container video {
2902
- max-width: 100%;
2903
- width: 100%;
2904
- height: 100%;
2905
- margin: 0;
2906
- line-height: 1;
2907
- border: none;
2908
- background-color: #000;
2909
- -o-object-fit: contain;
2910
- object-fit: contain; }
2911
-
2912
- .premium-video-box-container .premium-video-box-vimeo-wrap {
2913
- -js-display: flex;
2914
- display: -webkit-box;
2915
- display: -webkit-flex;
2916
- display: -moz-box;
2917
- display: -ms-flexbox;
2918
- display: flex;
2919
- position: absolute;
2920
- top: 0;
2921
- left: 0;
2922
- z-index: 3;
2923
- margin: 10px;
2924
- margin-right: 10px;
2925
- -webkit-transition: opacity 0.2s ease-out;
2926
- transition: opacity 0.2s ease-out;
2927
- margin-right: 4.6em; }
2928
-
2929
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
2930
- width: 60px;
2931
- height: 60px;
2932
- background: rgba(23, 35, 34, 0.75);
2933
- margin-right: 1px;
2934
- -webkit-box-flex: 1;
2935
- -webkit-flex: 1 0 auto;
2936
- -moz-box-flex: 1;
2937
- -ms-flex: 1 0 auto;
2938
- flex: 1 0 auto;
2939
- padding: 0; }
2940
-
2941
- .premium-video-box-vimeo-portrait img {
2942
- width: 50px;
2943
- height: 50px;
2944
- margin: 5px;
2945
- padding: 0;
2946
- border: 0;
2947
- -webkit-border-radius: 50%;
2948
- border-radius: 50%; }
2949
-
2950
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
2951
- font-size: 10px; }
2952
-
2953
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
2954
- max-width: 100%;
2955
- font-size: 2em !important;
2956
- font-weight: 700;
2957
- margin: 0;
2958
- padding: 0.1em 0.2em;
2959
- background: rgba(23, 35, 34, 0.75);
2960
- display: inline-block;
2961
- text-transform: none;
2962
- line-height: normal;
2963
- letter-spacing: normal; }
2964
-
2965
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
2966
- font-size: 1.2em !important;
2967
- font-weight: 400;
2968
- color: #fff;
2969
- margin-top: 0.1em;
2970
- padding: 0.2em 0.5em;
2971
- background: rgba(23, 35, 34, 0.75);
2972
- text-transform: none;
2973
- line-height: normal;
2974
- letter-spacing: normal; }
2975
-
2976
- .premium-video-box-playlist-container {
2977
- -js-display: flex;
2978
- display: -webkit-box;
2979
- display: -webkit-flex;
2980
- display: -moz-box;
2981
- display: -ms-flexbox;
2982
- display: flex;
2983
- -webkit-flex-wrap: wrap;
2984
- -ms-flex-wrap: wrap;
2985
- flex-wrap: wrap; }
2986
- .premium-video-box-playlist-container .premium-video-box-container {
2987
- height: 100%;
2988
- overflow: hidden; }
2989
-
2990
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
2991
- -webkit-transform: scale(1.1);
2992
- -ms-transform: scale(1.1);
2993
- transform: scale(1.1); }
2994
-
2995
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
2996
- -webkit-transform: scale(1);
2997
- -ms-transform: scale(1);
2998
- transform: scale(1); }
2999
-
3000
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
3001
- -webkit-transform: scale(1.3) rotate(5deg);
3002
- -ms-transform: scale(1.3) rotate(5deg);
3003
- transform: scale(1.3) rotate(5deg); }
3004
-
3005
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
3006
- -webkit-filter: grayscale(0%);
3007
- filter: grayscale(0%); }
3008
-
3009
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
3010
- -webkit-filter: blur(3px);
3011
- filter: blur(3px); }
3012
-
3013
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3014
- -webkit-filter: sepia(0%);
3015
- filter: sepia(0%); }
3016
-
3017
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
3018
- -webkit-transform: translateX(0px) scale(1.1);
3019
- -ms-transform: translateX(0px) scale(1.1);
3020
- transform: translateX(0px) scale(1.1); }
3021
-
3022
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
3023
- -webkit-filter: brightness(1.2);
3024
- filter: brightness(1.2); }
3025
-
3026
- .premium-video-box-image-container.gray {
3027
- -webkit-filter: grayscale(100%);
3028
- filter: grayscale(100%); }
3029
-
3030
- .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
3031
- -webkit-transform: scale(1.2);
3032
- -ms-transform: scale(1.2);
3033
- transform: scale(1.2); }
3034
-
3035
- .premium-video-box-image-container.sepia {
3036
- -webkit-filter: sepia(30%);
3037
- filter: sepia(30%); }
3038
-
3039
- .premium-video-box-image-container.bright {
3040
- -webkit-filter: brightness(1);
3041
- filter: brightness(1); }
3042
-
3043
- .premium-video-box-image-container.trans {
3044
- -webkit-transform: translateX(-15px) scale(1.1);
3045
- -ms-transform: translateX(-15px) scale(1.1);
3046
- transform: translateX(-15px) scale(1.1); }
3047
-
3048
- .premium-video-box-mask-media {
3049
- -webkit-mask-repeat: no-repeat;
3050
- mask-repeat: no-repeat; }
3051
-
3052
- /* Sticky Video Option */
3053
- .premium-video-box-container.premium-video-box-sticky-apply {
3054
- z-index: 99;
3055
- overflow: unset; }
3056
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3057
- position: fixed !important;
3058
- z-index: 99999;
3059
- height: 225px;
3060
- width: 400px;
3061
- background: #fff; }
3062
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3063
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3064
- visibility: hidden; }
3065
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3066
- -webkit-box-shadow: unset;
3067
- box-shadow: unset; }
3068
-
3069
- .premium-video-box-sticky-close,
3070
- .premium-video-box-sticky-infobar {
3071
- display: none; }
3072
-
3073
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3074
- position: absolute;
3075
- padding: 5px;
3076
- cursor: pointer;
3077
- z-index: 99999;
3078
- height: 14px;
3079
- width: 14px;
3080
- -webkit-box-sizing: content-box;
3081
- -moz-box-sizing: content-box;
3082
- box-sizing: content-box;
3083
- -webkit-border-radius: 100%;
3084
- border-radius: 100%;
3085
- -js-display: flex;
3086
- display: -webkit-box;
3087
- display: -webkit-flex;
3088
- display: -moz-box;
3089
- display: -ms-flexbox;
3090
- display: flex;
3091
- -webkit-box-pack: center;
3092
- -webkit-justify-content: center;
3093
- -moz-box-pack: center;
3094
- -ms-flex-pack: center;
3095
- justify-content: center;
3096
- -webkit-box-align: center;
3097
- -webkit-align-items: center;
3098
- -moz-box-align: center;
3099
- -ms-flex-align: center;
3100
- align-items: center; }
3101
-
3102
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3103
- -js-display: flex;
3104
- display: -webkit-box;
3105
- display: -webkit-flex;
3106
- display: -moz-box;
3107
- display: -ms-flexbox;
3108
- display: flex; }
3109
-
3110
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
3111
- -webkit-transition: none;
3112
- transition: none; }
3113
-
3114
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3115
- display: block;
3116
- position: relative;
3117
- top: 100%;
3118
- width: 100%;
3119
- padding: 5px;
3120
- text-align: center;
3121
- z-index: 9999;
3122
- margin-top: -1px; }
3123
-
3124
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3125
- cursor: move; }
3126
-
3127
- .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3128
- right: auto;
3129
- left: 20px;
3130
- top: 20px; }
3131
-
3132
- .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3133
- right: auto;
3134
- left: 20px;
3135
- bottom: 20px; }
3136
-
3137
- .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3138
- left: auto;
3139
- right: 20px;
3140
- top: 20px; }
3141
-
3142
- .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3143
- left: auto;
3144
- right: 20px;
3145
- bottom: 20px; }
3146
-
3147
- .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3148
- right: auto;
3149
- left: 20px;
3150
- top: 50%;
3151
- -webkit-transform: translateY(-50%);
3152
- -ms-transform: translateY(-50%);
3153
- transform: translateY(-50%); }
3154
-
3155
- .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3156
- left: auto;
3157
- right: 20px;
3158
- top: 50%;
3159
- -webkit-transform: translateY(-50%);
3160
- -ms-transform: translateY(-50%);
3161
- transform: translateY(-50%); }
3162
-
3163
- .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
3164
- .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3165
- bottom: 55px; }
3166
-
3167
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3168
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3169
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3170
- top: -10px;
3171
- right: -10px; }
3172
-
3173
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3174
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3175
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3176
- top: -10px;
3177
- left: -10px; }
3178
-
3179
- .premium-video-box-filter-sticky {
3180
- -webkit-filter: none !important;
3181
- filter: none !important; }
3182
-
3183
- /**************** Premium Blog *****************/
3184
- /***********************************************/
3185
- .premium-blog-thumb-effect-wrapper {
3186
- position: relative;
3187
- overflow: hidden; }
3188
-
3189
- .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3190
- position: absolute;
3191
- top: 0;
3192
- left: 0;
3193
- width: 100%;
3194
- height: 100%;
3195
- z-index: 2;
3196
- padding: 20px; }
3197
-
3198
- .premium-blog-bordered-effect .premium-blog-post-link {
3199
- display: block;
3200
- height: 100%;
3201
- position: relative; }
3202
-
3203
- /*Thumbnail Img*/
3204
- .premium-blog-thumbnail-container {
3205
- overflow: hidden; }
3206
- .premium-blog-thumbnail-container img,
3207
- .premium-blog-thumbnail-container .below-entry-meta {
3208
- width: 100%;
3209
- height: 100%;
3210
- margin: 0 !important;
3211
- -webkit-transition: all 0.4s ease-in-out;
3212
- transition: all 0.4s ease-in-out; }
3213
-
3214
- .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3215
- .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3216
- -webkit-transform: scale(1.2);
3217
- -ms-transform: scale(1.2);
3218
- transform: scale(1.2); }
3219
-
3220
- .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3221
- -webkit-filter: sepia(30%);
3222
- filter: sepia(30%); }
3223
-
3224
- .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3225
- -webkit-filter: brightness(1);
3226
- filter: brightness(1); }
3227
-
3228
- .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3229
- -webkit-transform: translateX(-15px) scale(1.1);
3230
- -ms-transform: translateX(-15px) scale(1.1);
3231
- transform: translateX(-15px) scale(1.1); }
3232
-
3233
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3234
- -webkit-transform: scale(1.2);
3235
- -ms-transform: scale(1.2);
3236
- transform: scale(1.2); }
3237
-
3238
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3239
- -webkit-transform: scale(1.1);
3240
- -ms-transform: scale(1.1);
3241
- transform: scale(1.1); }
3242
-
3243
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3244
- -webkit-transform: scale(1.3) rotate(5deg);
3245
- -ms-transform: scale(1.3) rotate(5deg);
3246
- transform: scale(1.3) rotate(5deg); }
3247
-
3248
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3249
- -webkit-filter: grayscale(100%);
3250
- filter: grayscale(100%); }
3251
-
3252
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3253
- -webkit-filter: blur(3px);
3254
- filter: blur(3px); }
3255
-
3256
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3257
- -webkit-filter: sepia(0%);
3258
- filter: sepia(0%); }
3259
-
3260
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3261
- -webkit-filter: brightness(1.2);
3262
- filter: brightness(1.2); }
3263
-
3264
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3265
- -webkit-transform: translateX(0px) scale(1.1);
3266
- -ms-transform: translateX(0px) scale(1.1);
3267
- transform: translateX(0px) scale(1.1); }
3268
-
3269
- .premium-blog-post-container {
3270
- overflow: hidden; }
3271
- .premium-blog-post-container .premium-blog-inner-container {
3272
- -js-display: flex;
3273
- display: -webkit-box;
3274
- display: -webkit-flex;
3275
- display: -moz-box;
3276
- display: -ms-flexbox;
3277
- display: flex; }
3278
- .premium-blog-post-container .premium-blog-entry-container {
3279
- margin: 0 !important; }
3280
- .premium-blog-post-container .premium-blog-post-content {
3281
- line-height: 1.5em;
3282
- color: #777;
3283
- font-size: 14px;
3284
- margin-bottom: 10px; }
3285
- .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
3286
- .premium-blog-post-container .premium-blog-post-link:hover,
3287
- .premium-blog-post-container .premium-blog-post-link:focus {
3288
- -webkit-box-shadow: none !important;
3289
- box-shadow: none !important;
3290
- outline: none !important; }
3291
- .premium-blog-post-container .premium-blog-entry-title {
3292
- font-size: 18px;
3293
- margin-bottom: 5px; }
3294
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
3295
- position: relative;
3296
- z-index: 3;
3297
- top: -50px; }
3298
- .premium-blog-post-container .premium-blog-content-wrapper {
3299
- background-color: #f5f5f5;
3300
- padding: 30px; }
3301
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
3302
- top: 0; }
3303
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
3304
- position: absolute;
3305
- content: "";
3306
- z-index: 1;
3307
- top: 50%;
3308
- left: 50%;
3309
- opacity: 0;
3310
- -webkit-transform: translate(-50%, -50%);
3311
- -ms-transform: translate(-50%, -50%);
3312
- transform: translate(-50%, -50%);
3313
- -webkit-transition: all 0.4s linear 0s;
3314
- transition: all 0.4s linear 0s;
3315
- height: 1px;
3316
- width: 100%;
3317
- background-color: #fff; }
3318
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
3319
- width: 1px;
3320
- height: 100%; }
3321
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
3322
- width: 20px;
3323
- opacity: 1; }
3324
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
3325
- height: 20px;
3326
- opacity: 1; }
3327
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
3328
- margin: 0px 10px 20px;
3329
- clear: both; }
3330
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
3331
- position: absolute;
3332
- top: 0;
3333
- left: 0;
3334
- width: 100%;
3335
- height: 100%;
3336
- -webkit-transition: all 0.3s ease-in-out;
3337
- transition: all 0.3s ease-in-out;
3338
- opacity: 0; }
3339
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
3340
- -js-display: flex;
3341
- display: -webkit-box;
3342
- display: -webkit-flex;
3343
- display: -moz-box;
3344
- display: -ms-flexbox;
3345
- display: flex;
3346
- -webkit-box-pack: center;
3347
- -webkit-justify-content: center;
3348
- -moz-box-pack: center;
3349
- -ms-flex-pack: center;
3350
- justify-content: center;
3351
- -webkit-box-align: center;
3352
- -webkit-align-items: center;
3353
- -moz-box-align: center;
3354
- -ms-flex-align: center;
3355
- align-items: center;
3356
- width: 100%;
3357
- height: 100%; }
3358
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
3359
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
3360
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
3361
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
3362
- -webkit-transition: all 0.3s ease-in-out;
3363
- transition: all 0.3s ease-in-out; }
3364
- .premium-blog-post-container.premium-blog-skin-side {
3365
- -js-display: flex;
3366
- display: -webkit-box;
3367
- display: -webkit-flex;
3368
- display: -moz-box;
3369
- display: -ms-flexbox;
3370
- display: flex; }
3371
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
3372
- height: 100%; }
3373
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
3374
- -webkit-box-flex: 1;
3375
- -webkit-flex: 1;
3376
- -moz-box-flex: 1;
3377
- -ms-flex: 1;
3378
- flex: 1; }
3379
- .premium-blog-post-container.premium-blog-skin-banner {
3380
- position: relative; }
3381
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
3382
- position: absolute;
3383
- width: 100%;
3384
- bottom: 0;
3385
- -js-display: flex;
3386
- display: -webkit-box;
3387
- display: -webkit-flex;
3388
- display: -moz-box;
3389
- display: -ms-flexbox;
3390
- display: flex;
3391
- -webkit-box-orient: vertical;
3392
- -webkit-box-direction: normal;
3393
- -webkit-flex-direction: column;
3394
- -moz-box-orient: vertical;
3395
- -moz-box-direction: normal;
3396
- -ms-flex-direction: column;
3397
- flex-direction: column;
3398
- background-color: transparent;
3399
- z-index: 3; }
3400
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
3401
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
3402
- transition: -webkit-transform 0.3s ease-in-out;
3403
- transition: transform 0.3s ease-in-out;
3404
- transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
3405
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
3406
- -webkit-transform: translateY(-5px);
3407
- -ms-transform: translateY(-5px);
3408
- transform: translateY(-5px); }
3409
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
3410
- margin: 0;
3411
- padding: 0;
3412
- list-style: none;
3413
- -js-display: flex;
3414
- display: -webkit-box;
3415
- display: -webkit-flex;
3416
- display: -moz-box;
3417
- display: -ms-flexbox;
3418
- display: flex; }
3419
- .premium-blog-post-container .premium-blog-cats-container a {
3420
- display: block;
3421
- font-size: 12px;
3422
- color: #fff;
3423
- background-color: #777;
3424
- margin: 0 3px 10px 0;
3425
- padding: 5px;
3426
- -webkit-transition: all 0.3s ease-in-out;
3427
- transition: all 0.3s ease-in-out; }
3428
-
3429
- /*
3430
- * Diagonal Effect
3431
- */
3432
- .premium-blog-diagonal-container {
3433
- position: absolute;
3434
- top: 0;
3435
- left: 0;
3436
- width: 100%;
3437
- height: 100%; }
3438
-
3439
- .premium-blog-diagonal-effect:before {
3440
- position: absolute;
3441
- top: 0px;
3442
- left: 0px;
3443
- width: 100%;
3444
- height: 100%;
3445
- content: " ";
3446
- z-index: 1;
3447
- background: rgba(255, 255, 255, 0.2);
3448
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3449
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3450
- -webkit-transition: all 0.3s linear 0s;
3451
- transition: all 0.3s linear 0s; }
3452
-
3453
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
3454
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3455
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3456
-
3457
- /*
3458
- * Framed Effect
3459
- */
3460
- .premium-blog-framed-effect {
3461
- position: absolute;
3462
- width: -webkit-calc(100% - 30px);
3463
- width: calc(100% - 30px);
3464
- height: -webkit-calc(100% - 30px);
3465
- height: calc(100% - 30px);
3466
- top: 15px;
3467
- left: 15px;
3468
- opacity: 0;
3469
- -webkit-transform: scale(0.3);
3470
- -ms-transform: scale(0.3);
3471
- transform: scale(0.3);
3472
- -webkit-transition: all 0.3s linear 0s;
3473
- transition: all 0.3s linear 0s; }
3474
-
3475
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
3476
- opacity: 0.99;
3477
- -webkit-transform: scale(1);
3478
- -ms-transform: scale(1);
3479
- transform: scale(1); }
3480
-
3481
- /*
3482
- * Bordered Effect
3483
- */
3484
- .premium-blog-bordered-effect {
3485
- position: absolute;
3486
- top: 0;
3487
- left: 0;
3488
- width: 100%;
3489
- height: 100%;
3490
- opacity: 0;
3491
- padding: 15px;
3492
- -webkit-transition: all 0.3s linear 0s;
3493
- transition: all 0.3s linear 0s; }
3494
- .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
3495
- content: "";
3496
- display: block;
3497
- position: absolute;
3498
- top: 0;
3499
- left: 0;
3500
- width: 100%;
3501
- height: 100%;
3502
- -webkit-transition: all 0.5s linear 0s;
3503
- transition: all 0.5s linear 0s;
3504
- -webkit-transition-delay: 0s;
3505
- transition-delay: 0s;
3506
- border-color: rgba(255, 255, 255, 0.45); }
3507
- .premium-blog-bordered-effect .premium-blog-post-link:before {
3508
- border-right: 2px solid;
3509
- border-left: 2px solid;
3510
- -webkit-transform: scale(1, 0);
3511
- -ms-transform: scale(1, 0);
3512
- transform: scale(1, 0);
3513
- -webkit-transform-origin: 100% 0;
3514
- -ms-transform-origin: 100% 0;
3515
- transform-origin: 100% 0; }
3516
- .premium-blog-bordered-effect .premium-blog-post-link:after {
3517
- border-top: 2px solid;
3518
- border-bottom: 2px solid;
3519
- -webkit-transform: scale(0, 1);
3520
- -ms-transform: scale(0, 1);
3521
- transform: scale(0, 1);
3522
- -webkit-transform-origin: 0 0;
3523
- -ms-transform-origin: 0 0;
3524
- transform-origin: 0 0; }
3525
-
3526
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
3527
- opacity: 0.99; }
3528
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
3529
- -webkit-transition-delay: 0.15s;
3530
- transition-delay: 0.15s;
3531
- opacity: 1;
3532
- -webkit-transform: scale(1);
3533
- -ms-transform: scale(1);
3534
- transform: scale(1); }
3535
-
3536
- /*
3537
- * Squares Effect
3538
- */
3539
- .premium-blog-squares-effect,
3540
- .premium-blog-squares-square-container {
3541
- position: absolute;
3542
- top: 0;
3543
- left: 0;
3544
- width: 100%;
3545
- height: 100%; }
3546
-
3547
- .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
3548
- position: absolute;
3549
- content: "";
3550
- top: 0;
3551
- left: 0;
3552
- width: 50%;
3553
- height: 50%;
3554
- -webkit-transform: translate(-100%, -100%);
3555
- -ms-transform: translate(-100%, -100%);
3556
- transform: translate(-100%, -100%);
3557
- opacity: 0.7;
3558
- -webkit-transition: all 0.3s linear 0s;
3559
- transition: all 0.3s linear 0s; }
3560
-
3561
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3562
- position: absolute;
3563
- content: "";
3564
- top: 0;
3565
- left: 0;
3566
- width: 50%;
3567
- height: 50%;
3568
- -webkit-transform: translate(-100%, -100%);
3569
- -ms-transform: translate(-100%, -100%);
3570
- transform: translate(-100%, -100%);
3571
- opacity: 0.7;
3572
- -webkit-transition: all 0.3s linear 0s;
3573
- transition: all 0.3s linear 0s; }
3574
-
3575
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3576
- opacity: 0.8; }
3577
-
3578
- .premium-blog-squares-effect:after {
3579
- -webkit-transform: translate(200%, 200%);
3580
- -ms-transform: translate(200%, 200%);
3581
- transform: translate(200%, 200%); }
3582
-
3583
- .premium-blog-squares-square-container:before {
3584
- -webkit-transform: translate(-100%, 200%);
3585
- -ms-transform: translate(-100%, 200%);
3586
- transform: translate(-100%, 200%); }
3587
-
3588
- .premium-blog-squares-square-container:after {
3589
- -webkit-transform: translate(200%, -100%);
3590
- -ms-transform: translate(200%, -100%);
3591
- transform: translate(200%, -100%); }
3592
-
3593
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
3594
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3595
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3596
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
3597
-
3598
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
3599
- -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3600
- -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3601
- transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
3602
-
3603
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
3604
- -webkit-transform: translate(0, 100%);
3605
- -ms-transform: translate(0, 100%);
3606
- transform: translate(0, 100%); }
3607
-
3608
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
3609
- -webkit-transform: translate(100%, 0%);
3610
- -ms-transform: translate(100%, 0%);
3611
- transform: translate(100%, 0%); }
3612
-
3613
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
3614
- opacity: 1; }
3615
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
3616
- opacity: 1;
3617
- -webkit-transform: scale(1);
3618
- -ms-transform: scale(1);
3619
- transform: scale(1); }
3620
-
3621
- .premium-blog-clear-fix {
3622
- clear: both; }
3623
-
3624
- .premium-blog-masked .premium-blog-thumbnail-container {
3625
- position: relative;
3626
- overflow: visible; }
3627
- .premium-blog-masked .premium-blog-thumbnail-container svg {
3628
- position: absolute;
3629
- height: 100px;
3630
- width: 100%;
3631
- bottom: -5px;
3632
- left: 0;
3633
- fill: #f5f5f5;
3634
- z-index: 99; }
3635
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
3636
- -webkit-transform: rotate(180deg);
3637
- -ms-transform: rotate(180deg);
3638
- transform: rotate(180deg); }
3639
-
3640
- .premium-blog-masked .premium-blog-author-thumbnail,
3641
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
3642
- z-index: 999 !important; }
3643
-
3644
- .premium-blog-format-link {
3645
- padding: 5px;
3646
- line-height: 0; }
3647
-
3648
- .premium-blog-entry-meta {
3649
- line-height: 1.3em;
3650
- font-size: 12px;
3651
- margin-bottom: 13px;
3652
- color: #adadad; }
3653
- .premium-blog-entry-meta i {
3654
- margin-right: 3px;
3655
- -webkit-transition: all 0.3s ease-in-out;
3656
- transition: all 0.3s ease-in-out; }
3657
-
3658
- .premium-blog-meta-data {
3659
- display: inline-block; }
3660
- .premium-blog-meta-data .premium-blog-meta-separator {
3661
- margin: 0 5px; }
3662
- .premium-blog-meta-data a,
3663
- .premium-blog-meta-data span {
3664
- color: inherit;
3665
- -webkit-transition: all 0.3s ease-in-out;
3666
- transition: all 0.3s ease-in-out; }
3667
-
3668
- .premium-blog-author-thumbnail {
3669
- position: relative;
3670
- padding: 0 30px;
3671
- width: 100%;
3672
- top: -10px;
3673
- height: 0;
3674
- pointer-events: none; }
3675
- .premium-blog-author-thumbnail img {
3676
- -webkit-border-radius: 50%;
3677
- border-radius: 50%;
3678
- width: 60px;
3679
- pointer-events: all;
3680
- -webkit-transform: translateY(-50%);
3681
- -ms-transform: translateY(-50%);
3682
- transform: translateY(-50%); }
3683
-
3684
- .premium-blog-entry-title a,
3685
- .premium-blog-post-tags-container a,
3686
- .premium-blog-post-content .premium-blog-excerpt-link {
3687
- -webkit-transition: all 0.3s ease-in-out;
3688
- transition: all 0.3s ease-in-out; }
3689
-
3690
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
3691
- background-color: transparent;
3692
- color: #54595f;
3693
- padding: 0; }
3694
-
3695
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
3696
- width: 100%; }
3697
-
3698
- .premium-blog-post-tags-container {
3699
- margin-top: 8px;
3700
- -js-display: flex;
3701
- display: -webkit-box;
3702
- display: -webkit-flex;
3703
- display: -moz-box;
3704
- display: -ms-flexbox;
3705
- display: flex;
3706
- -webkit-box-align: center;
3707
- -webkit-align-items: center;
3708
- -moz-box-align: center;
3709
- -ms-flex-align: center;
3710
- align-items: center;
3711
- -webkit-flex-wrap: wrap;
3712
- -ms-flex-wrap: wrap;
3713
- flex-wrap: wrap; }
3714
- .premium-blog-post-tags-container a {
3715
- color: inherit;
3716
- margin-left: 5px; }
3717
-
3718
- /*Tags align*/
3719
- .premium-blog-align-left .post-categories,
3720
- .premium-blog-align-left .premium-blog-inner-container,
3721
- .premium-blog-align-left .premium-blog-post-tags-container {
3722
- -webkit-box-pack: start;
3723
- -webkit-justify-content: flex-start;
3724
- -moz-box-pack: start;
3725
- -ms-flex-pack: start;
3726
- justify-content: flex-start; }
3727
-
3728
- .premium-blog-align-center .post-categories,
3729
- .premium-blog-align-center .premium-blog-inner-container,
3730
- .premium-blog-align-center .premium-blog-post-tags-container {
3731
- -webkit-box-pack: center;
3732
- -webkit-justify-content: center;
3733
- -moz-box-pack: center;
3734
- -ms-flex-pack: center;
3735
- justify-content: center; }
3736
-
3737
- .premium-blog-align-right .post-categories,
3738
- .premium-blog-align-right .premium-blog-inner-container,
3739
- .premium-blog-align-right .premium-blog-post-tags-container {
3740
- -webkit-box-pack: end;
3741
- -webkit-justify-content: flex-end;
3742
- -moz-box-pack: end;
3743
- -ms-flex-pack: end;
3744
- justify-content: flex-end; }
3745
-
3746
- /* Pagination */
3747
- .premium-blog-pagination-container {
3748
- text-align: right; }
3749
- .premium-blog-pagination-container span {
3750
- cursor: default; }
3751
- .premium-blog-pagination-container .page-numbers {
3752
- display: inline-block;
3753
- color: #000;
3754
- line-height: 1;
3755
- font-size: 1em;
3756
- font-weight: 400;
3757
- text-decoration: none;
3758
- padding: 0.75em;
3759
- margin: 0 0.4em 0.4em 0;
3760
- -webkit-transition: all 0.2s ease-in-out;
3761
- transition: all 0.2s ease-in-out; }
3762
-
3763
- .premium-blog-wrap .premium-loading-feed {
3764
- display: block;
3765
- position: absolute;
3766
- width: 100%;
3767
- height: 100%;
3768
- top: 0px;
3769
- left: 0px;
3770
- bottom: 0px;
3771
- right: 0px;
3772
- background: rgba(255, 255, 255, 0.2);
3773
- -js-display: flex;
3774
- display: -webkit-box;
3775
- display: -webkit-flex;
3776
- display: -moz-box;
3777
- display: -ms-flexbox;
3778
- display: flex;
3779
- -webkit-box-align: center;
3780
- -webkit-align-items: center;
3781
- -moz-box-align: center;
3782
- -ms-flex-align: center;
3783
- align-items: center;
3784
- z-index: 99; }
3785
-
3786
- .premium-blog-wrap {
3787
- -js-display: flex;
3788
- display: -webkit-box;
3789
- display: -webkit-flex;
3790
- display: -moz-box;
3791
- display: -ms-flexbox;
3792
- display: flex;
3793
- -webkit-flex-wrap: wrap;
3794
- -ms-flex-wrap: wrap;
3795
- flex-wrap: wrap; }
3796
- .premium-blog-wrap ul.slick-dots {
3797
- width: 100%; }
3798
-
3799
- /*
3800
- * List Layout
3801
- */
3802
- .premium-blog-list .premium-blog-post-outer-container {
3803
- width: 100%; }
3804
-
3805
- /**
3806
- * Even Layout
3807
- */
3808
- .premium-blog-even .premium-blog-post-container {
3809
- height: 100%; }
3810
-
3811
- .premium-blog-even .slick-track {
3812
- -js-display: flex;
3813
- display: -webkit-box;
3814
- display: -webkit-flex;
3815
- display: -moz-box;
3816
- display: -ms-flexbox;
3817
- display: flex; }
3818
-
3819
- .premium-blog-even .slick-slide {
3820
- height: inherit !important; }
3821
-
3822
- /**
3823
- * Responsive Style
3824
- */
3825
- @media (max-width: 768px) {
3826
- .premium-blog-content-wrapper {
3827
- top: 0;
3828
- margin: 0;
3829
- padding: 15px; }
3830
- .premium-blog-skin-side {
3831
- -webkit-box-orient: vertical;
3832
- -webkit-box-direction: normal;
3833
- -webkit-flex-direction: column;
3834
- -moz-box-orient: vertical;
3835
- -moz-box-direction: normal;
3836
- -ms-flex-direction: column;
3837
- flex-direction: column; } }
3838
-
3839
- /************ Premium Team Members ************/
3840
- /**********************************************/
3841
- .premium-person-container {
3842
- position: relative; }
3843
-
3844
- .premium-person-image-container {
3845
- position: relative;
3846
- text-align: center; }
3847
- .premium-person-image-container .premium-person-image-wrap {
3848
- overflow: hidden; }
3849
-
3850
- .premium-person-zoomout-effect .premium-person-image-container img,
3851
- .premium-person-scale-effect .premium-person-image-container img {
3852
- -webkit-transform: scale(1.2);
3853
- -ms-transform: scale(1.2);
3854
- transform: scale(1.2); }
3855
-
3856
- .premium-person-sepia-effect .premium-person-image-container img {
3857
- -webkit-filter: sepia(30%);
3858
- filter: sepia(30%); }
3859
-
3860
- .premium-person-bright-effect .premium-person-image-container img {
3861
- -webkit-filter: brightness(1);
3862
- filter: brightness(1); }
3863
-
3864
- .premium-person-trans-effect .premium-person-image-container img {
3865
- -webkit-transform: translateX(-15px) scale(1.1);
3866
- -ms-transform: translateX(-15px) scale(1.1);
3867
- transform: translateX(-15px) scale(1.1); }
3868
-
3869
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
3870
- -webkit-transform: scale(1.2);
3871
- -ms-transform: scale(1.2);
3872
- transform: scale(1.2); }
3873
-
3874
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
3875
- -webkit-transform: scale(1.1);
3876
- -ms-transform: scale(1.1);
3877
- transform: scale(1.1); }
3878
-
3879
- .premium-person-scale-effect:hover .premium-person-image-container img {
3880
- -webkit-transform: scale(1.3) rotate(5deg);
3881
- -ms-transform: scale(1.3) rotate(5deg);
3882
- transform: scale(1.3) rotate(5deg); }
3883
-
3884
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
3885
- -webkit-filter: grayscale(100%);
3886
- filter: grayscale(100%); }
3887
-
3888
- .premium-person-blur-effect:hover .premium-person-image-container img {
3889
- -webkit-filter: blur(3px);
3890
- filter: blur(3px); }
3891
-
3892
- .premium-person-sepia-effect:hover .premium-person-image-container img {
3893
- -webkit-filter: sepia(0%);
3894
- filter: sepia(0%); }
3895
-
3896
- .premium-person-bright-effect:hover .premium-person-image-container img {
3897
- -webkit-filter: brightness(1.2);
3898
- filter: brightness(1.2); }
3899
-
3900
- .premium-person-trans-effect:hover .premium-person-image-container img {
3901
- -webkit-transform: translateX(0px) scale(1.1);
3902
- -ms-transform: translateX(0px) scale(1.1);
3903
- transform: translateX(0px) scale(1.1); }
3904
-
3905
- .premium-person-container .premium-person-image-container img {
3906
- width: 100%;
3907
- height: 100%;
3908
- -o-object-fit: cover;
3909
- object-fit: cover;
3910
- -webkit-transition: all 0.5s ease-in-out;
3911
- transition: all 0.5s ease-in-out; }
3912
-
3913
- .premium-person-style2 .premium-person-social {
3914
- position: absolute;
3915
- top: 0;
3916
- left: 0;
3917
- width: 100%;
3918
- height: 100%;
3919
- z-index: 2;
3920
- -js-display: flex;
3921
- display: -webkit-box;
3922
- display: -webkit-flex;
3923
- display: -moz-box;
3924
- display: -ms-flexbox;
3925
- display: flex;
3926
- -webkit-box-pack: center;
3927
- -webkit-justify-content: center;
3928
- -moz-box-pack: center;
3929
- -ms-flex-pack: center;
3930
- justify-content: center;
3931
- -webkit-box-align: center;
3932
- -webkit-align-items: center;
3933
- -moz-box-align: center;
3934
- -ms-flex-align: center;
3935
- align-items: center;
3936
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3937
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3938
- -webkit-transition: all 0.5s linear 0s;
3939
- transition: all 0.5s linear 0s;
3940
- opacity: 0; }
3941
-
3942
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
3943
- opacity: 1; }
3944
-
3945
- .premium-person-list-item a {
3946
- display: inline-block; }
3947
-
3948
- .premium-person-style2 .premium-person-list-item a {
3949
- opacity: 0;
3950
- -webkit-transform: scale(0);
3951
- -ms-transform: scale(0);
3952
- transform: scale(0);
3953
- -webkit-transition: all 0.5s ease-in-out 0s;
3954
- transition: all 0.5s ease-in-out 0s; }
3955
-
3956
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
3957
- opacity: 1;
3958
- -webkit-transform: scale(1);
3959
- -ms-transform: scale(1);
3960
- transform: scale(1); }
3961
-
3962
- .premium-person-info-container {
3963
- padding: 30px 15px; }
3964
-
3965
- .premium-person-name {
3966
- margin: 0 0 5px;
3967
- font-weight: 700; }
3968
-
3969
- .premium-person-title {
3970
- margin: 0 0 20px;
3971
- padding: 0; }
3972
-
3973
- .premium-person-content {
3974
- margin: 0 0 30px; }
3975
-
3976
- /*Override Theme List Margin*/
3977
- ul.premium-person-social-list {
3978
- margin: 0px !important;
3979
- padding: 0; }
3980
-
3981
- .premium-person-social-list .premium-person-list-item {
3982
- display: inline;
3983
- list-style: none; }
3984
-
3985
- .premium-person-social-list li {
3986
- position: relative;
3987
- bottom: 0px;
3988
- -webkit-transition: all 0.2s ease-in-out;
3989
- transition: all 0.2s ease-in-out; }
3990
- .premium-person-social-list li i {
3991
- position: relative;
3992
- bottom: 0px;
3993
- -webkit-transition: all 0.2s ease-in-out;
3994
- transition: all 0.2s ease-in-out; }
3995
-
3996
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
3997
- background-color: #3b5998 !important; }
3998
-
3999
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
4000
- background-color: #55acee !important; }
4001
-
4002
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4003
- background-color: #0077b5 !important; }
4004
-
4005
- .premium-person-defaults-yes li.premium-person-google:hover a {
4006
- background-color: #dc4e41 !important; }
4007
-
4008
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
4009
- background-color: #b31217 !important; }
4010
-
4011
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
4012
- background-color: #e4405f !important; }
4013
-
4014
- .premium-person-defaults-yes li.premium-person-skype:hover a {
4015
- background-color: #00aff0 !important; }
4016
-
4017
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4018
- background-color: #bd081c !important; }
4019
-
4020
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4021
- background-color: #ea4c89 !important; }
4022
-
4023
- .premium-person-defaults-yes li.premium-person-mail:hover a {
4024
- background-color: #b23121 !important; }
4025
-
4026
- .premium-person-defaults-yes li.premium-person-behance:hover a {
4027
- background-color: #1769ff !important; }
4028
-
4029
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4030
- background-color: #25d366 !important; }
4031
-
4032
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
4033
- background-color: #0088cc !important; }
4034
-
4035
- .premium-person-defaults-yes li.premium-person-site:hover a {
4036
- background-color: #0055a5 !important; }
4037
-
4038
- .premium-person-social-list li:hover a {
4039
- -webkit-box-shadow: none;
4040
- box-shadow: none; }
4041
-
4042
- .premium-person-social-list li a:focus {
4043
- -webkit-box-shadow: none;
4044
- box-shadow: none;
4045
- outline: none; }
4046
-
4047
- .premium-person-social-list li i {
4048
- font-size: 18px; }
4049
-
4050
- .elementor-widget-premium-addon-person .elementor-widget-container {
4051
- -js-display: flex;
4052
- display: -webkit-box;
4053
- display: -webkit-flex;
4054
- display: -moz-box;
4055
- display: -ms-flexbox;
4056
- display: flex;
4057
- -webkit-box-pack: center;
4058
- -webkit-justify-content: center;
4059
- -moz-box-pack: center;
4060
- -ms-flex-pack: center;
4061
- justify-content: center; }
4062
-
4063
- .premium-persons-container.multiple-persons {
4064
- -js-display: flex;
4065
- display: -webkit-box;
4066
- display: -webkit-flex;
4067
- display: -moz-box;
4068
- display: -ms-flexbox;
4069
- display: flex;
4070
- -webkit-flex-wrap: wrap;
4071
- -ms-flex-wrap: wrap;
4072
- flex-wrap: wrap;
4073
- width: 100%; }
4074
-
4075
- .premium-person-style1 .premium-person-container {
4076
- overflow: hidden; }
4077
- .premium-person-style1 .premium-person-container .premium-person-info {
4078
- position: absolute;
4079
- top: auto;
4080
- right: 0;
4081
- left: 0;
4082
- -webkit-transition: all 500ms ease 0s;
4083
- transition: all 500ms ease 0s;
4084
- -webkit-transform: translate3d(0, 100%, 0);
4085
- transform: translate3d(0, 100%, 0); }
4086
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
4087
- -webkit-transform: translate3d(0, 0, 0);
4088
- transform: translate3d(0, 0, 0);
4089
- bottom: -1px !important; }
4090
-
4091
- .premium-person-style1 .premium-person-social-list li:hover {
4092
- bottom: 5px; }
4093
-
4094
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4095
- -webkit-box-align: start;
4096
- -webkit-align-items: flex-start;
4097
- -moz-box-align: start;
4098
- -ms-flex-align: start;
4099
- align-items: flex-start; }
4100
-
4101
- .premium-person-style1 .slick-track {
4102
- -js-display: flex;
4103
- display: -webkit-box;
4104
- display: -webkit-flex;
4105
- display: -moz-box;
4106
- display: -ms-flexbox;
4107
- display: flex; }
4108
-
4109
- .premium-person-style1 .slick-slide {
4110
- height: inherit !important; }
4111
-
4112
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
4113
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
4114
- height: 100%; }
4115
-
4116
- .premium-person-style3 .premium-person-info-container {
4117
- position: absolute;
4118
- top: 0;
4119
- left: 0;
4120
- width: 100%;
4121
- height: 100%;
4122
- -js-display: flex;
4123
- display: -webkit-box;
4124
- display: -webkit-flex;
4125
- display: -moz-box;
4126
- display: -ms-flexbox;
4127
- display: flex;
4128
- -webkit-box-orient: vertical;
4129
- -webkit-box-direction: normal;
4130
- -webkit-flex-direction: column;
4131
- -moz-box-orient: vertical;
4132
- -moz-box-direction: normal;
4133
- -ms-flex-direction: column;
4134
- flex-direction: column;
4135
- -webkit-box-pack: justify;
4136
- -webkit-justify-content: space-between;
4137
- -moz-box-pack: justify;
4138
- -ms-flex-pack: justify;
4139
- justify-content: space-between; }
4140
-
4141
- .premium-person-style3 .premium-person-title-desc-wrap {
4142
- -js-display: flex;
4143
- display: -webkit-box;
4144
- display: -webkit-flex;
4145
- display: -moz-box;
4146
- display: -ms-flexbox;
4147
- display: flex;
4148
- -webkit-box-orient: horizontal;
4149
- -webkit-box-direction: reverse;
4150
- -webkit-flex-direction: row-reverse;
4151
- -moz-box-orient: horizontal;
4152
- -moz-box-direction: reverse;
4153
- -ms-flex-direction: row-reverse;
4154
- flex-direction: row-reverse;
4155
- -webkit-box-pack: justify;
4156
- -webkit-justify-content: space-between;
4157
- -moz-box-pack: justify;
4158
- -ms-flex-pack: justify;
4159
- justify-content: space-between;
4160
- -webkit-box-align: start;
4161
- -webkit-align-items: flex-start;
4162
- -moz-box-align: start;
4163
- -ms-flex-align: start;
4164
- align-items: flex-start; }
4165
-
4166
- .premium-person-style3 .premium-person-name-icons-wrap {
4167
- -js-display: flex;
4168
- display: -webkit-box;
4169
- display: -webkit-flex;
4170
- display: -moz-box;
4171
- display: -ms-flexbox;
4172
- display: flex;
4173
- -webkit-box-pack: justify;
4174
- -webkit-justify-content: space-between;
4175
- -moz-box-pack: justify;
4176
- -ms-flex-pack: justify;
4177
- justify-content: space-between;
4178
- -webkit-box-align: end;
4179
- -webkit-align-items: flex-end;
4180
- -moz-box-align: end;
4181
- -ms-flex-align: end;
4182
- align-items: flex-end; }
4183
-
4184
- .premium-person-style3 .premium-person-title {
4185
- opacity: 0;
4186
- -webkit-transition: all 0.3s ease;
4187
- transition: all 0.3s ease;
4188
- width: 0; }
4189
- .premium-person-style3 .premium-person-title span {
4190
- display: inline-block; }
4191
-
4192
- .premium-person-style3 .premium-person-name {
4193
- padding-left: 10px; }
4194
-
4195
- .premium-person-style3 .premium-person-social-list {
4196
- -js-display: flex;
4197
- display: -webkit-box;
4198
- display: -webkit-flex;
4199
- display: -moz-box;
4200
- display: -ms-flexbox;
4201
- display: flex;
4202
- -webkit-box-orient: vertical;
4203
- -webkit-box-direction: normal;
4204
- -webkit-flex-direction: column;
4205
- -moz-box-orient: vertical;
4206
- -moz-box-direction: normal;
4207
- -ms-flex-direction: column;
4208
- flex-direction: column;
4209
- -webkit-transform: translateY(20px);
4210
- -ms-transform: translateY(20px);
4211
- transform: translateY(20px);
4212
- opacity: 0;
4213
- -webkit-transition: all 0.3s ease;
4214
- transition: all 0.3s ease; }
4215
-
4216
- .premium-person-style3 .premium-person-list-item {
4217
- line-height: 0; }
4218
- .premium-person-style3 .premium-person-list-item a {
4219
- padding: 5px 10px 0 0;
4220
- margin: 5px 0; }
4221
-
4222
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
4223
- opacity: 1; }
4224
-
4225
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
4226
- opacity: 1;
4227
- -webkit-transform: translateY(0);
4228
- -ms-transform: translateY(0);
4229
- transform: translateY(0); }
4230
-
4231
- .premium-persons-title-cw .premium-person-title {
4232
- -webkit-transform: translateX(15px) rotate(90deg);
4233
- -ms-transform: translateX(15px) rotate(90deg);
4234
- transform: translateX(15px) rotate(90deg);
4235
- -webkit-transform-origin: top;
4236
- -ms-transform-origin: top;
4237
- transform-origin: top; }
4238
-
4239
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
4240
- -webkit-transform: translateX(0) rotate(90deg);
4241
- -ms-transform: translateX(0) rotate(90deg);
4242
- transform: translateX(0) rotate(90deg); }
4243
-
4244
- .premium-persons-title-ccw .premium-person-title {
4245
- width: auto;
4246
- margin-right: 20px;
4247
- -webkit-transform: translateX(15px) rotate(-90deg);
4248
- -ms-transform: translateX(15px) rotate(-90deg);
4249
- transform: translateX(15px) rotate(-90deg);
4250
- -webkit-transform-origin: center right;
4251
- -ms-transform-origin: center right;
4252
- transform-origin: center right; }
4253
-
4254
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
4255
- -webkit-transform: translateX(0) rotate(-90deg);
4256
- -ms-transform: translateX(0) rotate(-90deg);
4257
- transform: translateX(0) rotate(-90deg); }
4258
-
4259
- /**************** Premium Fancy Text *******************/
4260
- /*******************************************************/
4261
- .premium-suffix-text,
4262
- .premium-fancy-text,
4263
- .premium-prefix-text {
4264
- font-size: 40px; }
4265
-
4266
- .premium-fancy-text-wrapper .premium-fancy-list-items {
4267
- list-style: none; }
4268
-
4269
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
4270
- vertical-align: top; }
4271
-
4272
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
4273
- margin: 0;
4274
- padding: 0;
4275
- border: none;
4276
- position: relative; }
4277
-
4278
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
4279
- position: absolute;
4280
- top: 0;
4281
- left: 0;
4282
- display: inline-block; }
4283
-
4284
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
4285
- opacity: 0;
4286
- -webkit-animation: pa-zoom-out 0.8s;
4287
- animation: pa-zoom-out 0.8s; }
4288
-
4289
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
4290
- position: relative !important;
4291
- -webkit-animation: pa-zoom-in 0.8s;
4292
- animation: pa-zoom-in 0.8s; }
4293
-
4294
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
4295
- -webkit-perspective: 300px;
4296
- perspective: 300px; }
4297
-
4298
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
4299
- -webkit-transform-origin: 50% 100%;
4300
- -ms-transform-origin: 50% 100%;
4301
- transform-origin: 50% 100%; }
4302
-
4303
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
4304
- opacity: 0;
4305
- -webkit-transform: rotateX(180deg);
4306
- transform: rotateX(180deg);
4307
- -webkit-animation: pa-rotate-out 1.2s;
4308
- animation: pa-rotate-out 1.2s; }
4309
-
4310
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
4311
- position: relative !important;
4312
- -webkit-transform: rotateX(0deg);
4313
- transform: rotateX(0deg);
4314
- -webkit-animation: pa-rotate-in 1.2s;
4315
- animation: pa-rotate-in 1.2s; }
4316
-
4317
- .premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
4318
- opacity: 0; }
4319
-
4320
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
4321
- position: relative !important; }
4322
-
4323
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
4324
- display: inline-block;
4325
- width: 200px;
4326
- font-weight: 400; }
4327
-
4328
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
4329
- position: relative;
4330
- vertical-align: sub; }
4331
-
4332
- .premium-fancy-text-wrapper.auto-fade g > text {
4333
- text-anchor: start;
4334
- shape-rendering: crispEdges;
4335
- opacity: 0;
4336
- font-size: 300px;
4337
- -webkit-animation-name: pa-auto-fade;
4338
- animation-name: pa-auto-fade;
4339
- -moz-animation-name: pa-auto-fade;
4340
- -webkit-animation-duration: 9s;
4341
- animation-duration: 9s;
4342
- -webkit-animation-timing-function: linear;
4343
- animation-timing-function: linear;
4344
- -webkit-animation-iteration-count: infinite;
4345
- animation-iteration-count: infinite; }
4346
-
4347
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
4348
- -webkit-animation-delay: 0s;
4349
- animation-delay: 0s; }
4350
-
4351
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
4352
- -webkit-animation-delay: 3s;
4353
- animation-delay: 3s; }
4354
-
4355
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
4356
- -webkit-animation-delay: 6s;
4357
- animation-delay: 6s; }
4358
-
4359
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
4360
- position: relative; }
4361
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
4362
- position: absolute;
4363
- width: 100%;
4364
- height: 3px;
4365
- bottom: 0;
4366
- left: 0;
4367
- animation: pa-loading-bar 2.5s ease-out infinite;
4368
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
4369
-
4370
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
4371
- -webkit-animation-play-state: paused;
4372
- animation-play-state: paused; }
4373
-
4374
- @-webkit-keyframes pa-auto-fade {
4375
- 0% {
4376
- opacity: 0; }
4377
- 20% {
4378
- opacity: 1; }
4379
- 35% {
4380
- opacity: 0; }
4381
- 100% {
4382
- opacity: 0; } }
4383
-
4384
- @keyframes pa-auto-fade {
4385
- 0% {
4386
- opacity: 0; }
4387
- 20% {
4388
- opacity: 1; }
4389
- 35% {
4390
- opacity: 0; }
4391
- 100% {
4392
- opacity: 0; } }
4393
-
4394
- @-webkit-keyframes pa-loading-bar {
4395
- 0% {
4396
- width: 0; }
4397
- 100% {
4398
- width: 100; } }
4399
-
4400
- @keyframes pa-loading-bar {
4401
- 0% {
4402
- width: 0; }
4403
- 100% {
4404
- width: 100; } }
4405
-
4406
- @-webkit-keyframes pa-zoom-in {
4407
- 0% {
4408
- opacity: 0;
4409
- -webkit-transform: translateZ(100px);
4410
- transform: translateZ(100px); }
4411
- 100% {
4412
- opacity: 1;
4413
- -webkit-transform: translateZ(0);
4414
- transform: translateZ(0); } }
4415
-
4416
- @keyframes pa-zoom-in {
4417
- 0% {
4418
- opacity: 0;
4419
- -webkit-transform: translateZ(100px);
4420
- transform: translateZ(100px); }
4421
- 100% {
4422
- opacity: 1;
4423
- -webkit-transform: translateZ(0);
4424
- transform: translateZ(0); } }
4425
-
4426
- @-webkit-keyframes pa-zoom-out {
4427
- 0% {
4428
- opacity: 1;
4429
- -webkit-transform: translateZ(0);
4430
- transform: translateZ(0); }
4431
- 100% {
4432
- opacity: 0;
4433
- -webkit-transform: translateZ(-100px);
4434
- transform: translateZ(-100px); } }
4435
-
4436
- @keyframes pa-zoom-out {
4437
- 0% {
4438
- opacity: 1;
4439
- -webkit-transform: translateZ(0);
4440
- transform: translateZ(0); }
4441
- 100% {
4442
- opacity: 0;
4443
- -webkit-transform: translateZ(-100px);
4444
- transform: translateZ(-100px); } }
4445
-
4446
- @-webkit-keyframes pa-rotate-in {
4447
- 0% {
4448
- opacity: 0;
4449
- -webkit-transform: rotateX(180deg);
4450
- transform: rotateX(180deg); }
4451
- 35% {
4452
- opacity: 0;
4453
- -webkit-transform: rotateX(120deg);
4454
- transform: rotateX(120deg); }
4455
- 65% {
4456
- opacity: 0; }
4457
- 100% {
4458
- opacity: 1;
4459
- -webkit-transform: rotateX(360deg);
4460
- transform: rotateX(360deg); } }
4461
-
4462
- @keyframes pa-rotate-in {
4463
- 0% {
4464
- opacity: 0;
4465
- -webkit-transform: rotateX(180deg);
4466
- transform: rotateX(180deg); }
4467
- 35% {
4468
- opacity: 0;
4469
- -webkit-transform: rotateX(120deg);
4470
- transform: rotateX(120deg); }
4471
- 65% {
4472
- opacity: 0; }
4473
- 100% {
4474
- opacity: 1;
4475
- -webkit-transform: rotateX(360deg);
4476
- transform: rotateX(360deg); } }
4477
-
4478
- @-webkit-keyframes pa-rotate-out {
4479
- 0% {
4480
- opacity: 1;
4481
- -webkit-transform: rotateX(0deg);
4482
- transform: rotateX(0deg); }
4483
- 35% {
4484
- opacity: 1;
4485
- -webkit-transform: rotateX(-40deg);
4486
- transform: rotateX(-40deg); }
4487
- 65% {
4488
- opacity: 0; }
4489
- 100% {
4490
- opacity: 0;
4491
- -webkit-transform: rotateX(180deg);
4492
- transform: rotateX(180deg); } }
4493
-
4494
- @keyframes pa-rotate-out {
4495
- 0% {
4496
- opacity: 1;
4497
- -webkit-transform: rotateX(0deg);
4498
- transform: rotateX(0deg); }
4499
- 35% {
4500
- opacity: 1;
4501
- -webkit-transform: rotateX(-40deg);
4502
- transform: rotateX(-40deg); }
4503
- 65% {
4504
- opacity: 0; }
4505
- 100% {
4506
- opacity: 0;
4507
- -webkit-transform: rotateX(180deg);
4508
- transform: rotateX(180deg); } }
4509
-
4510
- /**************** Premium Pricing Table ****************/
4511
- /*******************************************************/
4512
- .premium-pricing-table-container {
4513
- position: relative;
4514
- overflow: hidden;
4515
- text-align: center;
4516
- -webkit-transition: all 0.3s ease-in-out;
4517
- transition: all 0.3s ease-in-out; }
4518
-
4519
- .premium-pricing-icon-container {
4520
- -js-display: flex;
4521
- display: -webkit-box;
4522
- display: -webkit-flex;
4523
- display: -moz-box;
4524
- display: -ms-flexbox;
4525
- display: flex;
4526
- -webkit-box-pack: center;
4527
- -webkit-justify-content: center;
4528
- -moz-box-pack: center;
4529
- -ms-flex-pack: center;
4530
- justify-content: center;
4531
- line-height: 0; }
4532
- .premium-pricing-icon-container .premium-pricing-icon {
4533
- display: inline-block; }
4534
- .premium-pricing-icon-container .premium-pricing-image {
4535
- overflow: hidden; }
4536
- .premium-pricing-icon-container .premium-pricing-image img {
4537
- width: 25px;
4538
- height: 25px;
4539
- -o-object-fit: cover;
4540
- object-fit: cover; }
4541
-
4542
- .premium-badge-left {
4543
- position: absolute;
4544
- top: 0; }
4545
-
4546
- .premium-badge-right {
4547
- position: absolute;
4548
- top: 0;
4549
- right: 0; }
4550
-
4551
- .premium-badge-left {
4552
- left: 0; }
4553
-
4554
- .premium-badge-triangle.premium-badge-left .corner {
4555
- width: 0;
4556
- height: 0;
4557
- border-top: 150px solid;
4558
- border-bottom: 150px solid transparent;
4559
- border-right: 150px solid transparent; }
4560
-
4561
- .premium-badge-triangle.premium-badge-right .corner {
4562
- width: 0;
4563
- height: 0;
4564
- border-bottom: 150px solid transparent;
4565
- border-right: 150px solid;
4566
- border-left: 150px solid transparent; }
4567
-
4568
- .premium-badge-triangle span {
4569
- position: absolute;
4570
- top: 35px;
4571
- width: 100px;
4572
- text-align: center;
4573
- -webkit-transform: rotate(-45deg);
4574
- -ms-transform: rotate(-45deg);
4575
- transform: rotate(-45deg);
4576
- display: block;
4577
- text-transform: uppercase; }
4578
-
4579
- .premium-badge-triangle.premium-badge-right span {
4580
- -webkit-transform: rotate(45deg);
4581
- -ms-transform: rotate(45deg);
4582
- transform: rotate(45deg);
4583
- right: 0; }
4584
-
4585
- .premium-badge-circle {
4586
- min-width: 4em;
4587
- min-height: 4em;
4588
- line-height: 4em;
4589
- text-align: center;
4590
- -webkit-border-radius: 100%;
4591
- border-radius: 100%;
4592
- position: absolute;
4593
- z-index: 1; }
4594
-
4595
- .premium-badge-stripe {
4596
- position: absolute;
4597
- -webkit-transform: rotate(90deg);
4598
- -ms-transform: rotate(90deg);
4599
- transform: rotate(90deg);
4600
- width: 15em;
4601
- overflow: hidden;
4602
- height: 15em; }
4603
- .premium-badge-stripe.premium-badge-left {
4604
- -webkit-transform: rotate(0);
4605
- -ms-transform: rotate(0);
4606
- transform: rotate(0); }
4607
- .premium-badge-stripe .corner {
4608
- text-align: center;
4609
- left: 0;
4610
- width: 150%;
4611
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4612
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4613
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4614
- margin-top: 35px;
4615
- font-size: 13px;
4616
- line-height: 2;
4617
- font-weight: 800;
4618
- text-transform: uppercase; }
4619
-
4620
- .premium-badge-flag .corner {
4621
- text-align: center;
4622
- -webkit-border-radius: 4px 4px 0 4px;
4623
- border-radius: 4px 4px 0 4px;
4624
- padding: 3px 15px;
4625
- position: absolute;
4626
- top: 10%;
4627
- right: -8px; }
4628
- .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
4629
- content: "";
4630
- display: block;
4631
- position: absolute;
4632
- width: 0;
4633
- height: 0;
4634
- top: 100%;
4635
- right: 0;
4636
- border-bottom: 8px solid transparent; }
4637
-
4638
- .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
4639
- overflow: visible !important; }
4640
-
4641
- .premium-badge-flag .corner::after {
4642
- border-left: 8px solid rgba(0, 0, 0, 0.2); }
4643
-
4644
- .premium-pricing-price-currency {
4645
- position: relative; }
4646
-
4647
- .premium-pricing-button-container {
4648
- display: block; }
4649
-
4650
- .premium-pricing-list {
4651
- -js-display: flex;
4652
- display: -webkit-box;
4653
- display: -webkit-flex;
4654
- display: -moz-box;
4655
- display: -ms-flexbox;
4656
- display: flex;
4657
- -webkit-box-orient: vertical;
4658
- -webkit-box-direction: normal;
4659
- -webkit-flex-direction: column;
4660
- -moz-box-orient: vertical;
4661
- -moz-box-direction: normal;
4662
- -ms-flex-direction: column;
4663
- flex-direction: column;
4664
- list-style-type: none;
4665
- margin: 0; }
4666
- .premium-pricing-list .premium-pricing-list-item {
4667
- -js-display: flex;
4668
- display: -webkit-box;
4669
- display: -webkit-flex;
4670
- display: -moz-box;
4671
- display: -ms-flexbox;
4672
- display: flex;
4673
- -webkit-box-align: center;
4674
- -webkit-align-items: center;
4675
- -moz-box-align: center;
4676
- -ms-flex-align: center;
4677
- align-items: center; }
4678
- .premium-pricing-list .premium-pricing-list-item svg {
4679
- width: 50px;
4680
- height: 50px; }
4681
- .premium-pricing-list .premium-pricing-list-item img {
4682
- width: 30px;
4683
- height: 30px;
4684
- -o-object-fit: cover;
4685
- object-fit: cover; }
4686
- .premium-pricing-list .premium-pricing-list-span {
4687
- position: relative; }
4688
- .premium-pricing-list .list-item-tooltip {
4689
- border-bottom: 1px dotted; }
4690
- .premium-pricing-list .premium-pricing-list-tooltip {
4691
- position: absolute;
4692
- top: -webkit-calc(100% + 1px);
4693
- top: calc(100% + 1px);
4694
- left: 0;
4695
- visibility: hidden;
4696
- padding: 15px 20px;
4697
- -webkit-border-radius: 5px;
4698
- border-radius: 5px;
4699
- min-width: 200px;
4700
- overflow: hidden;
4701
- text-align: left;
4702
- font-size: 0.8rem;
4703
- color: #fff;
4704
- background-color: #aaa; }
4705
-
4706
- .premium-pricing-features-left .premium-pricing-list-span {
4707
- text-align: left; }
4708
-
4709
- .premium-pricing-features-center .premium-pricing-list-span {
4710
- text-align: center; }
4711
-
4712
- .premium-pricing-features-right .premium-pricing-list-span {
4713
- text-align: right; }
4714
-
4715
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
4716
- z-index: 99;
4717
- visibility: visible;
4718
- opacity: 1; }
4719
-
4720
- .premium-pricing-slashed-price-value {
4721
- display: inline-block;
4722
- font-size: 20px;
4723
- font-weight: 400;
4724
- margin-right: 5px; }
4725
-
4726
- .premium-pricing-price-value {
4727
- font-size: 70px; }
4728
-
4729
- .premium-pricing-description-container li {
4730
- list-style-position: inside;
4731
- text-indent: -40px; }
4732
-
4733
- @-moz-document url-prefix() {
4734
- .premium-pricing-description-container li {
4735
- text-indent: 0px; } }
4736
-
4737
- .premium-pricing-price-button {
4738
- display: block;
4739
- padding: 6px 12px;
4740
- line-height: 1.42857143;
4741
- text-align: center;
4742
- color: #fff;
4743
- background: #6ec1e4;
4744
- margin-bottom: 0;
4745
- -webkit-transition: all 0.3s ease-in-out;
4746
- transition: all 0.3s ease-in-out; }
4747
-
4748
- /**************** Premium Google Maps ******************/
4749
- /*******************************************************/
4750
- .premium-maps-info-container {
4751
- margin-top: 10px;
4752
- margin-bottom: 10px; }
4753
-
4754
- .premium-maps-info-title,
4755
- .premium-maps-info-desc {
4756
- margin: 0;
4757
- padding: 0; }
4758
-
4759
- .premium-maps-container .gm-style-iw {
4760
- text-align: center; }
4761
-
4762
- .premium-maps-container .gm-style img {
4763
- max-width: none !important; }
4764
-
4765
- /**************** Premium Button ***********************/
4766
- /*******************************************************/
4767
- .premium-button {
4768
- display: inline-block;
4769
- position: relative;
4770
- overflow: hidden;
4771
- cursor: pointer;
4772
- -webkit-transition: all 0.2s ease-in-out !important;
4773
- transition: all 0.2s ease-in-out !important; }
4774
-
4775
- .premium-button-sm {
4776
- padding: 12px 24px;
4777
- font-size: 14px;
4778
- line-height: 1; }
4779
-
4780
- .premium-button .premium-lottie-animation,
4781
- .premium-image-button .premium-lottie-animation {
4782
- -js-display: flex;
4783
- display: -webkit-box;
4784
- display: -webkit-flex;
4785
- display: -moz-box;
4786
- display: -ms-flexbox;
4787
- display: flex; }
4788
- .premium-button .premium-lottie-animation svg,
4789
- .premium-image-button .premium-lottie-animation svg {
4790
- width: 50px;
4791
- height: 50px; }
4792
-
4793
- .premium-button-md {
4794
- padding: 14px 26px;
4795
- font-size: 16px;
4796
- line-height: 1.2; }
4797
-
4798
- .premium-button-lg {
4799
- padding: 16px 28px;
4800
- font-size: 18px;
4801
- line-height: 1.3333; }
4802
-
4803
- .premium-button-block {
4804
- font-size: 15px;
4805
- line-height: 1;
4806
- padding: 12px 24px;
4807
- width: 100%;
4808
- text-align: center; }
4809
-
4810
- .premium-button-text {
4811
- display: inline-block;
4812
- width: 100%; }
4813
-
4814
- .premium-button-style1,
4815
- .premium-button-style2,
4816
- .premium-button-style5,
4817
- .premium-button-style7 {
4818
- display: inline-block;
4819
- vertical-align: middle;
4820
- -webkit-transform: perspective(1px) translateZ(0);
4821
- transform: perspective(1px) translateZ(0);
4822
- -webkit-box-shadow: 0 0 1px transparent;
4823
- box-shadow: 0 0 1px transparent;
4824
- position: relative;
4825
- -webkit-transition-property: color;
4826
- transition-property: color;
4827
- -webkit-transition-duration: 0.15s;
4828
- transition-duration: 0.15s; }
4829
-
4830
- .premium-button-style1:before,
4831
- .premium-button-style2:before,
4832
- .premium-button-style5:before {
4833
- content: "";
4834
- position: absolute;
4835
- z-index: -1;
4836
- top: 0;
4837
- left: 0;
4838
- right: 0;
4839
- bottom: 0;
4840
- -webkit-transform: scaleY(0);
4841
- -ms-transform: scaleY(0);
4842
- transform: scaleY(0);
4843
- -webkit-transform-origin: 50% 0;
4844
- -ms-transform-origin: 50% 0;
4845
- transform-origin: 50% 0;
4846
- -webkit-transition-property: -webkit-transform;
4847
- transition-property: -webkit-transform;
4848
- transition-property: transform;
4849
- transition-property: transform, -webkit-transform;
4850
- -webkit-transition-duration: 0.15s;
4851
- transition-duration: 0.15s;
4852
- -webkit-transition-timing-function: ease-out;
4853
- transition-timing-function: ease-out; }
4854
-
4855
- .premium-button-style5-radialin:before,
4856
- .premium-button-style5-radialout:before {
4857
- -webkit-transform-origin: 50%;
4858
- -ms-transform-origin: 50%;
4859
- transform-origin: 50%;
4860
- -webkit-border-radius: 100%;
4861
- border-radius: 100%;
4862
- -webkit-transform: scale(0);
4863
- -ms-transform: scale(0);
4864
- transform: scale(0); }
4865
-
4866
- .premium-button-style5-radialin:before {
4867
- -webkit-transform: scale(2);
4868
- -ms-transform: scale(2);
4869
- transform: scale(2); }
4870
-
4871
- .premium-button-style5-rectin:before {
4872
- -webkit-transform-origin: 50%;
4873
- -ms-transform-origin: 50%;
4874
- transform-origin: 50%;
4875
- -webkit-transform: scale(1);
4876
- -ms-transform: scale(1);
4877
- transform: scale(1); }
4878
-
4879
- .premium-button-style5-rectout:before {
4880
- -webkit-transform-origin: 50%;
4881
- -ms-transform-origin: 50%;
4882
- transform-origin: 50%;
4883
- -webkit-transform: scale(0);
4884
- -ms-transform: scale(0);
4885
- transform: scale(0); }
4886
-
4887
- .premium-button-style5-rectout:hover:before {
4888
- -webkit-transform: scale(1);
4889
- -ms-transform: scale(1);
4890
- transform: scale(1); }
4891
-
4892
- .premium-button-style5-rectin:hover:before {
4893
- -webkit-transform: scale(0);
4894
- -ms-transform: scale(0);
4895
- transform: scale(0); }
4896
-
4897
- .premium-button-style5-radialout:hover:before {
4898
- -webkit-transform: scale(2);
4899
- -ms-transform: scale(2);
4900
- transform: scale(2); }
4901
-
4902
- .premium-button-style5-radialin:hover:before {
4903
- -webkit-transform: scale(0);
4904
- -ms-transform: scale(0);
4905
- transform: scale(0); }
4906
-
4907
- .premium-button-style1-top:before {
4908
- -webkit-transform-origin: 50% 100%;
4909
- -ms-transform-origin: 50% 100%;
4910
- transform-origin: 50% 100%; }
4911
-
4912
- .premium-button-style1-right:before {
4913
- -webkit-transform: scaleX(0);
4914
- -ms-transform: scaleX(0);
4915
- transform: scaleX(0);
4916
- -webkit-transform-origin: 0% 50%;
4917
- -ms-transform-origin: 0% 50%;
4918
- transform-origin: 0% 50%; }
4919
-
4920
- .premium-button-style1-left:before {
4921
- -webkit-transform: scaleX(0);
4922
- -ms-transform: scaleX(0);
4923
- transform: scaleX(0);
4924
- -webkit-transform-origin: 100% 50%;
4925
- -ms-transform-origin: 100% 50%;
4926
- transform-origin: 100% 50%; }
4927
-
4928
- .premium-button-style2-shutouthor:before,
4929
- .premium-button-style2-scshutoutver:before {
4930
- -webkit-transform: scaleY(0);
4931
- -ms-transform: scaleY(0);
4932
- transform: scaleY(0);
4933
- -webkit-transform-origin: 100% 50%;
4934
- -ms-transform-origin: 100% 50%;
4935
- transform-origin: 100% 50%; }
4936
-
4937
- .premium-button-style2-shutoutver:before,
4938
- .premium-button-style2-scshutouthor:before {
4939
- -webkit-transform: scaleX(0);
4940
- -ms-transform: scaleX(0);
4941
- transform: scaleX(0);
4942
- -webkit-transform-origin: 50% 50%;
4943
- -ms-transform-origin: 50% 50%;
4944
- transform-origin: 50% 50%; }
4945
-
4946
- .premium-button-style2-shutinhor:before {
4947
- -webkit-transform: scaleX(1);
4948
- -ms-transform: scaleX(1);
4949
- transform: scaleX(1);
4950
- -webkit-transform-origin: 50%;
4951
- -ms-transform-origin: 50%;
4952
- transform-origin: 50%; }
4953
-
4954
- .premium-button-style2-shutinver:before {
4955
- -webkit-transform: scaleY(1);
4956
- -ms-transform: scaleY(1);
4957
- transform: scaleY(1);
4958
- -webkit-transform-origin: 50%;
4959
- -ms-transform-origin: 50%;
4960
- transform-origin: 50%; }
4961
-
4962
- .premium-button-style1-bottom:hover:before,
4963
- .premium-button-style1-top:hover:before {
4964
- -webkit-transform: scaleY(1);
4965
- -ms-transform: scaleY(1);
4966
- transform: scaleY(1); }
4967
-
4968
- .premium-button-style1-left:hover:before,
4969
- .premium-button-style1-right:hover:before,
4970
- .premium-button-style2-shutouthor:hover:before,
4971
- .premium-button-style2-shutoutver:hover:before {
4972
- -webkit-transform: scaleX(1);
4973
- -ms-transform: scaleX(1);
4974
- transform: scaleX(1); }
4975
-
4976
- .premium-button-style2-shutinhor:hover:before {
4977
- -webkit-transform: scaleX(0);
4978
- -ms-transform: scaleX(0);
4979
- transform: scaleX(0); }
4980
-
4981
- .premium-button-style2-shutinver:hover:before {
4982
- -webkit-transform: scaleY(0);
4983
- -ms-transform: scaleY(0);
4984
- transform: scaleY(0); }
4985
-
4986
- .premium-button-style2-scshutouthor:hover:before {
4987
- -webkit-transform: scaleX(0.9);
4988
- -ms-transform: scaleX(0.9);
4989
- transform: scaleX(0.9); }
4990
-
4991
- .premium-button-style2-scshutoutver:hover:before {
4992
- -webkit-transform: scaleY(0.8);
4993
- -ms-transform: scaleY(0.8);
4994
- transform: scaleY(0.8); }
4995
-
4996
- /*Diagonal*/
4997
- .premium-button-style2-dshutinhor:before {
4998
- top: 50%;
4999
- left: 50%;
5000
- width: 120%;
5001
- height: 0%;
5002
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5003
- -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5004
- transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5005
- -webkit-transform-origin: 50%;
5006
- -ms-transform-origin: 50%;
5007
- transform-origin: 50%;
5008
- -webkit-transition-property: all;
5009
- transition-property: all; }
5010
-
5011
- .premium-button-style2-dshutinver:before {
5012
- top: 50%;
5013
- left: 50%;
5014
- width: 120%;
5015
- height: 0%;
5016
- -webkit-transform-origin: 50%;
5017
- -ms-transform-origin: 50%;
5018
- transform-origin: 50%;
5019
- -webkit-transition-property: all;
5020
- transition-property: all;
5021
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5022
- -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5023
- transform: translateX(-50%) translateY(-50%) rotate(45deg); }
5024
-
5025
- .premium-button-style2-dshutinhor:hover:before,
5026
- .premium-button-style2-dshutinver:hover:before {
5027
- height: 220%; }
5028
-
5029
- .premium-button-style3-before i,
5030
- .premium-button-style3-before svg {
5031
- opacity: 0;
5032
- -webkit-transform: translateX(-5px);
5033
- -ms-transform: translateX(-5px);
5034
- transform: translateX(-5px);
5035
- -webkit-transition: all 0.5s ease-in-out;
5036
- transition: all 0.5s ease-in-out; }
5037
-
5038
- .premium-button-style3-after i,
5039
- .premium-button-style3-after svg {
5040
- opacity: 0;
5041
- -webkit-transform: translateX(-5px);
5042
- -ms-transform: translateX(-5px);
5043
- transform: translateX(-5px);
5044
- -webkit-transition: all 0.5s ease-in-out;
5045
- transition: all 0.5s ease-in-out;
5046
- -webkit-transform: translateX(5px);
5047
- -ms-transform: translateX(5px);
5048
- transform: translateX(5px); }
5049
-
5050
- .premium-button-style3-after:hover i,
5051
- .premium-button-style3-after:hover svg {
5052
- opacity: 1; }
5053
-
5054
- .premium-button-style3-before:hover i,
5055
- .premium-button-style3-before:hover svg {
5056
- opacity: 1; }
5057
-
5058
- .premium-button-text-icon-wrapper {
5059
- -js-display: flex;
5060
- display: -webkit-box;
5061
- display: -webkit-flex;
5062
- display: -moz-box;
5063
- display: -ms-flexbox;
5064
- display: flex;
5065
- -webkit-box-pack: center;
5066
- -webkit-justify-content: center;
5067
- -moz-box-pack: center;
5068
- -ms-flex-pack: center;
5069
- justify-content: center;
5070
- -webkit-box-align: center;
5071
- -webkit-align-items: center;
5072
- -moz-box-align: center;
5073
- -ms-flex-align: center;
5074
- align-items: center;
5075
- -webkit-transition: all 0.2s ease-in-out;
5076
- transition: all 0.2s ease-in-out; }
5077
- .premium-button-text-icon-wrapper span,
5078
- .premium-button-text-icon-wrapper i,
5079
- .premium-button-text-icon-wrapper svg {
5080
- -webkit-transition: all 0.2s ease-in-out;
5081
- transition: all 0.2s ease-in-out; }
5082
-
5083
- .premium-button-style4-icon-wrapper {
5084
- position: absolute;
5085
- z-index: 2;
5086
- width: 100%;
5087
- text-align: center;
5088
- -js-display: flex;
5089
- display: -webkit-box;
5090
- display: -webkit-flex;
5091
- display: -moz-box;
5092
- display: -ms-flexbox;
5093
- display: flex;
5094
- -webkit-box-align: center;
5095
- -webkit-align-items: center;
5096
- -moz-box-align: center;
5097
- -ms-flex-align: center;
5098
- align-items: center;
5099
- -webkit-box-pack: center;
5100
- -webkit-justify-content: center;
5101
- -moz-box-pack: center;
5102
- -ms-flex-pack: center;
5103
- justify-content: center;
5104
- height: 100%;
5105
- opacity: 0;
5106
- -webkit-transition: all 0.3s ease-in-out;
5107
- transition: all 0.3s ease-in-out; }
5108
- .premium-button-style4-icon-wrapper.top {
5109
- bottom: -100%;
5110
- left: 0; }
5111
- .premium-button-style4-icon-wrapper.bottom {
5112
- top: -100%;
5113
- left: 0; }
5114
- .premium-button-style4-icon-wrapper.left {
5115
- top: 0;
5116
- left: -100%; }
5117
- .premium-button-style4-icon-wrapper.right {
5118
- top: 0;
5119
- right: -100%; }
5120
-
5121
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
5122
- top: 0;
5123
- opacity: 1; }
5124
-
5125
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
5126
- bottom: 0;
5127
- opacity: 1; }
5128
-
5129
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
5130
- left: 0;
5131
- opacity: 1; }
5132
-
5133
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
5134
- right: 0;
5135
- opacity: 1; }
5136
-
5137
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
5138
- -webkit-transform: translateY(100%);
5139
- -ms-transform: translateY(100%);
5140
- transform: translateY(100%);
5141
- opacity: 0; }
5142
-
5143
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
5144
- -webkit-transform: translateY(-100%);
5145
- -ms-transform: translateY(-100%);
5146
- transform: translateY(-100%);
5147
- opacity: 0; }
5148
-
5149
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
5150
- -webkit-transform: translateX(100%);
5151
- -ms-transform: translateX(100%);
5152
- transform: translateX(100%);
5153
- opacity: 0; }
5154
-
5155
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
5156
- -webkit-transform: translateX(-100%);
5157
- -ms-transform: translateX(-100%);
5158
- transform: translateX(-100%);
5159
- opacity: 0; }
5160
-
5161
- .premium-button-style6:before {
5162
- content: "";
5163
- position: absolute;
5164
- left: 50%;
5165
- top: 50%;
5166
- width: 100px;
5167
- height: 100px;
5168
- -webkit-border-radius: 100%;
5169
- border-radius: 100%;
5170
- -webkit-transform: translate(-50%, -50%) scale(0);
5171
- -ms-transform: translate(-50%, -50%) scale(0);
5172
- transform: translate(-50%, -50%) scale(0);
5173
- -webkit-transition: all 0.3s ease-in-out;
5174
- transition: all 0.3s ease-in-out; }
5175
-
5176
- .premium-button-style6:hover:before {
5177
- -webkit-transform: translate(-50%, -50%) scale(3);
5178
- -ms-transform: translate(-50%, -50%) scale(3);
5179
- transform: translate(-50%, -50%) scale(3); }
5180
-
5181
- .premium-button-style6 .premium-button-text-icon-wrapper {
5182
- position: relative;
5183
- z-index: 1; }
5184
-
5185
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
5186
- position: absolute;
5187
- z-index: 0;
5188
- top: 0;
5189
- left: 0;
5190
- width: 0px;
5191
- height: 0px;
5192
- -webkit-border-radius: 50%;
5193
- border-radius: 50%;
5194
- display: block;
5195
- -webkit-transform: translate(-50%, -50%);
5196
- -ms-transform: translate(-50%, -50%);
5197
- transform: translate(-50%, -50%);
5198
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
5199
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
5200
-
5201
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
5202
- width: 225%;
5203
- height: 560px; }
5204
-
5205
- .premium-mouse-detect-yes .premium-button-style6:before {
5206
- width: 0;
5207
- height: 0; }
5208
-
5209
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
5210
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5211
- -webkit-transition: width 0.3s ease-out 0.15s;
5212
- transition: width 0.3s ease-out 0.15s; }
5213
-
5214
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5215
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
5216
- -webkit-transition: width 0.3s ease-out 0s;
5217
- transition: width 0.3s ease-out 0s; }
5218
-
5219
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5220
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5221
- -webkit-transition: height 0.3s ease-out 0.15s;
5222
- transition: height 0.3s ease-out 0.15s; }
5223
-
5224
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
5225
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
5226
- -webkit-transition: height 0.3s ease-out 0s;
5227
- transition: height 0.3s ease-out 0s; }
5228
-
5229
- .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
5230
- -webkit-transition-delay: 0s;
5231
- transition-delay: 0s; }
5232
-
5233
- .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
5234
- -webkit-transition-delay: 0.15s;
5235
- transition-delay: 0.15s; }
5236
-
5237
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5238
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
5239
- content: "";
5240
- position: absolute;
5241
- right: 0;
5242
- top: 0;
5243
- left: 0;
5244
- height: 0;
5245
- z-index: -1; }
5246
-
5247
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
5248
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5249
- content: "";
5250
- position: absolute;
5251
- right: 0;
5252
- bottom: 0;
5253
- left: 0;
5254
- height: 0;
5255
- z-index: -1; }
5256
-
5257
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5258
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
5259
- content: "";
5260
- position: absolute;
5261
- right: 0;
5262
- top: 0;
5263
- bottom: 0;
5264
- width: 0;
5265
- z-index: -1; }
5266
-
5267
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
5268
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5269
- content: "";
5270
- position: absolute;
5271
- left: 0;
5272
- top: 0;
5273
- bottom: 0;
5274
- width: 0;
5275
- z-index: -1; }
5276
-
5277
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
5278
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
5279
- height: 100%;
5280
- top: 0; }
5281
-
5282
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
5283
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
5284
- height: 100%;
5285
- bottom: 0; }
5286
-
5287
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
5288
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
5289
- width: 100%;
5290
- left: 0; }
5291
-
5292
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
5293
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
5294
- width: 100%;
5295
- right: 0; }
5296
-
5297
- /**************** Premium Contact Form7 **********/
5298
- /*************************************************/
5299
- .premium-contact-form-anim-yes .wpcf7-span::after {
5300
- display: block;
5301
- height: 2px;
5302
- content: "";
5303
- top: -2px;
5304
- position: relative;
5305
- width: 0px;
5306
- -webkit-transition: all ease-in-out 0.3s;
5307
- transition: all ease-in-out 0.3s; }
5308
-
5309
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
5310
- width: 100%; }
5311
-
5312
- /**************** Premium Image Button ***********/
5313
- /*************************************************/
5314
- .premium-image-button {
5315
- display: inline-block;
5316
- position: relative;
5317
- overflow: hidden;
5318
- background: #6ec1e4;
5319
- cursor: pointer;
5320
- -webkit-transition: all 0.2s ease-in-out !important;
5321
- transition: all 0.2s ease-in-out !important; }
5322
- .premium-image-button:hover {
5323
- background-color: #54595f; }
5324
-
5325
- /*Default background for slide styles*/
5326
- .premium-image-button-style4-icon-wrapper,
5327
- .premium-image-button-style1:before {
5328
- background-color: #54595f; }
5329
-
5330
- .premium-image-button.premium-image-button-sm {
5331
- padding: 12px 24px;
5332
- font-size: 14px;
5333
- line-height: 1; }
5334
-
5335
- .premium-image-button.premium-image-button-md {
5336
- padding: 14px 26px;
5337
- font-size: 16px;
5338
- line-height: 1.2; }
5339
-
5340
- .premium-image-button.premium-image-button-lg {
5341
- padding: 16px 28px;
5342
- font-size: 18px;
5343
- line-height: 1.3333; }
5344
-
5345
- .premium-image-button.premium-image-button-block {
5346
- font-size: 15px;
5347
- line-height: 1;
5348
- padding: 12px 24px;
5349
- width: 100%;
5350
- text-align: center; }
5351
-
5352
- .premium-image-button-text-icon-wrapper {
5353
- -js-display: flex;
5354
- display: -webkit-box;
5355
- display: -webkit-flex;
5356
- display: -moz-box;
5357
- display: -ms-flexbox;
5358
- display: flex;
5359
- -webkit-box-pack: center;
5360
- -webkit-justify-content: center;
5361
- -moz-box-pack: center;
5362
- -ms-flex-pack: center;
5363
- justify-content: center;
5364
- -webkit-box-align: center;
5365
- -webkit-align-items: center;
5366
- -moz-box-align: center;
5367
- -ms-flex-align: center;
5368
- align-items: center;
5369
- position: relative;
5370
- z-index: 3;
5371
- -webkit-transition: all 0.2s ease-in-out;
5372
- transition: all 0.2s ease-in-out; }
5373
- .premium-image-button-text-icon-wrapper span,
5374
- .premium-image-button-text-icon-wrapper i,
5375
- .premium-image-button-text-icon-wrapper svg {
5376
- -webkit-transition: all 0.2s ease-in-out;
5377
- transition: all 0.2s ease-in-out; }
5378
-
5379
- .premium-image-button-style1:before {
5380
- position: absolute;
5381
- content: "";
5382
- -webkit-transition: all 0.2s ease-in-out;
5383
- transition: all 0.2s ease-in-out; }
5384
-
5385
- .premium-image-button-style1-bottom:before {
5386
- width: 100%;
5387
- height: 0;
5388
- top: 0;
5389
- left: 0; }
5390
-
5391
- .premium-image-button-style1-top:before {
5392
- width: 100%;
5393
- height: 0;
5394
- bottom: 0;
5395
- left: 0; }
5396
-
5397
- .premium-image-button-style1-right:before {
5398
- width: 0;
5399
- height: 100%;
5400
- bottom: 0;
5401
- left: 0; }
5402
-
5403
- .premium-image-button-style1-left:before {
5404
- width: 0;
5405
- height: 100%;
5406
- top: 0;
5407
- right: 0; }
5408
-
5409
- .premium-image-button-style1-bottom:hover:before,
5410
- .premium-image-button-style1-top:hover:before {
5411
- height: 100%; }
5412
-
5413
- .premium-image-button-style1-right:hover:before,
5414
- .premium-image-button-style1-left:hover:before {
5415
- width: 100%; }
5416
-
5417
- .premium-image-button-style3 {
5418
- z-index: 10; }
5419
- .premium-image-button-style3:before {
5420
- position: absolute;
5421
- top: 0px;
5422
- left: 0px;
5423
- width: 100%;
5424
- height: 100%;
5425
- content: "";
5426
- z-index: 1;
5427
- background: rgba(255, 255, 255, 0.2);
5428
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5429
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5430
- -webkit-transition: all 0.8s ease-out;
5431
- transition: all 0.8s ease-out; }
5432
-
5433
- .premium-image-button-diagonal-right:before {
5434
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5435
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5436
-
5437
- .premium-image-button-diagonal-right:hover:before {
5438
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5439
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5440
-
5441
- .premium-image-button-diagonal-left:before {
5442
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5443
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5444
-
5445
- .premium-image-button-diagonal-left:hover:before {
5446
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5447
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5448
-
5449
- .premium-image-button-diagonal-bottom:before {
5450
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5451
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5452
-
5453
- .premium-image-button-diagonal-bottom:hover:before {
5454
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5455
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5456
-
5457
- .premium-image-button-diagonal-top:before {
5458
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5459
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5460
-
5461
- .premium-image-button-diagonal-top:hover:before {
5462
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5463
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5464
-
5465
- .premium-image-button-style4-icon-wrapper {
5466
- position: absolute;
5467
- z-index: 2;
5468
- width: 100%;
5469
- text-align: center;
5470
- -js-display: flex;
5471
- display: -webkit-box;
5472
- display: -webkit-flex;
5473
- display: -moz-box;
5474
- display: -ms-flexbox;
5475
- display: flex;
5476
- -webkit-box-align: center;
5477
- -webkit-align-items: center;
5478
- -moz-box-align: center;
5479
- -ms-flex-align: center;
5480
- align-items: center;
5481
- -webkit-box-pack: center;
5482
- -webkit-justify-content: center;
5483
- -moz-box-pack: center;
5484
- -ms-flex-pack: center;
5485
- justify-content: center;
5486
- height: 100%;
5487
- opacity: 0;
5488
- -webkit-transition: all 0.3s ease-in-out;
5489
- transition: all 0.3s ease-in-out; }
5490
- .premium-image-button-style4-icon-wrapper.top {
5491
- bottom: -100%;
5492
- left: 0; }
5493
- .premium-image-button-style4-icon-wrapper.bottom {
5494
- top: -100%;
5495
- left: 0; }
5496
- .premium-image-button-style4-icon-wrapper.left {
5497
- top: 0;
5498
- left: -100%; }
5499
- .premium-image-button-style4-icon-wrapper.right {
5500
- top: 0;
5501
- right: -100%; }
5502
-
5503
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
5504
- top: 0;
5505
- opacity: 1; }
5506
-
5507
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
5508
- -webkit-transform: translateY(100%);
5509
- -ms-transform: translateY(100%);
5510
- transform: translateY(100%);
5511
- opacity: 0; }
5512
-
5513
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
5514
- bottom: 0;
5515
- opacity: 1; }
5516
-
5517
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
5518
- -webkit-transform: translateY(-100%);
5519
- -ms-transform: translateY(-100%);
5520
- transform: translateY(-100%);
5521
- opacity: 0; }
5522
-
5523
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
5524
- left: 0;
5525
- opacity: 1; }
5526
-
5527
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
5528
- -webkit-transform: translateX(100%);
5529
- -ms-transform: translateX(100%);
5530
- transform: translateX(100%);
5531
- opacity: 0; }
5532
-
5533
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
5534
- right: 0;
5535
- opacity: 1; }
5536
-
5537
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
5538
- -webkit-transform: translateX(-100%);
5539
- -ms-transform: translateX(-100%);
5540
- transform: translateX(-100%);
5541
- opacity: 0; }
5542
-
5543
- .premium-image-button-style5:before {
5544
- position: absolute;
5545
- content: "";
5546
- top: 0;
5547
- left: 0;
5548
- width: 100%;
5549
- height: 100%;
5550
- opacity: 0;
5551
- -webkit-transition: all 1s ease-in-out;
5552
- transition: all 1s ease-in-out;
5553
- background: rgba(255, 255, 255, 0.2);
5554
- -webkit-animation-name: premium-overlap-effect-done;
5555
- animation-name: premium-overlap-effect-done;
5556
- -webkit-animation-duration: 1s;
5557
- animation-duration: 1s; }
5558
-
5559
- .premium-image-button-overlap-effect-vertical:before {
5560
- -webkit-animation-name: premium-overlap-ver-effect-done;
5561
- animation-name: premium-overlap-ver-effect-done; }
5562
-
5563
- .premium-image-button-overlap-effect-horizontal:hover:before {
5564
- -webkit-animation-name: premium-overlap-effect;
5565
- animation-name: premium-overlap-effect; }
5566
-
5567
- .premium-image-button-overlap-effect-vertical:hover:before {
5568
- -webkit-animation-name: premium-overlap-ver-effect;
5569
- animation-name: premium-overlap-ver-effect; }
5570
-
5571
- @-webkit-keyframes premium-overlap-effect {
5572
- 0% {
5573
- opacity: 0;
5574
- -webkit-transform: rotateY(0deg);
5575
- transform: rotateY(0deg); }
5576
- 50% {
5577
- opacity: 1;
5578
- -webkit-transform: rotateY(180deg);
5579
- transform: rotateY(180deg); }
5580
- 100% {
5581
- opacity: 0;
5582
- -webkit-transform: rotateY(360deg);
5583
- transform: rotateY(360deg); } }
5584
-
5585
- @keyframes premium-overlap-effect {
5586
- 0% {
5587
- opacity: 0;
5588
- -webkit-transform: rotateY(0deg);
5589
- transform: rotateY(0deg); }
5590
- 50% {
5591
- opacity: 1;
5592
- -webkit-transform: rotateY(180deg);
5593
- transform: rotateY(180deg); }
5594
- 100% {
5595
- opacity: 0;
5596
- -webkit-transform: rotateY(360deg);
5597
- transform: rotateY(360deg); } }
5598
-
5599
- @-webkit-keyframes premium-overlap-effect-done {
5600
- 0% {
5601
- opacity: 0;
5602
- -webkit-transform: rotateY(0deg);
5603
- transform: rotateY(0deg); }
5604
- 50% {
5605
- opacity: 1;
5606
- -webkit-transform: rotateY(180deg);
5607
- transform: rotateY(180deg); }
5608
- 100% {
5609
- opacity: 0;
5610
- -webkit-transform: rotateY(360deg);
5611
- transform: rotateY(360deg); } }
5612
-
5613
- @keyframes premium-overlap-effect-done {
5614
- 0% {
5615
- opacity: 0;
5616
- -webkit-transform: rotateY(0deg);
5617
- transform: rotateY(0deg); }
5618
- 50% {
5619
- opacity: 1;
5620
- -webkit-transform: rotateY(180deg);
5621
- transform: rotateY(180deg); }
5622
- 100% {
5623
- opacity: 0;
5624
- -webkit-transform: rotateY(360deg);
5625
- transform: rotateY(360deg); } }
5626
-
5627
- @-webkit-keyframes premium-overlap-ver-effect {
5628
- 0% {
5629
- opacity: 0;
5630
- -webkit-transform: rotateX(0deg);
5631
- transform: rotateX(0deg); }
5632
- 50% {
5633
- opacity: 1;
5634
- -webkit-transform: rotateX(180deg);
5635
- transform: rotateX(180deg); }
5636
- 100% {
5637
- opacity: 0;
5638
- -webkit-transform: rotateX(360deg);
5639
- transform: rotateX(360deg); } }
5640
-
5641
- @keyframes premium-overlap-ver-effect {
5642
- 0% {
5643
- opacity: 0;
5644
- -webkit-transform: rotateX(0deg);
5645
- transform: rotateX(0deg); }
5646
- 50% {
5647
- opacity: 1;
5648
- -webkit-transform: rotateX(180deg);
5649
- transform: rotateX(180deg); }
5650
- 100% {
5651
- opacity: 0;
5652
- -webkit-transform: rotateX(360deg);
5653
- transform: rotateX(360deg); } }
5654
-
5655
- @-webkit-keyframes premium-overlap-ver-effect-done {
5656
- 0% {
5657
- opacity: 0;
5658
- -webkit-transform: rotateX(0deg);
5659
- transform: rotateX(0deg); }
5660
- 50% {
5661
- opacity: 1;
5662
- -webkit-transform: rotateX(180deg);
5663
- transform: rotateX(180deg); }
5664
- 100% {
5665
- opacity: 0;
5666
- -webkit-transform: rotateX(360deg);
5667
- transform: rotateX(360deg); } }
5668
-
5669
- @keyframes premium-overlap-ver-effect-done {
5670
- 0% {
5671
- opacity: 0;
5672
- -webkit-transform: rotateX(0deg);
5673
- transform: rotateX(0deg); }
5674
- 50% {
5675
- opacity: 1;
5676
- -webkit-transform: rotateX(180deg);
5677
- transform: rotateX(180deg); }
5678
- 100% {
5679
- opacity: 0;
5680
- -webkit-transform: rotateX(360deg);
5681
- transform: rotateX(360deg); } }
5682
-
5683
- /**************** Premium Grid /****************/
5684
- /***********************************************/
5685
- .premium-img-gallery-filter,
5686
- .premium-blog-filter {
5687
- -js-display: flex;
5688
- display: -webkit-box;
5689
- display: -webkit-flex;
5690
- display: -moz-box;
5691
- display: -ms-flexbox;
5692
- display: flex;
5693
- -webkit-box-align: center;
5694
- -webkit-align-items: center;
5695
- -moz-box-align: center;
5696
- -ms-flex-align: center;
5697
- align-items: center;
5698
- -webkit-box-pack: center;
5699
- -webkit-justify-content: center;
5700
- -moz-box-pack: center;
5701
- -ms-flex-pack: center;
5702
- justify-content: center; }
5703
-
5704
- .premium-img-gallery {
5705
- clear: both;
5706
- overflow: hidden; }
5707
-
5708
- .premium-gallery-container .premium-gallery-item {
5709
- padding: 10px;
5710
- float: left; }
5711
-
5712
- .premium-gallery-container .grid-sizer {
5713
- width: 33.33%; }
5714
-
5715
- .premium-gallery-container .pa-gallery-item {
5716
- padding: 10px; }
5717
-
5718
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
5719
- .premium-blog-filter .premium-blog-filters-container li a.category {
5720
- outline: none;
5721
- text-decoration: none;
5722
- -webkit-border-radius: 75px;
5723
- border-radius: 75px;
5724
- margin: 15px 5px 20px;
5725
- padding: 7px 20px;
5726
- -webkit-transition: all 0.3s ease-in-out;
5727
- transition: all 0.3s ease-in-out; }
5728
-
5729
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
5730
- -webkit-transition: all 0.3s ease-in-out;
5731
- transition: all 0.3s ease-in-out; }
5732
-
5733
- .pa-gallery-img {
5734
- position: relative; }
5735
- .pa-gallery-img .pa-gallery-whole-link {
5736
- position: absolute;
5737
- top: 0;
5738
- left: 0;
5739
- width: 100%;
5740
- height: 100%; }
5741
- .pa-gallery-img.style2 .pa-gallery-whole-link {
5742
- z-index: 99; }
5743
-
5744
- .pa-gallery-img-container {
5745
- overflow: hidden;
5746
- -webkit-backface-visibility: hidden;
5747
- backface-visibility: hidden;
5748
- -webkit-transform: translate3d(0, 0, 0);
5749
- transform: translate3d(0, 0, 0); }
5750
- .pa-gallery-img-container img {
5751
- display: block;
5752
- width: 100%;
5753
- -webkit-transition: all 0.3s ease-in-out;
5754
- transition: all 0.3s ease-in-out; }
5755
-
5756
- .premium-img-gallery.gray img {
5757
- -webkit-filter: grayscale(100%);
5758
- filter: grayscale(100%); }
5759
-
5760
- .premium-img-gallery.zoomout img,
5761
- .premium-img-gallery.scale img {
5762
- -webkit-transform: scale(1.2);
5763
- -ms-transform: scale(1.2);
5764
- transform: scale(1.2); }
5765
-
5766
- .premium-img-gallery.sepia img {
5767
- -webkit-filter: sepia(30%);
5768
- filter: sepia(30%); }
5769
-
5770
- .premium-img-gallery.bright img {
5771
- -webkit-filter: brightness(1);
5772
- filter: brightness(1); }
5773
-
5774
- .premium-img-gallery.trans img {
5775
- -webkit-transform: translateX(-15px) scale(1.1);
5776
- -ms-transform: translateX(-15px) scale(1.1);
5777
- transform: translateX(-15px) scale(1.1); }
5778
-
5779
- .pa-gallery-img .pa-gallery-magnific-image,
5780
- .pa-gallery-img .pa-gallery-img-link {
5781
- outline: none; }
5782
-
5783
- .pa-gallery-img .pa-gallery-magnific-image span,
5784
- .pa-gallery-img .pa-gallery-img-link span {
5785
- line-height: 1;
5786
- display: inline-block;
5787
- opacity: 0;
5788
- margin: 0 5px;
5789
- padding: 15px;
5790
- -webkit-border-radius: 50%;
5791
- border-radius: 50%; }
5792
-
5793
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
5794
- .pa-gallery-img.style2 .pa-gallery-img-link span {
5795
- margin: 0 5px 20px; }
5796
-
5797
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
5798
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
5799
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
5800
-
5801
- .pa-gallery-img:hover .pa-gallery-img-link span {
5802
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
5803
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
5804
-
5805
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
5806
- .pa-gallery-img:hover .pa-gallery-img-link span {
5807
- opacity: 1; }
5808
-
5809
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
5810
- opacity: 1; }
5811
-
5812
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
5813
- .premium-blog-filter ul.premium-blog-filters-container {
5814
- text-align: center;
5815
- margin: 0;
5816
- padding: 0; }
5817
-
5818
- .premium-img-gallery-filter .premium-gallery-cats-container li,
5819
- .premium-blog-filter .premium-blog-filters-container li {
5820
- list-style: none;
5821
- -js-display: inline-flex;
5822
- display: -webkit-inline-box;
5823
- display: -webkit-inline-flex;
5824
- display: -moz-inline-box;
5825
- display: -ms-inline-flexbox;
5826
- display: inline-flex; }
5827
-
5828
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
5829
- -webkit-transform: scale(1.1);
5830
- -ms-transform: scale(1.1);
5831
- transform: scale(1.1); }
5832
-
5833
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
5834
- -webkit-transform: scale(1);
5835
- -ms-transform: scale(1);
5836
- transform: scale(1); }
5837
-
5838
- .premium-img-gallery.scale .pa-gallery-img:hover img {
5839
- -webkit-transform: scale(1.3) rotate(5deg);
5840
- -ms-transform: scale(1.3) rotate(5deg);
5841
- transform: scale(1.3) rotate(5deg); }
5842
-
5843
- .premium-img-gallery.gray .pa-gallery-img:hover img {
5844
- -webkit-filter: grayscale(0%);
5845
- filter: grayscale(0%); }
5846
-
5847
- .premium-img-gallery.blur .pa-gallery-img:hover img {
5848
- -webkit-filter: blur(3px);
5849
- filter: blur(3px); }
5850
-
5851
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
5852
- -webkit-filter: sepia(0%);
5853
- filter: sepia(0%); }
5854
-
5855
- .premium-img-gallery.trans .pa-gallery-img:hover img {
5856
- -webkit-transform: translateX(0px) scale(1.1);
5857
- -ms-transform: translateX(0px) scale(1.1);
5858
- transform: translateX(0px) scale(1.1); }
5859
-
5860
- .premium-img-gallery.bright .pa-gallery-img:hover img {
5861
- -webkit-filter: brightness(1.2);
5862
- filter: brightness(1.2); }
5863
-
5864
- .pa-gallery-img .premium-gallery-caption {
5865
- padding: 10px; }
5866
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
5867
- margin-bottom: 0; }
5868
-
5869
- .pa-gallery-img.style1 {
5870
- overflow: hidden; }
5871
-
5872
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
5873
- position: absolute;
5874
- top: 0;
5875
- left: 0;
5876
- width: 100%;
5877
- height: 100%;
5878
- -webkit-transition: all 0.3s ease-in-out;
5879
- transition: all 0.3s ease-in-out; }
5880
-
5881
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
5882
- position: absolute;
5883
- top: 33.33%;
5884
- width: 100%;
5885
- text-align: center;
5886
- -webkit-transform: translateY(-50%);
5887
- -ms-transform: translateY(-50%);
5888
- transform: translateY(-50%);
5889
- z-index: 999; }
5890
-
5891
- .pa-gallery-img.style1 .premium-gallery-caption {
5892
- position: absolute;
5893
- top: auto;
5894
- right: 0;
5895
- bottom: -1px;
5896
- left: 0;
5897
- width: 100%;
5898
- -webkit-transition: all 500ms ease 0s;
5899
- transition: all 500ms ease 0s;
5900
- -webkit-transform: translate3d(0, 100%, 0);
5901
- transform: translate3d(0, 100%, 0); }
5902
-
5903
- .pa-gallery-img.style1:hover .premium-gallery-caption {
5904
- -webkit-transform: translate3d(0, 0, 0);
5905
- transform: translate3d(0, 0, 0);
5906
- bottom: -1px !important; }
5907
-
5908
- .pa-gallery-img.default .premium-gallery-caption {
5909
- position: absolute;
5910
- top: auto;
5911
- right: 0;
5912
- left: 0;
5913
- width: 100%;
5914
- bottom: 0; }
5915
-
5916
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
5917
- position: absolute;
5918
- top: 0;
5919
- left: 0;
5920
- width: 100%;
5921
- height: 100%;
5922
- opacity: 0;
5923
- -webkit-backface-visibility: hidden;
5924
- backface-visibility: hidden;
5925
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
5926
- transition: opacity 0.3s, -webkit-transform 0.3s;
5927
- transition: transform 0.3s, opacity 0.3s;
5928
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
5929
- z-index: 1;
5930
- background-color: rgba(108, 191, 226, 0.68);
5931
- -js-display: flex;
5932
- display: -webkit-box;
5933
- display: -webkit-flex;
5934
- display: -moz-box;
5935
- display: -ms-flexbox;
5936
- display: flex;
5937
- text-align: center;
5938
- -webkit-box-align: center;
5939
- -webkit-align-items: center;
5940
- -moz-box-align: center;
5941
- -ms-flex-align: center;
5942
- align-items: center; }
5943
-
5944
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
5945
- width: 100%; }
5946
-
5947
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
5948
- opacity: 1;
5949
- -webkit-transform: translate(15px, 15px);
5950
- -ms-transform: translate(15px, 15px);
5951
- transform: translate(15px, 15px); }
5952
-
5953
- .premium-clearfix {
5954
- clear: both; }
5955
-
5956
- /**
5957
- * Metro Layout
5958
- */
5959
- .premium-img-gallery-metro .premium-gallery-item {
5960
- overflow: hidden; }
5961
-
5962
- .premium-img-gallery-metro .pa-gallery-img {
5963
- height: 100%; }
5964
-
5965
- .premium-img-gallery-metro .pa-gallery-img-container {
5966
- height: 100%; }
5967
- .premium-img-gallery-metro .pa-gallery-img-container img {
5968
- min-height: 100%;
5969
- width: 100%;
5970
- -o-object-fit: fill;
5971
- object-fit: fill; }
5972
-
5973
- .premium-img-gallery .premium-gallery-item-hidden {
5974
- visibility: hidden;
5975
- width: 0 !important;
5976
- height: 0 !important;
5977
- margin: 0 !important;
5978
- padding: 0 !important; }
5979
-
5980
- .premium-gallery-load-more {
5981
- position: relative; }
5982
- .premium-gallery-load-more .premium-gallery-load-more-btn {
5983
- -webkit-box-shadow: none;
5984
- box-shadow: none;
5985
- text-shadow: none;
5986
- border: none;
5987
- outline: none;
5988
- -webkit-box-align: center;
5989
- -webkit-align-items: center;
5990
- -moz-box-align: center;
5991
- -ms-flex-align: center;
5992
- align-items: center;
5993
- vertical-align: bottom;
5994
- cursor: pointer;
5995
- line-height: 1;
5996
- font-style: normal;
5997
- font-weight: normal;
5998
- background-image: none;
5999
- color: #fff;
6000
- -webkit-transition: all 0.3s ease-in-out;
6001
- transition: all 0.3s ease-in-out; }
6002
-
6003
- .premium-gallery-load-more-btn {
6004
- -js-display: inline-flex;
6005
- display: -webkit-inline-box;
6006
- display: -webkit-inline-flex;
6007
- display: -moz-inline-box;
6008
- display: -ms-inline-flexbox;
6009
- display: inline-flex;
6010
- -webkit-box-align: center;
6011
- -webkit-align-items: center;
6012
- -moz-box-align: center;
6013
- -ms-flex-align: center;
6014
- align-items: center; }
6015
-
6016
- .premium-loader {
6017
- border: 3px solid #f3f3f3;
6018
- border-top-width: 3px;
6019
- border-top-style: solid;
6020
- border-top-color: #f3f3f3;
6021
- -webkit-border-radius: 50%;
6022
- border-radius: 50%;
6023
- border-top: 3px solid;
6024
- border-top-color: #bbb;
6025
- width: 30px;
6026
- height: 30px;
6027
- -webkit-animation: spin 2s linear infinite;
6028
- animation: spin 2s linear infinite;
6029
- margin: 0 auto; }
6030
-
6031
- .premium-gallery-load-more-btn div {
6032
- margin-left: 3px; }
6033
-
6034
- .premium-gallery-load-more-btn .premium-loader {
6035
- display: inline-block;
6036
- width: 20px;
6037
- height: 20px; }
6038
-
6039
- .pa-gallery-img .pa-gallery-lightbox-wrap {
6040
- display: inline-block; }
6041
-
6042
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
6043
- .pa-gallery-img .pa-gallery-video-icon {
6044
- cursor: pointer; }
6045
-
6046
- .pa-gallery-img-container iframe {
6047
- position: absolute;
6048
- visibility: hidden;
6049
- top: 0;
6050
- left: 0;
6051
- max-width: 100%;
6052
- width: 100%;
6053
- height: 100%;
6054
- margin: 0;
6055
- line-height: 1;
6056
- border: none; }
6057
-
6058
- .pa-gallery-img-container video {
6059
- position: absolute;
6060
- visibility: hidden;
6061
- top: 0;
6062
- left: 0;
6063
- max-width: 100%;
6064
- width: 100%;
6065
- height: 100%;
6066
- margin: 0;
6067
- line-height: 1;
6068
- border: none;
6069
- -o-object-fit: contain;
6070
- object-fit: contain; }
6071
-
6072
- .pa-gallery-icons-inner-container svg,
6073
- .pa-gallery-icons-caption-cell svg {
6074
- width: 14px;
6075
- height: 14px; }
6076
-
6077
- .premium-gallery-gradient-layer {
6078
- position: absolute;
6079
- bottom: 40px;
6080
- width: 100%;
6081
- height: 20px;
6082
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
6083
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
6084
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
6085
-
6086
- @-webkit-keyframes spin {
6087
- 0% {
6088
- -webkit-transform: rotate(0deg);
6089
- transform: rotate(0deg); }
6090
- 100% {
6091
- -webkit-transform: rotate(360deg);
6092
- transform: rotate(360deg); } }
6093
-
6094
- @keyframes spin {
6095
- 0% {
6096
- -webkit-transform: rotate(0deg);
6097
- transform: rotate(0deg); }
6098
- 100% {
6099
- -webkit-transform: rotate(360deg);
6100
- transform: rotate(360deg); } }
6101
-
6102
- /************ Premium Vertical Scroll ************/
6103
- /*************************************************/
6104
- .premium-vscroll-inner {
6105
- position: relative;
6106
- min-height: 100%; }
6107
- .premium-vscroll-inner .premium-vscroll-dots {
6108
- position: fixed;
6109
- z-index: 100;
6110
- opacity: 1;
6111
- margin-top: -32px;
6112
- -webkit-transition: all 0.3s ease-in-out;
6113
- transition: all 0.3s ease-in-out; }
6114
-
6115
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6116
- opacity: 1;
6117
- -webkit-transition: all 0.3s ease-in-out;
6118
- transition: all 0.3s ease-in-out; }
6119
-
6120
- .premium-vscroll-inner .premium-vscroll-dots,
6121
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
6122
- opacity: 0;
6123
- visibility: hidden; }
6124
-
6125
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
6126
- opacity: 1;
6127
- visibility: visible; }
6128
-
6129
- .premium-vscroll-dots.middle {
6130
- top: 50%; }
6131
-
6132
- .premium-vscroll-dots.top {
6133
- top: 40px; }
6134
-
6135
- .premium-vscroll-dots.bottom {
6136
- bottom: 30px; }
6137
-
6138
- .premium-vscroll-dots.right {
6139
- right: 17px; }
6140
-
6141
- .premium-vscroll-dots.left {
6142
- left: 17px; }
6143
-
6144
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
6145
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6146
- margin: 0 !important;
6147
- padding: 0; }
6148
-
6149
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
6150
- width: 14px;
6151
- height: 13px;
6152
- margin: 7px;
6153
- position: relative;
6154
- -js-display: flex;
6155
- display: -webkit-box;
6156
- display: -webkit-flex;
6157
- display: -moz-box;
6158
- display: -ms-flexbox;
6159
- display: flex;
6160
- -webkit-box-pack: center;
6161
- -webkit-justify-content: center;
6162
- -moz-box-pack: center;
6163
- -ms-flex-pack: center;
6164
- justify-content: center;
6165
- -webkit-box-align: center;
6166
- -webkit-align-items: center;
6167
- -moz-box-align: center;
6168
- -ms-flex-align: center;
6169
- align-items: center;
6170
- overflow: visible; }
6171
-
6172
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
6173
- display: block;
6174
- position: relative;
6175
- z-index: 1;
6176
- width: 100%;
6177
- height: 100%;
6178
- cursor: pointer;
6179
- text-decoration: none; }
6180
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
6181
- top: 2px;
6182
- left: 2.5px;
6183
- width: 8px;
6184
- height: 8px;
6185
- border: 1px solid #000;
6186
- -webkit-border-radius: 50%;
6187
- border-radius: 50%;
6188
- position: absolute;
6189
- z-index: 1;
6190
- -webkit-transition: all 0.3s ease-in-out;
6191
- transition: all 0.3s ease-in-out; }
6192
-
6193
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
6194
- -webkit-transform: scale(1.6);
6195
- -ms-transform: scale(1.6);
6196
- transform: scale(1.6); }
6197
-
6198
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
6199
- position: absolute;
6200
- color: #fff;
6201
- font-size: 14px;
6202
- font-family: arial, helvetica, sans-serif;
6203
- white-space: nowrap;
6204
- max-width: 220px;
6205
- padding-left: 0.4em;
6206
- padding-right: 0.4em; }
6207
-
6208
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
6209
- right: 27px; }
6210
-
6211
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
6212
- width: 4px;
6213
- height: 30px; }
6214
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
6215
- width: 100%;
6216
- height: 100%;
6217
- -webkit-border-radius: 0;
6218
- border-radius: 0; }
6219
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
6220
- -webkit-transform: scale(1);
6221
- -ms-transform: scale(1);
6222
- transform: scale(1); }
6223
-
6224
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
6225
- position: absolute;
6226
- top: 50%;
6227
- content: "";
6228
- left: -webkit-calc(100% - 1px);
6229
- left: calc(100% - 1px);
6230
- width: 10px;
6231
- height: 0;
6232
- border-top: 6px solid transparent;
6233
- border-bottom: 6px solid transparent;
6234
- border-left: 6px solid;
6235
- -webkit-transform: translateY(-50%);
6236
- -ms-transform: translateY(-50%);
6237
- transform: translateY(-50%); }
6238
-
6239
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
6240
- left: 27px; }
6241
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
6242
- position: absolute;
6243
- top: 50%;
6244
- content: "";
6245
- right: -webkit-calc(100% - 1px);
6246
- right: calc(100% - 1px);
6247
- width: 10px;
6248
- height: 0;
6249
- border-top: 6px solid transparent;
6250
- border-bottom: 6px solid transparent;
6251
- border-right: 6px solid;
6252
- -webkit-transform: translateY(-50%);
6253
- -ms-transform: translateY(-50%);
6254
- transform: translateY(-50%); }
6255
-
6256
- /* * Lines */
6257
- @media (max-width: 768px) {
6258
- .premium-vscroll-dots.right {
6259
- right: 7px; }
6260
- .premium-vscroll-dots.left {
6261
- left: 7px; } }
6262
-
6263
- .premium-vscroll-nav-menu {
6264
- position: fixed;
6265
- top: 20px;
6266
- height: 40px;
6267
- z-index: 100;
6268
- padding: 0;
6269
- margin: 0; }
6270
- .premium-vscroll-nav-menu.left {
6271
- left: 0; }
6272
- .premium-vscroll-nav-menu.right {
6273
- right: 0; }
6274
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
6275
- display: inline-block;
6276
- margin: 10px;
6277
- color: #000;
6278
- background: #fff;
6279
- background: rgba(255, 255, 255, 0.3); }
6280
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
6281
- padding: 9px 18px;
6282
- display: block;
6283
- cursor: pointer;
6284
- color: #000; }
6285
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
6286
- color: #000; }
6287
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
6288
- outline: none; }
6289
-
6290
- .multiscroll-nav li a:focus {
6291
- outline: none; }
6292
-
6293
- .premium-vscroll-temp .slimScrollBar {
6294
- visibility: hidden; }
6295
-
6296
- /************ Premium Image Scroll ************/
6297
- /**********************************************/
6298
- .premium-image-scroll-section,
6299
- .premium-image-scroll-container {
6300
- -webkit-transition: all 0.3s ease-in-out;
6301
- transition: all 0.3s ease-in-out; }
6302
-
6303
- .premium-image-scroll-section {
6304
- position: relative;
6305
- overflow: hidden;
6306
- width: 100%;
6307
- -webkit-mask-image: -webkit-radial-gradient(white, black); }
6308
-
6309
- .premium-image-scroll-container {
6310
- width: 100%; }
6311
- .premium-image-scroll-container .premium-image-scroll-mask-media {
6312
- -webkit-mask-repeat: no-repeat;
6313
- mask-repeat: no-repeat;
6314
- -webkit-mask-position: center;
6315
- mask-position: center; }
6316
-
6317
- .premium-container-scroll {
6318
- overflow: auto; }
6319
-
6320
- .premium-image-scroll-container .premium-image-scroll-horizontal {
6321
- position: relative;
6322
- width: 100%;
6323
- height: 100%; }
6324
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
6325
- max-width: none;
6326
- height: 100%; }
6327
-
6328
- .premium-image-scroll-container .premium-image-scroll-vertical img {
6329
- width: 100%;
6330
- max-width: 100%;
6331
- height: auto; }
6332
-
6333
- .premium-image-scroll-ver {
6334
- position: relative; }
6335
-
6336
- .premium-image-scroll-container .premium-image-scroll-overlay {
6337
- background: rgba(2, 2, 2, 0.3); }
6338
-
6339
- .premium-image-scroll-container .premium-image-scroll-link,
6340
- .premium-image-scroll-container .premium-image-scroll-overlay {
6341
- position: absolute;
6342
- top: 0;
6343
- bottom: 0;
6344
- left: 0;
6345
- right: 0;
6346
- z-index: 4; }
6347
-
6348
- .premium-image-scroll-content {
6349
- display: inline-block;
6350
- position: absolute;
6351
- height: auto;
6352
- top: 50%;
6353
- left: 50%;
6354
- text-align: center;
6355
- z-index: 5;
6356
- -webkit-transform: translate(-50%, -50%);
6357
- -ms-transform: translate(-50%, -50%);
6358
- transform: translate(-50%, -50%); }
6359
-
6360
- .premium-container-scroll-instant .premium-image-scroll-image {
6361
- -webkit-transition: all 0s ease-in-out !important;
6362
- transition: all 0s ease-in-out !important; }
6363
-
6364
- .premium-image-scroll-container img {
6365
- -webkit-transition: -webkit-transform 3s ease-in-out;
6366
- transition: -webkit-transform 3s ease-in-out;
6367
- transition: transform 3s ease-in-out;
6368
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
6369
-
6370
- .premium-image-scroll-container .premium-image-scroll-overlay,
6371
- .premium-image-scroll-container .premium-image-scroll-content {
6372
- -webkit-transition: all 0.3s ease-in-out;
6373
- transition: all 0.3s ease-in-out;
6374
- opacity: 1; }
6375
-
6376
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
6377
- opacity: 0; }
6378
-
6379
- .premium-image-scroll-container:hover .premium-image-scroll-content {
6380
- opacity: 0;
6381
- visibility: hidden; }
6382
-
6383
- .premium-image-scroll-content .premium-image-scroll-icon {
6384
- display: inline-block;
6385
- font-family: "pa-elements" !important;
6386
- speak: none;
6387
- font-style: normal;
6388
- font-weight: normal;
6389
- font-variant: normal;
6390
- text-transform: none;
6391
- line-height: 1;
6392
- -webkit-font-smoothing: antialiased;
6393
- -moz-osx-font-smoothing: grayscale;
6394
- -webkit-animation-duration: 0.5s;
6395
- animation-duration: 0.5s;
6396
- -webkit-animation-iteration-count: infinite;
6397
- animation-iteration-count: infinite;
6398
- -webkit-animation-direction: alternate;
6399
- animation-direction: alternate;
6400
- -webkit-animation-timing-function: ease-in-out;
6401
- animation-timing-function: ease-in-out; }
6402
-
6403
- .pa-horizontal-mouse-scroll:before {
6404
- content: "\e917"; }
6405
-
6406
- .pa-vertical-mouse-scroll:before {
6407
- content: "\e918"; }
6408
-
6409
- .pa-horizontal-mouse-scroll {
6410
- -webkit-animation-name: pa-scroll-horizontal;
6411
- animation-name: pa-scroll-horizontal; }
6412
-
6413
- .pa-vertical-mouse-scroll {
6414
- -webkit-animation-name: pa-scroll-vertical;
6415
- animation-name: pa-scroll-vertical; }
6416
-
6417
- @-webkit-keyframes pa-scroll-vertical {
6418
- 0% {
6419
- -webkit-transform: translateY(0px);
6420
- transform: translateY(0px); }
6421
- 100% {
6422
- -webkit-transform: translateY(5px);
6423
- transform: translateY(5px); } }
6424
-
6425
- @keyframes pa-scroll-vertical {
6426
- 0% {
6427
- -webkit-transform: translateY(0px);
6428
- transform: translateY(0px); }
6429
- 100% {
6430
- -webkit-transform: translateY(5px);
6431
- transform: translateY(5px); } }
6432
-
6433
- @-webkit-keyframes pa-scroll-horizontal {
6434
- 0% {
6435
- -webkit-transform: translateX(0px);
6436
- transform: translateX(0px); }
6437
- 100% {
6438
- -webkit-transform: translateX(5px);
6439
- transform: translateX(5px); } }
6440
-
6441
- @keyframes pa-scroll-horizontal {
6442
- 0% {
6443
- -webkit-transform: translateX(0px);
6444
- transform: translateX(0px); }
6445
- 100% {
6446
- -webkit-transform: translateX(5px);
6447
- transform: translateX(5px); } }
6448
-
6449
- /********* Premium Lottie Animations *********/
6450
- /*********************************************/
6451
- .premium-lottie-wrap .premium-lottie-animation {
6452
- position: relative;
6453
- -js-display: inline-flex;
6454
- display: -webkit-inline-box;
6455
- display: -webkit-inline-flex;
6456
- display: -moz-inline-box;
6457
- display: -ms-inline-flexbox;
6458
- display: inline-flex;
6459
- -webkit-transition: all 0.3s ease-in-out;
6460
- transition: all 0.3s ease-in-out; }
6461
- .premium-lottie-wrap .premium-lottie-animation a {
6462
- position: absolute;
6463
- left: 0;
6464
- top: 0;
6465
- width: 100%;
6466
- height: 100%; }
6467
-
6468
- /**************** Premium Bullet List ****************/
6469
- /*****************************************************/
6470
- .premium-icon-list-box {
6471
- -js-display: flex;
6472
- display: -webkit-box;
6473
- display: -webkit-flex;
6474
- display: -moz-box;
6475
- display: -ms-flexbox;
6476
- display: flex;
6477
- -webkit-flex-wrap: wrap;
6478
- -ms-flex-wrap: wrap;
6479
- flex-wrap: wrap;
6480
- -webkit-box-orient: vertical;
6481
- -webkit-box-direction: normal;
6482
- -webkit-flex-direction: column;
6483
- -moz-box-orient: vertical;
6484
- -moz-box-direction: normal;
6485
- -ms-flex-direction: column;
6486
- flex-direction: column; }
6487
- .premium-icon-list-box .premium-icon-list-content-grow-lc {
6488
- -webkit-transform-origin: left center;
6489
- -ms-transform-origin: left center;
6490
- transform-origin: left center; }
6491
- .premium-icon-list-box .premium-icon-list-content-grow-rc {
6492
- -webkit-transform-origin: right center;
6493
- -ms-transform-origin: right center;
6494
- transform-origin: right center; }
6495
- .premium-icon-list-box .premium-icon-list-content-grow-cc {
6496
- -webkit-transform-origin: center center;
6497
- -ms-transform-origin: center center;
6498
- transform-origin: center center; }
6499
-
6500
- .premium-icon-list-content {
6501
- -js-display: flex;
6502
- display: -webkit-box;
6503
- display: -webkit-flex;
6504
- display: -moz-box;
6505
- display: -ms-flexbox;
6506
- display: flex;
6507
- -webkit-transition: all 0.3s ease-in-out;
6508
- transition: all 0.3s ease-in-out;
6509
- width: auto;
6510
- position: relative; }
6511
- .premium-icon-list-content .premium-icon-list-text span,
6512
- .premium-icon-list-content .premium-icon-list-wrapper {
6513
- display: inline-block;
6514
- -webkit-align-self: center;
6515
- -ms-flex-item-align: center;
6516
- align-self: center;
6517
- -webkit-transition: all 0.3s ease-in-out;
6518
- transition: all 0.3s ease-in-out; }
6519
- .premium-icon-list-content .premium-icon-list-text span {
6520
- margin: 0 5px; }
6521
- .premium-icon-list-content .premium-icon-list-icon-text p {
6522
- font-size: 18px;
6523
- background-color: #eee;
6524
- padding: 1px 5px;
6525
- -webkit-border-radius: 2px;
6526
- border-radius: 2px; }
6527
- .premium-icon-list-content .premium-icon-list-text span,
6528
- .premium-icon-list-content .premium-icon-list-icon-text p,
6529
- .premium-icon-list-content .premium-icon-list-wrapper img,
6530
- .premium-icon-list-content .premium-icon-list-wrapper svg,
6531
- .premium-icon-list-content .premium-icon-list-wrapper i {
6532
- -webkit-transition: all 0.3s ease-in-out;
6533
- transition: all 0.3s ease-in-out; }
6534
- .premium-icon-list-content .premium-icon-list-wrapper {
6535
- position: relative;
6536
- line-height: 0; }
6537
- .premium-icon-list-content .premium-icon-list-wrapper img,
6538
- .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
6539
- width: 30px !important;
6540
- height: 30px !important;
6541
- position: relative;
6542
- z-index: 500; }
6543
- .premium-icon-list-content .premium-icon-list-wrapper i,
6544
- .premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
6545
- position: relative;
6546
- z-index: 500; }
6547
- .premium-icon-list-content .premium-icon-list-link {
6548
- position: absolute;
6549
- top: 0;
6550
- left: 0;
6551
- width: 100%;
6552
- height: 100%;
6553
- z-index: 1000; }
6554
-
6555
- .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
6556
- width: 100%;
6557
- height: 100%;
6558
- position: absolute;
6559
- top: 0.5em;
6560
- z-index: 100;
6561
- -js-display: flex;
6562
- display: -webkit-box;
6563
- display: -webkit-flex;
6564
- display: -moz-box;
6565
- display: -ms-flexbox;
6566
- display: flex;
6567
- -webkit-box-pack: center;
6568
- -webkit-justify-content: center;
6569
- -moz-box-pack: center;
6570
- -ms-flex-pack: center;
6571
- justify-content: center; }
6572
- .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
6573
- content: "";
6574
- border-right-width: 1px;
6575
- border-right-style: solid;
6576
- border-color: #333333;
6577
- display: block;
6578
- height: 100%; }
6579
-
6580
- li.premium-icon-list-content.premium-icon-list-content-inline {
6581
- -webkit-align-self: center;
6582
- -ms-flex-item-align: center;
6583
- align-self: center;
6584
- z-index: 2; }
6585
-
6586
- li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
6587
- margin: 0 3px; }
6588
-
6589
- li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
6590
- margin: 0 3px 0 0; }
6591
-
6592
- .premium-icon-list-divider:not(:last-child) {
6593
- width: 100%;
6594
- -webkit-box-flex: 0;
6595
- -webkit-flex: 0 0 100%;
6596
- -moz-box-flex: 0;
6597
- -ms-flex: 0 0 100%;
6598
- flex: 0 0 100%;
6599
- overflow: hidden; }
6600
-
6601
- .premium-icon-list-divider:not(:last-child):after {
6602
- content: "";
6603
- display: block;
6604
- border-top-style: solid;
6605
- border-top-width: 1px; }
6606
-
6607
- .premium-icon-list-divider-inline:not(:last-child) {
6608
- float: right;
6609
- display: inline-block;
6610
- position: relative;
6611
- height: 100%;
6612
- overflow: hidden;
6613
- -webkit-align-self: center;
6614
- -ms-flex-item-align: center;
6615
- align-self: center;
6616
- margin: 0 3px; }
6617
-
6618
- .premium-icon-list-divider-inline:not(:last-child):after {
6619
- content: "";
6620
- display: block;
6621
- border-left-width: 1px;
6622
- height: 33px;
6623
- border-left-style: solid; }
6624
-
6625
- .premium-icon-list-icon-text {
6626
- line-height: 1.5; }
6627
-
6628
- .premium-icon-list-icon-text p,
6629
- ul.premium-icon-list-box,
6630
- li.premium-icon-list-content {
6631
- margin: 0; }
6632
-
6633
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
6634
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
6635
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
6636
- color: transparent !important;
6637
- text-shadow: 0 0 3px #aaa; }
6638
-
6639
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
6640
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
6641
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
6642
- .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
6643
- -webkit-filter: blur(3px);
6644
- filter: blur(3px); }
6645
-
6646
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
6647
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
6648
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
6649
- color: #aaa !important;
6650
- text-shadow: 0 0px 0 transparent; }
6651
-
6652
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
6653
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
6654
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
6655
- .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
6656
- -webkit-filter: none;
6657
- filter: none; }
6658
-
6659
- .premium-icon-list-content .premium-icon-list-badge {
6660
- font-size: 11px;
6661
- top: auto;
6662
- min-width: -webkit-max-content;
6663
- min-width: -moz-max-content;
6664
- min-width: max-content;
6665
- height: -webkit-fit-content;
6666
- height: -moz-fit-content;
6667
- height: fit-content; }
6668
-
6669
- .premium-icon-list-content .premium-icon-list-icon-text p {
6670
- font-size: 13px; }
6671
-
6672
- .premium-icon-list-gradient-effect[data-text] {
6673
- display: inline-block;
6674
- position: relative;
6675
- text-decoration: none; }
6676
-
6677
- .premium-icon-list-gradient-effect[data-text]::before {
6678
- content: attr(data-text);
6679
- position: absolute;
6680
- z-index: 1;
6681
- overflow: hidden;
6682
- -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6683
- clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6684
- -webkit-background-clip: text;
6685
- background-clip: text;
6686
- -webkit-text-fill-color: transparent;
6687
- -webkit-transition: all 0.4s ease;
6688
- transition: all 0.4s ease; }
6689
-
6690
- .premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
6691
- .premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
6692
- -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
6693
- clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
6694
-
6695
- ul[data-list-animation*="animated-"] .premium-icon-list-divider,
6696
- ul[data-list-animation*="animated-"] .premium-icon-list-content,
6697
- ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
6698
- opacity: 0; }
6699
-
6700
- .premium-icon-list-content-grow-effect:hover {
6701
- -webkit-transform: scale(1.07);
6702
- -ms-transform: scale(1.07);
6703
- transform: scale(1.07); }
 
 
 
 
1
+ @font-face {
2
+ font-family: "pa-elements";
3
+ src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
4
+ src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"), url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"), url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
5
+ font-weight: normal;
6
+ font-style: normal; }
7
+
8
+ /**************** Premium Banner ****************/
9
+ /************************************************/
10
+ .premium-banner {
11
+ overflow: hidden; }
12
+
13
+ .premium-banner-ib {
14
+ display: block;
15
+ position: relative;
16
+ z-index: 1;
17
+ overflow: hidden;
18
+ margin: 0;
19
+ text-align: center;
20
+ -webkit-box-sizing: border-box;
21
+ -moz-box-sizing: border-box;
22
+ box-sizing: border-box; }
23
+ .premium-banner-ib img {
24
+ display: block;
25
+ position: relative; }
26
+
27
+ .premium-banner-img-wrap {
28
+ -js-display: flex;
29
+ display: -webkit-box;
30
+ display: -webkit-flex;
31
+ display: -moz-box;
32
+ display: -ms-flexbox;
33
+ display: flex;
34
+ height: 100%; }
35
+ .premium-banner-img-wrap .premium-banner-ib-img {
36
+ -webkit-flex-shrink: 0;
37
+ -ms-flex-negative: 0;
38
+ flex-shrink: 0; }
39
+
40
+ .premium-banner-ib-desc .premium-banner-read-more {
41
+ z-index: 100; }
42
+
43
+ .elementor-widget-premium-addon-banner .premium-banner-ib-title {
44
+ background: transparent; }
45
+
46
+ .premium-banner-ib *,
47
+ .premium-banner-ib .premium-banner-ib-desc {
48
+ -webkit-box-sizing: border-box;
49
+ -moz-box-sizing: border-box;
50
+ box-sizing: border-box; }
51
+
52
+ .premium-banner-ib img {
53
+ min-width: 100%;
54
+ max-width: 100%;
55
+ -webkit-transition: opacity 0.35s;
56
+ transition: opacity 0.35s; }
57
+
58
+ .premium-banner-ib .premium-banner-ib-desc {
59
+ padding: 15px;
60
+ -webkit-backface-visibility: hidden;
61
+ backface-visibility: hidden;
62
+ -webkit-box-sizing: border-box;
63
+ -moz-box-sizing: border-box;
64
+ box-sizing: border-box;
65
+ position: absolute;
66
+ top: 0;
67
+ left: 0;
68
+ width: 100%;
69
+ height: 100%; }
70
+
71
+ .premium-banner-ib .premium-banner-ib-link {
72
+ position: absolute;
73
+ top: 0;
74
+ left: 0;
75
+ width: 100%;
76
+ height: 100%;
77
+ z-index: 1000;
78
+ text-indent: 200%;
79
+ white-space: nowrap;
80
+ font-size: 0;
81
+ opacity: 0; }
82
+
83
+ .premium-banner-ib a.premium-banner-ib-link {
84
+ display: block;
85
+ background: 0 0; }
86
+
87
+ .premium-banner-animation1 img {
88
+ width: -webkit-calc(100% + 50px) !important;
89
+ width: calc(100% + 50px) !important;
90
+ max-width: -webkit-calc(100% + 50px) !important;
91
+ max-width: calc(100% + 50px) !important;
92
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
93
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
95
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
96
+ -webkit-transform: translate3d(-40px, 0, 0);
97
+ transform: translate3d(-40px, 0, 0); }
98
+
99
+ .premium-banner-animation2 .premium-banner-ib-title {
100
+ padding: 15px; }
101
+
102
+ .premium-banner-animation1 .premium-banner-ib-desc {
103
+ top: auto;
104
+ bottom: 0;
105
+ min-height: 25%;
106
+ height: auto;
107
+ max-height: 100%;
108
+ text-align: left; }
109
+
110
+ .premium-banner-animation1 .premium-banner-ib-content,
111
+ .premium-banner-animation1 .premium-banner-ib-title,
112
+ .premium-banner-animation1 .premium-banner-read-more {
113
+ -webkit-transform: translate3d(0, 40px, 0);
114
+ transform: translate3d(0, 40px, 0);
115
+ -webkit-transition-delay: 0.05s;
116
+ transition-delay: 0.05s;
117
+ -webkit-transition-duration: 0.35s;
118
+ transition-duration: 0.35s; }
119
+
120
+ .premium-banner-animation1 .premium-banner-ib-title {
121
+ -webkit-transition: -webkit-transform 0.35s;
122
+ transition: -webkit-transform 0.35s;
123
+ transition: transform 0.35s;
124
+ transition: transform 0.35s, -webkit-transform 0.35s; }
125
+
126
+ .premium-banner-animation1 .premium-banner-ib-content,
127
+ .premium-banner-animation1 .premium-banner-read-more {
128
+ margin-top: 10px;
129
+ opacity: 0;
130
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
131
+ transition: opacity 0.2s, -webkit-transform 0.35s;
132
+ transition: opacity 0.2s, transform 0.35s;
133
+ transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
134
+
135
+ .premium-banner-animation1:hover .premium-banner-ib-content,
136
+ .premium-banner-animation1.active .premium-banner-ib-content,
137
+ .premium-banner-animation1:hover .premium-banner-read-more,
138
+ .premium-banner-animation1.active .premium-banner-read-more {
139
+ opacity: 1;
140
+ -webkit-transition-delay: 0.05s;
141
+ transition-delay: 0.05s;
142
+ -webkit-transition-duration: 0.35s;
143
+ transition-duration: 0.35s; }
144
+
145
+ .premium-banner-animation1:hover .premium-banner-ib-content,
146
+ .premium-banner-animation1.active .premium-banner-ib-content,
147
+ .premium-banner-animation1:hover .premium-banner-read-more,
148
+ .premium-banner-animation1.active .premium-banner-read-more,
149
+ .premium-banner-animation1:hover .premium-banner-ib-title,
150
+ .premium-banner-animation1.active .premium-banner-ib-title,
151
+ .premium-banner-animation1:hover img,
152
+ .premium-banner-animation1.active img {
153
+ -webkit-transform: translate3d(0, 0, 0);
154
+ transform: translate3d(0, 0, 0);
155
+ -webkit-transition-delay: 0.05s;
156
+ transition-delay: 0.05s;
157
+ -webkit-transition-duration: 0.35s;
158
+ transition-duration: 0.35s; }
159
+
160
+ .premium-banner-animation1.zoomout img,
161
+ .premium-banner-animation1.scale img {
162
+ -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
163
+ transform: translate3d(-40px, 0, 0) scale(1.1); }
164
+
165
+ .premium-banner-ib.sepia img {
166
+ -webkit-filter: sepia(30%);
167
+ filter: sepia(30%); }
168
+
169
+ .premium-banner-ib.bright img {
170
+ -webkit-filter: brightness(1);
171
+ filter: brightness(1); }
172
+
173
+ .premium-banner-ib.sepia:hover img {
174
+ -webkit-filter: sepia(0%);
175
+ filter: sepia(0%); }
176
+
177
+ .premium-banner-ib.bright:hover img {
178
+ -webkit-filter: brightness(1.2);
179
+ filter: brightness(1.2); }
180
+
181
+ .premium-banner-animation1.premium-banner-min-height img,
182
+ .premium-banner-animation2.premium-banner-min-height img,
183
+ .premium-banner-animation4.premium-banner-min-height img,
184
+ .premium-banner-animation5.premium-banner-min-height img,
185
+ .premium-banner-animation6.premium-banner-min-height img,
186
+ .premium-banner-animation13.premium-banner-min-height img {
187
+ height: auto; }
188
+
189
+ .premium-banner-animation2 img {
190
+ width: 100%; }
191
+
192
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
193
+ position: absolute;
194
+ content: "";
195
+ top: 0;
196
+ left: 0;
197
+ width: 100%;
198
+ height: 100%;
199
+ opacity: 0;
200
+ -webkit-transform: translate3d(0, 50%, 0);
201
+ transform: translate3d(0, 50%, 0); }
202
+
203
+ .premium-banner-animation2 .premium-banner-ib-title {
204
+ position: absolute;
205
+ top: 50%;
206
+ left: 0;
207
+ width: 100%;
208
+ -webkit-transition: color 0.35s, -webkit-transform 0.35s;
209
+ transition: color 0.35s, -webkit-transform 0.35s;
210
+ transition: transform 0.35s, color 0.35s;
211
+ transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
212
+ -webkit-transform: translate3d(0, -50%, 0);
213
+ transform: translate3d(0, -50%, 0); }
214
+
215
+ .premium-banner-animation2 .premium-banner-ib-content,
216
+ .premium-banner-animation2 .premium-banner-read-more,
217
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
218
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
219
+ transition: opacity 0.35s, -webkit-transform 0.35s;
220
+ transition: opacity 0.35s, transform 0.35s;
221
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
222
+
223
+ .premium-banner-animation2 .premium-banner-ib-content,
224
+ .premium-banner-animation2 .premium-banner-read-more {
225
+ position: absolute;
226
+ bottom: 0;
227
+ left: 0;
228
+ padding: 15px;
229
+ width: 100%;
230
+ max-height: 50%;
231
+ opacity: 0;
232
+ -webkit-transform: translate3d(0, 10px, 0);
233
+ transform: translate3d(0, 10px, 0); }
234
+
235
+ .premium-banner-animation2:hover .premium-banner-ib-title,
236
+ .premium-banner-animation2.active .premium-banner-ib-title {
237
+ -webkit-transform: translate3d(0, -40px, 0);
238
+ transform: translate3d(0, -40px, 0); }
239
+
240
+ .premium-banner-animation2:hover .premium-banner-read-more,
241
+ .premium-banner-animation2.active .premium-banner-read-more,
242
+ .premium-banner-animation2:hover .premium-banner-ib-desc::before,
243
+ .premium-banner-animation2.active .premium-banner-ib-desc::before {
244
+ opacity: 1;
245
+ -webkit-transform: translate3d(0, 0, 0);
246
+ transform: translate3d(0, 0, 0); }
247
+
248
+ .premium-banner-animation2:hover .premium-banner-ib-content,
249
+ .premium-banner-animation2.active .premium-banner-ib-content {
250
+ opacity: 1;
251
+ -webkit-transform: translate3d(0, -30px, 0);
252
+ transform: translate3d(0, -30px, 0); }
253
+
254
+ .premium-banner-animation3 .premium-banner-ib-title {
255
+ position: absolute;
256
+ bottom: 0;
257
+ left: 0;
258
+ padding: 15px;
259
+ width: 100%;
260
+ text-align: left;
261
+ -webkit-transform: translate3d(0, -30px, 0);
262
+ transform: translate3d(0, -30px, 0); }
263
+
264
+ .premium-banner-animation3 .premium-banner-ib-desc::before,
265
+ .premium-banner-animation3 .premium-banner-ib-title {
266
+ -webkit-transition: -webkit-transform 0.35s;
267
+ transition: -webkit-transform 0.35s;
268
+ transition: transform 0.35s;
269
+ transition: transform 0.35s, -webkit-transform 0.35s; }
270
+
271
+ .premium-banner-animation3:hover .premium-banner-ib-desc::before,
272
+ .premium-banner-animation3.active .premium-banner-ib-desc::before,
273
+ .premium-banner-animation3:hover .premium-banner-ib-title,
274
+ .premium-banner-animation3.active .premium-banner-ib-title {
275
+ opacity: 1;
276
+ -webkit-transform: translate3d(0, 0, 0);
277
+ transform: translate3d(0, 0, 0); }
278
+
279
+ .premium-banner-animation3 .premium-banner-ib-content {
280
+ max-height: -webkit-calc(100% - 60px - 1.5em);
281
+ max-height: calc(100% - 60px - 1.5em);
282
+ overflow: hidden; }
283
+
284
+ .premium-banner-animation4 img {
285
+ width: -webkit-calc(100% + 40px) !important;
286
+ width: calc(100% + 40px) !important;
287
+ max-width: -webkit-calc(100% + 40px) !important;
288
+ max-width: calc(100% + 40px) !important; }
289
+
290
+ .premium-banner-animation4 .premium-banner-ib-desc {
291
+ padding: 30px; }
292
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
293
+ position: absolute;
294
+ content: "";
295
+ opacity: 0; }
296
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
297
+ position: absolute;
298
+ content: "";
299
+ opacity: 0;
300
+ top: 50px;
301
+ right: 30px;
302
+ bottom: 50px;
303
+ left: 30px;
304
+ border-top: 1px solid #fff;
305
+ border-bottom: 1px solid #fff;
306
+ -webkit-transform: scale(0, 1);
307
+ -ms-transform: scale(0, 1);
308
+ transform: scale(0, 1);
309
+ -webkit-transform-origin: 0 0;
310
+ -ms-transform-origin: 0 0;
311
+ transform-origin: 0 0; }
312
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
313
+ top: 30px;
314
+ right: 50px;
315
+ bottom: 30px;
316
+ left: 50px;
317
+ border-right: 1px solid #fff;
318
+ border-left: 1px solid #fff;
319
+ -webkit-transform: scale(1, 0);
320
+ -ms-transform: scale(1, 0);
321
+ transform: scale(1, 0);
322
+ -webkit-transform-origin: 100% 0;
323
+ -ms-transform-origin: 100% 0;
324
+ transform-origin: 100% 0; }
325
+
326
+ .premium-banner-animation4 .premium-banner-ib-title {
327
+ padding: 50px 30px 0 30px;
328
+ -webkit-transition: -webkit-transform 0.35s;
329
+ transition: -webkit-transform 0.35s;
330
+ transition: transform 0.35s;
331
+ transition: transform 0.35s, -webkit-transform 0.35s; }
332
+
333
+ .premium-banner-animation4 .premium-banner-ib-content,
334
+ .premium-banner-animation4 .premium-banner-read-more {
335
+ padding: 10px 30px;
336
+ opacity: 0;
337
+ overflow: hidden;
338
+ -webkit-transform: translate3d(0, -10px, 0);
339
+ transform: translate3d(0, -10px, 0); }
340
+
341
+ .premium-banner-animation4 .premium-banner-ib-title,
342
+ .premium-banner-animation4 img {
343
+ -webkit-transform: translate3d(-30px, 0, 0);
344
+ transform: translate3d(-30px, 0, 0); }
345
+
346
+ .premium-banner-animation4.zoomout img,
347
+ .premium-banner-animation4.scale img {
348
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
349
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
350
+
351
+ .premium-banner-animation4 .premium-banner-ib-content,
352
+ .premium-banner-animation4 .premium-banner-read-more {
353
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
354
+ transition: opacity 0.35s, -webkit-transform 0.35s;
355
+ transition: opacity 0.35s, transform 0.35s;
356
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
357
+
358
+ .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
359
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
360
+ transition: opacity 0.35s, -webkit-transform 0.35s;
361
+ transition: opacity 0.35s, transform 0.35s;
362
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
363
+
364
+ .premium-banner-animation4 img {
365
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
366
+ transition: opacity 0.35s, -webkit-transform 0.35s;
367
+ transition: opacity 0.35s, transform 0.35s;
368
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
369
+
370
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
371
+ .premium-banner-animation4.active .premium-banner-ib-desc::after,
372
+ .premium-banner-animation4:hover .premium-banner-ib-desc::before,
373
+ .premium-banner-animation4.active .premium-banner-ib-desc::before {
374
+ opacity: 1;
375
+ -webkit-transform: scale(1);
376
+ -ms-transform: scale(1);
377
+ transform: scale(1); }
378
+
379
+ .premium-banner-animation4:hover .premium-banner-ib-content,
380
+ .premium-banner-animation4.active .premium-banner-ib-content,
381
+ .premium-banner-animation4:hover .premium-banner-read-more,
382
+ .premium-banner-animation4.active .premium-banner-read-more,
383
+ .premium-banner-animation4:hover .premium-banner-ib-title,
384
+ .premium-banner-animation4.active .premium-banner-ib-title {
385
+ opacity: 1;
386
+ -webkit-transform: translate3d(0, 0, 0);
387
+ transform: translate3d(0, 0, 0); }
388
+
389
+ .premium-banner-animation4:hover .premium-banner-ib-content,
390
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
391
+ .premium-banner-animation4:hover .premium-banner-ib-title,
392
+ .premium-banner-animation4:hover img {
393
+ -webkit-transition-delay: 0.15s;
394
+ transition-delay: 0.15s; }
395
+
396
+ .premium-banner-animation5 .premium-banner-ib-desc {
397
+ top: auto;
398
+ bottom: 0;
399
+ padding: 15px;
400
+ height: auto;
401
+ background: #f2f2f2;
402
+ color: #3c4a50;
403
+ -webkit-transition: -webkit-transform 0.35s;
404
+ transition: -webkit-transform 0.35s;
405
+ transition: transform 0.35s;
406
+ transition: transform 0.35s, -webkit-transform 0.35s;
407
+ -webkit-transform: translate3d(0, 100%, 0);
408
+ transform: translate3d(0, 100%, 0); }
409
+
410
+ .premium-banner-animation5 .premium-banner-ib-content {
411
+ position: absolute;
412
+ top: auto;
413
+ bottom: 100%;
414
+ left: 0;
415
+ width: 100%;
416
+ padding: 15px;
417
+ opacity: 0;
418
+ -webkit-transition: opacity 0.35s;
419
+ transition: opacity 0.35s; }
420
+
421
+ .premium-banner-animation5 .premium-banner-ib-title,
422
+ .premium-banner-animation5 .premium-banner-read-more {
423
+ -webkit-transition: -webkit-transform 0.35s;
424
+ transition: -webkit-transform 0.35s;
425
+ transition: transform 0.35s;
426
+ transition: transform 0.35s, -webkit-transform 0.35s;
427
+ -webkit-transform: translate3d(0, 200%, 0);
428
+ transform: translate3d(0, 200%, 0);
429
+ text-align: center; }
430
+
431
+ .premium-banner-animation5 .premium-banner-ib-title {
432
+ margin: 10px 0; }
433
+
434
+ .premium-banner-animation5:hover .premium-banner-ib-content,
435
+ .premium-banner-animation5.active .premium-banner-ib-content,
436
+ .premium-banner-animation5:hover .premium-banner-ib-content *,
437
+ .premium-banner-animation5.active .premium-banner-ib-content * {
438
+ opacity: 1 !important;
439
+ z-index: 99 !important;
440
+ -webkit-backface-visibility: hidden !important;
441
+ backface-visibility: hidden !important; }
442
+
443
+ .premium-banner-animation5:hover .premium-banner-ib-desc,
444
+ .premium-banner-animation5.active .premium-banner-ib-desc,
445
+ .premium-banner-animation5:hover .premium-banner-ib-title,
446
+ .premium-banner-animation5.active .premium-banner-ib-title,
447
+ .premium-banner-animation5:hover .premium-banner-read-more,
448
+ .premium-banner-animation5.active .premium-banner-read-more {
449
+ -webkit-transform: translateY(0);
450
+ -ms-transform: translateY(0);
451
+ transform: translateY(0); }
452
+
453
+ .premium-banner-animation5:hover .premium-banner-ib-title {
454
+ -webkit-transition-delay: 0.05s;
455
+ transition-delay: 0.05s; }
456
+
457
+ .premium-banner-animation5 img {
458
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
459
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
461
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
462
+
463
+ .premium-banner-animation2 img,
464
+ .premium-banner-animation4 img,
465
+ .premium-banner-animation6 img {
466
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
467
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
469
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
470
+
471
+ .premium-banner-animation5.zoomout img,
472
+ .premium-banner-animation5.scale img {
473
+ -webkit-transform: scale(1.1);
474
+ -ms-transform: scale(1.1);
475
+ transform: scale(1.1); }
476
+
477
+ .premium-banner-animation2.zoomout img,
478
+ .premium-banner-animation2.scale img {
479
+ -webkit-transform: scale(1.1);
480
+ -ms-transform: scale(1.1);
481
+ transform: scale(1.1); }
482
+
483
+ .premium-banner-animation6.zoomout img,
484
+ .premium-banner-animation6.scale img {
485
+ -webkit-transform: scale(1.1);
486
+ -ms-transform: scale(1.1);
487
+ transform: scale(1.1); }
488
+
489
+ .premium-banner-animation5.zoomin:hover img,
490
+ .premium-banner-animation2.zoomin:hover img,
491
+ .premium-banner-animation6.zoomin:hover img {
492
+ -webkit-transform: scale(1.1);
493
+ -ms-transform: scale(1.1);
494
+ transform: scale(1.1); }
495
+
496
+ .premium-banner-animation5.zoomout:hover img,
497
+ .premium-banner-animation2.zoomout:hover img,
498
+ .premium-banner-animation6.zoomout:hover img {
499
+ -webkit-transform: scale(1);
500
+ -ms-transform: scale(1);
501
+ transform: scale(1); }
502
+
503
+ .premium-banner-animation5.scale:hover img,
504
+ .premium-banner-animation2.scale:hover img,
505
+ .premium-banner-animation6.scale:hover img {
506
+ -webkit-transform: scale(1.2) rotate(5deg);
507
+ -ms-transform: scale(1.2) rotate(5deg);
508
+ transform: scale(1.2) rotate(5deg); }
509
+
510
+ .premium-banner-animation5.grayscale:hover img,
511
+ .premium-banner-animation2.grayscale:hover img,
512
+ .premium-banner-animation6.grayscale:hover img {
513
+ -webkit-filter: grayscale(100%);
514
+ filter: grayscale(100%); }
515
+
516
+ .premium-banner-animation5.blur:hover img,
517
+ .premium-banner-animation2.blur:hover img {
518
+ -webkit-filter: blur(3px);
519
+ filter: blur(3px); }
520
+
521
+ .premium-banner-animation6.blur:hover img {
522
+ -webkit-filter: blur(3px);
523
+ filter: blur(3px); }
524
+
525
+ .premium-banner-animation6 .premium-banner-ib-desc {
526
+ padding: 45px; }
527
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
528
+ position: absolute;
529
+ content: "";
530
+ top: 30px;
531
+ right: 30px;
532
+ bottom: 30px;
533
+ left: 30px;
534
+ border: 1px solid #fff; }
535
+
536
+ .premium-banner-animation6 .premium-banner-ib-title {
537
+ margin: 20px 0 10px;
538
+ -webkit-transition: -webkit-transform 0.35s;
539
+ transition: -webkit-transform 0.35s;
540
+ transition: transform 0.35s;
541
+ transition: transform 0.35s, -webkit-transform 0.35s;
542
+ -webkit-transform: translate3d(0, 100%, 0);
543
+ transform: translate3d(0, 100%, 0); }
544
+
545
+ .premium-banner-animation6 .premium-banner-ib-content,
546
+ .premium-banner-animation6 .premium-banner-read-more,
547
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
548
+ opacity: 0;
549
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
550
+ transition: opacity 0.35s, -webkit-transform 0.35s;
551
+ transition: opacity 0.35s, transform 0.35s;
552
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
553
+ -webkit-transform: scale(0);
554
+ -ms-transform: scale(0);
555
+ transform: scale(0); }
556
+
557
+ .premium-banner-animation6 .premium-banner-read-more {
558
+ margin-top: 10px; }
559
+
560
+ .premium-banner-animation6:hover .premium-banner-ib-title,
561
+ .premium-banner-animation6.active .premium-banner-ib-title {
562
+ -webkit-transform: translate3d(0, 0, 0);
563
+ transform: translate3d(0, 0, 0); }
564
+
565
+ .premium-banner-animation6:hover .premium-banner-ib-content,
566
+ .premium-banner-animation6.active .premium-banner-ib-content,
567
+ .premium-banner-animation6:hover .premium-banner-read-more,
568
+ .premium-banner-animation6.active .premium-banner-read-more,
569
+ .premium-banner-animation6:hover .premium-banner-ib-desc::before,
570
+ .premium-banner-animation6.active .premium-banner-ib-desc::before {
571
+ opacity: 1;
572
+ -webkit-transform: scale(1);
573
+ -ms-transform: scale(1);
574
+ transform: scale(1); }
575
+
576
+ .premium-banner-animation12 .premium-banner-ib-desc::after {
577
+ position: absolute;
578
+ content: "";
579
+ right: 30px;
580
+ bottom: 30px;
581
+ left: 30px;
582
+ height: -webkit-calc(50% - 30px);
583
+ height: calc(50% - 30px);
584
+ border: 7px solid #fff;
585
+ -webkit-transition: -webkit-transform 0.35s;
586
+ transition: -webkit-transform 0.35s;
587
+ transition: transform 0.35s;
588
+ transition: transform 0.35s, -webkit-transform 0.35s;
589
+ -webkit-transform: translate3d(0, -100%, 0);
590
+ transform: translate3d(0, -100%, 0); }
591
+
592
+ .premium-banner-animation12:hover .premium-banner-ib-desc::after,
593
+ .premium-banner-animation12.active .premium-banner-ib-desc::after {
594
+ -webkit-transform: translate3d(0, 0, 0);
595
+ transform: translate3d(0, 0, 0); }
596
+
597
+ .premium-banner-animation12 .premium-banner-ib-desc {
598
+ padding: 45px;
599
+ text-align: left; }
600
+
601
+ .premium-banner-animation12 .premium-banner-ib-content {
602
+ position: absolute;
603
+ right: 60px;
604
+ bottom: 60px;
605
+ left: 60px;
606
+ opacity: 0;
607
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
608
+ transition: opacity 0.35s, -webkit-transform 0.35s;
609
+ transition: opacity 0.35s, transform 0.35s;
610
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
611
+ -webkit-transform: translate3d(0, -100px, 0);
612
+ transform: translate3d(0, -100px, 0); }
613
+
614
+ .premium-banner-animation12:hover .premium-banner-ib-content,
615
+ .premium-banner-animation12.active .premium-banner-ib-content {
616
+ opacity: 1;
617
+ -webkit-transform: translate3d(0, 0, 0);
618
+ transform: translate3d(0, 0, 0); }
619
+
620
+ .premium-banner-animation13 img {
621
+ width: -webkit-calc(100% + 20px) !important;
622
+ width: calc(100% + 20px) !important;
623
+ max-width: -webkit-calc(100% + 20px) !important;
624
+ max-width: calc(100% + 20px) !important;
625
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
626
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
628
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
629
+ -webkit-transform: translate3d(-10px, 0, 0);
630
+ transform: translate3d(-10px, 0, 0);
631
+ -webkit-backface-visibility: hidden;
632
+ backface-visibility: hidden; }
633
+
634
+ .premium-banner-animation13.zoomout img,
635
+ .premium-banner-animation13.scale img {
636
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
637
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
638
+
639
+ .premium-banner-animation13.none:hover img {
640
+ -webkit-transform: translate3d(0, 0, 0);
641
+ transform: translate3d(0, 0, 0); }
642
+
643
+ .premium-banner-animation1.none:hover img,
644
+ .premium-banner-animation4.none:hover img {
645
+ -webkit-transform: translate3d(0, 0, 0);
646
+ transform: translate3d(0, 0, 0); }
647
+
648
+ .premium-banner-animation13.zoomin:hover img,
649
+ .premium-banner-animation1.zoomin:hover img,
650
+ .premium-banner-animation4.zoomin:hover img,
651
+ .premium-banner-animation8.zoomin:hover img,
652
+ .premium-banner-animation7.zoomin:hover img,
653
+ .premium-banner-animation9.zoomin:hover img,
654
+ .premium-banner-animation10.zoomin:hover img,
655
+ .premium-banner-animation11.zoomin:hover img {
656
+ -webkit-transform: translate3d(0, 0, 0) scale(1.1);
657
+ transform: translate3d(0, 0, 0) scale(1.1); }
658
+
659
+ .premium-banner-animation13.zoomout:hover img,
660
+ .premium-banner-animation1.zoomout:hover img,
661
+ .premium-banner-animation4.zoomout:hover img,
662
+ .premium-banner-animation8.zoomout:hover img,
663
+ .premium-banner-animation7.zoomout:hover img,
664
+ .premium-banner-animation9.zoomout:hover img,
665
+ .premium-banner-animation10.zoomout:hover img,
666
+ .premium-banner-animation11.zoomout:hover img {
667
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
668
+ transform: translate3d(0, 0, 0) scale(1); }
669
+
670
+ .premium-banner-animation13.scale:hover img,
671
+ .premium-banner-animation1.scale:hover img,
672
+ .premium-banner-animation4.scale:hover img,
673
+ .premium-banner-animation8.scale:hover img,
674
+ .premium-banner-animation7.scale:hover img,
675
+ .premium-banner-animation9.scale:hover img,
676
+ .premium-banner-animation10.scale:hover img,
677
+ .premium-banner-animation11.scale:hover img {
678
+ -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
679
+ transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
680
+
681
+ .premium-banner-animation13.grayscale:hover img,
682
+ .premium-banner-animation1.grayscale:hover img,
683
+ .premium-banner-animation4.grayscale:hover img,
684
+ .premium-banner-animation8.grayscale:hover img,
685
+ .premium-banner-animation7.grayscale:hover img,
686
+ .premium-banner-animation9.grayscale:hover img,
687
+ .premium-banner-animation10.grayscale:hover img,
688
+ .premium-banner-animation11.grayscale:hover img {
689
+ -webkit-transform: translate3d(0, 0, 0);
690
+ transform: translate3d(0, 0, 0);
691
+ -webkit-filter: grayscale(100%);
692
+ filter: grayscale(100%); }
693
+
694
+ .premium-banner-animation13.blur:hover img,
695
+ .premium-banner-animation1.blur:hover img,
696
+ .premium-banner-animation4.blur:hover,
697
+ .premium-banner-animation8.blur:hover img,
698
+ .premium-banner-animation7.blur:hover img,
699
+ .premium-banner-animation9.blur:hover img,
700
+ .premium-banner-animation10.blur:hover img,
701
+ .premium-banner-animation11.blur:hover img {
702
+ -webkit-transform: translate3d(0, 0, 0);
703
+ transform: translate3d(0, 0, 0);
704
+ -webkit-filter: blur(3px);
705
+ filter: blur(3px); }
706
+
707
+ .premium-banner-animation13 .premium-banner-ib-desc {
708
+ text-align: left; }
709
+
710
+ .premium-banner-animation13 .premium-banner-ib-title {
711
+ position: relative;
712
+ overflow: hidden;
713
+ padding: 5px 0 10px; }
714
+ .premium-banner-animation13 .premium-banner-ib-title::after {
715
+ position: absolute;
716
+ content: "";
717
+ bottom: 0;
718
+ left: 0;
719
+ width: 100%;
720
+ height: 2px;
721
+ background: #fff;
722
+ -webkit-transition: -webkit-transform 0.35s;
723
+ transition: -webkit-transform 0.35s;
724
+ transition: transform 0.35s;
725
+ transition: transform 0.35s, -webkit-transform 0.35s;
726
+ -webkit-transform: translate3d(-101%, 0, 0);
727
+ transform: translate3d(-101%, 0, 0); }
728
+
729
+ .premium-banner-animation13:hover .premium-banner-ib-title::after,
730
+ .premium-banner-animation13.active .premium-banner-ib-title::after {
731
+ -webkit-transform: translate3d(0, 0, 0);
732
+ transform: translate3d(0, 0, 0); }
733
+
734
+ .premium-banner-animation13 .premium-banner-ib-content,
735
+ .premium-banner-animation13 .premium-banner-read-more {
736
+ padding: 15px 0;
737
+ opacity: 0;
738
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
739
+ transition: opacity 0.35s, -webkit-transform 0.35s;
740
+ transition: opacity 0.35s, transform 0.35s;
741
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
742
+ -webkit-transform: translate3d(100%, 0, 0);
743
+ transform: translate3d(100%, 0, 0); }
744
+
745
+ .premium-banner-animation13:hover .premium-banner-ib-content,
746
+ .premium-banner-animation13.active .premium-banner-ib-content,
747
+ .premium-banner-animation13:hover .premium-banner-read-more,
748
+ .premium-banner-animation13.active .premium-banner-read-more {
749
+ opacity: 1;
750
+ -webkit-transform: translate3d(0, 0, 0);
751
+ transform: translate3d(0, 0, 0); }
752
+
753
+ .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
754
+ left: 50%;
755
+ width: auto !important;
756
+ height: 100%;
757
+ max-width: none;
758
+ -webkit-transform: translateX(-50%);
759
+ -ms-transform: translateX(-50%);
760
+ transform: translateX(-50%); }
761
+
762
+ .premium-banner-ib img {
763
+ border: none;
764
+ padding: 0;
765
+ margin: 0; }
766
+
767
+ .premium-banner-animation7 img {
768
+ width: -webkit-calc(100% + 40px) !important;
769
+ width: calc(100% + 40px) !important;
770
+ max-width: -webkit-calc(100% + 40px) !important;
771
+ max-width: calc(100% + 40px) !important;
772
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
773
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
775
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
776
+
777
+ .premium-banner-animation7 .premium-banner-brlr {
778
+ width: 7px; }
779
+
780
+ .premium-banner-animation7 .premium-banner-brtb {
781
+ height: 7px; }
782
+
783
+ .premium-banner-animation7 .premium-banner-br {
784
+ position: absolute;
785
+ z-index: 1;
786
+ background-color: white;
787
+ -webkit-transition: all 0.3s ease-in-out;
788
+ transition: all 0.3s ease-in-out;
789
+ -webkit-transition-delay: 0.2s;
790
+ transition-delay: 0.2s; }
791
+
792
+ .premium-banner-animation7 .premium-banner-bleft {
793
+ left: 30px;
794
+ top: -webkit-calc(100% - 150px);
795
+ top: calc(100% - 150px);
796
+ height: 0; }
797
+
798
+ .premium-banner-animation7 .premium-banner-bright {
799
+ right: 30px;
800
+ bottom: -webkit-calc(100% - 150px);
801
+ bottom: calc(100% - 150px);
802
+ height: 0; }
803
+
804
+ .premium-banner-animation7 .premium-banner-bottom {
805
+ right: -webkit-calc(100% - 150px);
806
+ right: calc(100% - 150px);
807
+ bottom: 30px;
808
+ width: 0; }
809
+
810
+ .premium-banner-animation7 .premium-banner-btop {
811
+ left: -webkit-calc(100% - 150px);
812
+ left: calc(100% - 150px);
813
+ top: 30px;
814
+ width: 0; }
815
+
816
+ .premium-banner-animation7 .premium-banner-ib-desc {
817
+ padding: 70px;
818
+ display: table; }
819
+ .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
820
+ display: table-cell;
821
+ vertical-align: middle; }
822
+
823
+ .premium-banner-animation7 .premium-banner-ib-title {
824
+ margin-top: 0; }
825
+
826
+ .premium-banner-animation7 .premium-banner-ib-title,
827
+ .premium-banner-animation7 img {
828
+ -webkit-transform: translate3d(-30px, 0, 0);
829
+ transform: translate3d(-30px, 0, 0); }
830
+
831
+ .premium-banner-animation7.zoomout img,
832
+ .premium-banner-animation7.scale img {
833
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
834
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
835
+
836
+ .premium-banner-animation7 .premium-banner-ib-content,
837
+ .premium-banner-animation7 .premium-banner-read-more {
838
+ margin-top: 10px; }
839
+
840
+ .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
841
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
842
+ transition: opacity 0.35s, -webkit-transform 0.35s;
843
+ transition: opacity 0.35s, transform 0.35s;
844
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
845
+
846
+ .premium-banner-animation7 .premium-banner-ib-title,
847
+ .premium-banner-animation7 .premium-banner-ib-content,
848
+ .premium-banner-animation7 .premium-banner-read-more {
849
+ opacity: 0;
850
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
851
+ transition: opacity 0.35s, -webkit-transform 0.35s;
852
+ transition: opacity 0.35s, transform 0.35s;
853
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
854
+
855
+ .premium-banner-animation7:hover .premium-banner-ib-content,
856
+ .premium-banner-animation7.active .premium-banner-ib-content,
857
+ .premium-banner-animation7:hover .premium-banner-read-more,
858
+ .premium-banner-animation7.active .premium-banner-read-more,
859
+ .premium-banner-animation7:hover .premium-banner-ib-title,
860
+ .premium-banner-animation7.active .premium-banner-ib-title {
861
+ opacity: 1;
862
+ -webkit-transform: translate3d(0, 0, 0);
863
+ transform: translate3d(0, 0, 0); }
864
+
865
+ .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
866
+ top: 30px;
867
+ height: 70px; }
868
+
869
+ .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
870
+ bottom: 30px;
871
+ height: 70px; }
872
+
873
+ .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
874
+ right: 30px;
875
+ width: 70px; }
876
+
877
+ .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
878
+ left: 30px;
879
+ width: 70px; }
880
+
881
+ .premium-banner-animation7:hover .premium-banner-ib-content,
882
+ .premium-banner-animation7:hover .premium-banner-read-more,
883
+ .premium-banner-animation7:hover .premium-banner-ib-title,
884
+ .premium-banner-animation7:hover img {
885
+ -webkit-transition-delay: 0.15s;
886
+ transition-delay: 0.15s; }
887
+
888
+ .premium-banner-animation8 img {
889
+ width: -webkit-calc(100% + 40px) !important;
890
+ width: calc(100% + 40px) !important;
891
+ max-width: -webkit-calc(100% + 40px) !important;
892
+ max-width: calc(100% + 40px) !important;
893
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
894
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
896
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
897
+
898
+ .premium-banner-animation8 .premium-banner-brlr {
899
+ width: 7px; }
900
+
901
+ .premium-banner-animation8 .premium-banner-brtb {
902
+ height: 7px; }
903
+
904
+ .premium-banner-animation8 .premium-banner-br {
905
+ position: absolute;
906
+ z-index: 1;
907
+ background-color: white;
908
+ -webkit-transition: all 0.3s ease-in-out;
909
+ transition: all 0.3s ease-in-out;
910
+ -webkit-transition-delay: 0.2s;
911
+ transition-delay: 0.2s; }
912
+
913
+ .premium-banner-animation8 .premium-banner-bleft {
914
+ left: 30px;
915
+ top: 50%;
916
+ -webkit-transform: translateY(-50%);
917
+ -ms-transform: translateY(-50%);
918
+ transform: translateY(-50%);
919
+ height: 0; }
920
+
921
+ .premium-banner-animation8 .premium-banner-bright {
922
+ right: 30px;
923
+ top: 50%;
924
+ -webkit-transform: translateY(-50%);
925
+ -ms-transform: translateY(-50%);
926
+ transform: translateY(-50%);
927
+ height: 0; }
928
+
929
+ .premium-banner-animation8 .premium-banner-bottom {
930
+ left: 50%;
931
+ -webkit-transform: translateX(-50%);
932
+ -ms-transform: translateX(-50%);
933
+ transform: translateX(-50%);
934
+ bottom: 30px;
935
+ width: 0; }
936
+
937
+ .premium-banner-animation8 .premium-banner-btop {
938
+ left: 50%;
939
+ -webkit-transform: translateX(-50%);
940
+ -ms-transform: translateX(-50%);
941
+ transform: translateX(-50%);
942
+ top: 30px;
943
+ width: 0; }
944
+
945
+ .premium-banner-animation8 .premium-banner-ib-desc {
946
+ padding: 70px;
947
+ display: table; }
948
+ .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
949
+ display: table-cell;
950
+ vertical-align: middle; }
951
+
952
+ .premium-banner-animation8 .premium-banner-ib-title {
953
+ margin-top: 0; }
954
+
955
+ .premium-banner-animation8 .premium-banner-ib-title,
956
+ .premium-banner-animation8 img {
957
+ -webkit-transform: translate3d(-30px, 0, 0);
958
+ transform: translate3d(-30px, 0, 0); }
959
+
960
+ .premium-banner-animation8.zoomout img,
961
+ .premium-banner-animation8.scale img {
962
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
963
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
964
+
965
+ .premium-banner-animation8 .premium-banner-ib-content,
966
+ .premium-banner-animation8 .premium-banner-read-more {
967
+ margin-top: 10px; }
968
+
969
+ .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
970
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
971
+ transition: opacity 0.35s, -webkit-transform 0.35s;
972
+ transition: opacity 0.35s, transform 0.35s;
973
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
974
+
975
+ .premium-banner-animation8 .premium-banner-ib-title,
976
+ .premium-banner-animation8 .premium-banner-ib-content,
977
+ .premium-banner-animation8 .premium-banner-read-more {
978
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
979
+ transition: opacity 0.35s, -webkit-transform 0.35s;
980
+ transition: opacity 0.35s, transform 0.35s;
981
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
982
+ opacity: 0; }
983
+
984
+ .premium-banner-animation8:hover .premium-banner-ib-content,
985
+ .premium-banner-animation8.active .premium-banner-ib-content,
986
+ .premium-banner-animation8:hover .premium-banner-read-more,
987
+ .premium-banner-animation8.active .premium-banner-read-more,
988
+ .premium-banner-animation8:hover .premium-banner-ib-title,
989
+ .premium-banner-animation8.active .premium-banner-ib-title {
990
+ opacity: 1;
991
+ -webkit-transform: translate3d(0, 0, 0);
992
+ transform: translate3d(0, 0, 0); }
993
+
994
+ .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
995
+ height: -webkit-calc(100% - 61px);
996
+ height: calc(100% - 61px); }
997
+
998
+ .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
999
+ height: -webkit-calc(100% - 61px);
1000
+ height: calc(100% - 61px); }
1001
+
1002
+ .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1003
+ width: -webkit-calc(100% - 61px);
1004
+ width: calc(100% - 61px); }
1005
+
1006
+ .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1007
+ width: -webkit-calc(100% - 61px);
1008
+ width: calc(100% - 61px); }
1009
+
1010
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1011
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1012
+ .premium-banner-animation8:hover .premium-banner-read-more,
1013
+ .premium-banner-animation8:hover img {
1014
+ -webkit-transition-delay: 0.15s;
1015
+ transition-delay: 0.15s; }
1016
+
1017
+ .premium-banner-animation9 img {
1018
+ width: -webkit-calc(100% + 20px) !important;
1019
+ width: calc(100% + 20px) !important;
1020
+ max-width: -webkit-calc(100% + 20px) !important;
1021
+ max-width: calc(100% + 20px) !important;
1022
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1023
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1025
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1026
+ -webkit-transform: scale(1.2);
1027
+ -ms-transform: scale(1.2);
1028
+ transform: scale(1.2); }
1029
+
1030
+ .premium-banner-animation9 .premium-banner-ib-desc {
1031
+ width: 100%;
1032
+ height: 100%; }
1033
+ .premium-banner-animation9 .premium-banner-ib-desc::before {
1034
+ position: absolute;
1035
+ top: 50%;
1036
+ left: 50%;
1037
+ width: 80%;
1038
+ height: 1px;
1039
+ background: #fff;
1040
+ content: "";
1041
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1042
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1043
+ transition: opacity 0.35s, transform 0.35s;
1044
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1045
+ -webkit-transform: translate3d(-50%, -50%, 0);
1046
+ transform: translate3d(-50%, -50%, 0); }
1047
+ .premium-banner-animation9 .premium-banner-ib-desc::after {
1048
+ position: absolute;
1049
+ top: 50%;
1050
+ left: 50%;
1051
+ width: 80%;
1052
+ height: 1px;
1053
+ background: #fff;
1054
+ content: "";
1055
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1056
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1057
+ transition: opacity 0.35s, transform 0.35s;
1058
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1059
+ -webkit-transform: translate3d(-50%, -50%, 0);
1060
+ transform: translate3d(-50%, -50%, 0); }
1061
+
1062
+ .premium-banner-animation9 .premium-banner-ib-title {
1063
+ position: absolute;
1064
+ top: 50%;
1065
+ left: 0;
1066
+ width: 100%;
1067
+ -webkit-transition: -webkit-transform 0.35s;
1068
+ transition: -webkit-transform 0.35s;
1069
+ transition: transform 0.35s;
1070
+ transition: transform 0.35s, -webkit-transform 0.35s;
1071
+ -webkit-transform: translate3d(0, -70px, 0);
1072
+ transform: translate3d(0, -70px, 0);
1073
+ margin-top: 0;
1074
+ padding: 0 10%; }
1075
+
1076
+ .premium-banner-animation9:hover .premium-banner-ib-title,
1077
+ .premium-banner-animation9.active .premium-banner-ib-title {
1078
+ -webkit-transform: translate3d(0, -80px, 0);
1079
+ transform: translate3d(0, -80px, 0); }
1080
+
1081
+ .premium-banner-animation9 .premium-banner-ib-content,
1082
+ .premium-banner-animation9 .premium-banner-read-more {
1083
+ position: absolute;
1084
+ top: 50%;
1085
+ left: 0;
1086
+ width: 100%;
1087
+ -webkit-transition: -webkit-transform 0.35s;
1088
+ transition: -webkit-transform 0.35s;
1089
+ transition: transform 0.35s;
1090
+ transition: transform 0.35s, -webkit-transform 0.35s;
1091
+ padding: 0 10%;
1092
+ -webkit-transform: translate3d(0, 35px, 0);
1093
+ transform: translate3d(0, 35px, 0); }
1094
+
1095
+ .premium-banner-animation9 .premium-banner-read-more {
1096
+ top: 75%; }
1097
+
1098
+ .premium-banner-animation9:hover .premium-banner-ib-content,
1099
+ .premium-banner-animation9.active .premium-banner-ib-content,
1100
+ .premium-banner-animation9:hover .premium-banner-read-more,
1101
+ .premium-banner-animation9.active .premium-banner-read-more {
1102
+ -webkit-transform: translate3d(0, 45px, 0);
1103
+ transform: translate3d(0, 45px, 0); }
1104
+
1105
+ .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1106
+ .premium-banner-animation9.active .premium-banner-ib-desc::before {
1107
+ opacity: 0.5;
1108
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1109
+ transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1110
+
1111
+ .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1112
+ .premium-banner-animation9.active .premium-banner-ib-desc::after {
1113
+ opacity: 0.5;
1114
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1115
+ transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1116
+
1117
+ .premium-banner-animation9:hover img {
1118
+ -webkit-transform: scale(1);
1119
+ -ms-transform: scale(1);
1120
+ transform: scale(1); }
1121
+
1122
+ .premium-banner-animation10 img {
1123
+ width: -webkit-calc(100% + 20px) !important;
1124
+ width: calc(100% + 20px) !important;
1125
+ max-width: -webkit-calc(100% + 20px) !important;
1126
+ max-width: calc(100% + 20px) !important;
1127
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1128
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1130
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1131
+
1132
+ .premium-banner-animation10 .premium-banner-ib-title {
1133
+ position: relative;
1134
+ overflow: hidden;
1135
+ padding: 5px 0 15px;
1136
+ -webkit-transition: -webkit-transform 0.35s;
1137
+ transition: -webkit-transform 0.35s;
1138
+ transition: transform 0.35s;
1139
+ transition: transform 0.35s, -webkit-transform 0.35s;
1140
+ -webkit-transform: translate3d(0, 20px, 0);
1141
+ transform: translate3d(0, 20px, 0);
1142
+ margin-bottom: 0; }
1143
+ .premium-banner-animation10 .premium-banner-ib-title::after {
1144
+ position: absolute;
1145
+ content: "";
1146
+ bottom: 0;
1147
+ left: 0;
1148
+ width: 100%;
1149
+ height: 3px;
1150
+ background: #fff;
1151
+ opacity: 0;
1152
+ -webkit-transform: translate3d(0, 100%, 0);
1153
+ transform: translate3d(0, 100%, 0);
1154
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1155
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1156
+ transition: opacity 0.35s, transform 0.35s;
1157
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1158
+
1159
+ .premium-banner-animation10:hover .premium-banner-ib-title,
1160
+ .premium-banner-animation10.active .premium-banner-ib-title {
1161
+ -webkit-transform: translate3d(0, 0, 0);
1162
+ transform: translate3d(0, 0, 0); }
1163
+
1164
+ .premium-banner-animation10:hover .premium-banner-ib-title::after,
1165
+ .premium-banner-animation10.active .premium-banner-ib-title::after {
1166
+ opacity: 1;
1167
+ -webkit-transform: translate3d(0, 0, 0);
1168
+ transform: translate3d(0, 0, 0); }
1169
+
1170
+ .premium-banner-animation10.zoomout img,
1171
+ .premium-banner-animation10.scale img {
1172
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1173
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1174
+
1175
+ .premium-banner-animation10 .premium-banner-ib-content,
1176
+ .premium-banner-animation10 .premium-banner-read-more {
1177
+ padding-top: 15px;
1178
+ opacity: 0;
1179
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1180
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1181
+ transition: opacity 0.35s, transform 0.35s;
1182
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1183
+ -webkit-transform: translate3d(0, 100%, 0);
1184
+ transform: translate3d(0, 100%, 0); }
1185
+
1186
+ .premium-banner-animation10 .premium-banner-read-more {
1187
+ padding: 0; }
1188
+
1189
+ .premium-banner-animation10:hover .premium-banner-ib-content,
1190
+ .premium-banner-animation10.active .premium-banner-ib-content,
1191
+ .premium-banner-animation10:hover .premium-banner-read-more,
1192
+ .premium-banner-animation10.active .premium-banner-read-more {
1193
+ opacity: 1;
1194
+ -webkit-transform: translate3d(0, 0, 0);
1195
+ transform: translate3d(0, 0, 0); }
1196
+
1197
+ .premium-banner-animation11 {
1198
+ -webkit-transition: -webkit-transform 1s ease-out;
1199
+ transition: -webkit-transform 1s ease-out;
1200
+ transition: transform 1s ease-out;
1201
+ transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1202
+ -webkit-transition-delay: 0.125s;
1203
+ transition-delay: 0.125s; }
1204
+ .premium-banner-animation11 .premium-banner-ib-desc {
1205
+ position: absolute;
1206
+ z-index: 5;
1207
+ -webkit-transform: translate3d(-30px, 0, 0);
1208
+ transform: translate3d(-30px, 0, 0);
1209
+ opacity: 0;
1210
+ top: auto;
1211
+ bottom: 0;
1212
+ min-height: 25%;
1213
+ height: auto;
1214
+ max-height: 100%;
1215
+ text-align: left;
1216
+ padding: 30px;
1217
+ -webkit-transition: all 0.6s ease-out;
1218
+ transition: all 0.6s ease-out; }
1219
+ .premium-banner-animation11 img {
1220
+ width: 100%;
1221
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1222
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1224
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1225
+ .premium-banner-animation11 .premium-banner-ib-title {
1226
+ margin-bottom: 10px; }
1227
+ .premium-banner-animation11 .premium-banner-gradient {
1228
+ position: absolute;
1229
+ left: 0;
1230
+ top: 0;
1231
+ right: 0;
1232
+ bottom: 0; }
1233
+ .premium-banner-animation11 .premium-banner-gradient:after,
1234
+ .premium-banner-animation11 .premium-banner-gradient:before {
1235
+ position: absolute;
1236
+ content: "";
1237
+ left: 0;
1238
+ top: 0;
1239
+ right: 0;
1240
+ bottom: 0;
1241
+ -webkit-transform: translate3d(-100%, 0, 0);
1242
+ transform: translate3d(-100%, 0, 0);
1243
+ background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1244
+ background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
+ z-index: 2; }
1246
+ .premium-banner-animation11 .premium-banner-gradient:before {
1247
+ mix-blend-mode: color; }
1248
+ .premium-banner-animation11 .premium-banner-gradient:after {
1249
+ mix-blend-mode: multiply; }
1250
+ .premium-banner-animation11:hover .premium-banner-ib-desc,
1251
+ .premium-banner-animation11.active .premium-banner-ib-desc {
1252
+ opacity: 1;
1253
+ -webkit-transform: translate3d(0, 0, 0);
1254
+ transform: translate3d(0, 0, 0); }
1255
+ .premium-banner-animation11:hover .premium-banner-gradient:after,
1256
+ .premium-banner-animation11:hover .premium-banner-gradient:before,
1257
+ .premium-banner-animation11.active .premium-banner-gradient:after,
1258
+ .premium-banner-animation11.active .premium-banner-gradient:before {
1259
+ -webkit-transform: translate3d(0, 0, 0);
1260
+ transform: translate3d(0, 0, 0); }
1261
+ .premium-banner-animation11.zoomout img,
1262
+ .premium-banner-animation11.scale img {
1263
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1264
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1265
+
1266
+ /**************** Premium CountDown *************/
1267
+ /************************************************/
1268
+ .premium-countdown {
1269
+ -js-display: flex;
1270
+ display: -webkit-box;
1271
+ display: -webkit-flex;
1272
+ display: -moz-box;
1273
+ display: -ms-flexbox;
1274
+ display: flex;
1275
+ text-align: center; }
1276
+
1277
+ .countdown-row {
1278
+ display: block;
1279
+ text-align: center; }
1280
+
1281
+ .countdown .countdown-section {
1282
+ display: inline-block;
1283
+ max-width: 100%;
1284
+ margin-bottom: 15px;
1285
+ -js-display: inline-flex;
1286
+ display: -webkit-inline-box;
1287
+ display: -webkit-inline-flex;
1288
+ display: -moz-inline-box;
1289
+ display: -ms-inline-flexbox;
1290
+ display: inline-flex;
1291
+ -webkit-box-align: center;
1292
+ -webkit-align-items: center;
1293
+ -moz-box-align: center;
1294
+ -ms-flex-align: center;
1295
+ align-items: center; }
1296
+ .countdown .countdown-section:last-child {
1297
+ margin-right: 0; }
1298
+
1299
+ .countdown span.countdown-amount {
1300
+ font-size: 70px;
1301
+ line-height: 1;
1302
+ padding: 40px; }
1303
+
1304
+ .countdown .pre_time-mid {
1305
+ display: block; }
1306
+
1307
+ .premium-countdown-separator-yes .countdown_separator {
1308
+ display: block;
1309
+ margin: 0 50px;
1310
+ font-size: 30px; }
1311
+
1312
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1313
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1314
+ display: none; }
1315
+
1316
+ /**
1317
+ * Digit and unit styles
1318
+ */
1319
+ .side .countdown-section .countdown-period {
1320
+ vertical-align: bottom; }
1321
+
1322
+ .countdown .countdown-section .countdown-period {
1323
+ font-size: 17px;
1324
+ line-height: 3em; }
1325
+
1326
+ .side .countdown-section .countdown-amount,
1327
+ .side .countdown-section .countdown-period {
1328
+ display: inline-block; }
1329
+
1330
+ .side .countdown-section .countdown-amount {
1331
+ margin-right: 5px; }
1332
+
1333
+ .down .countdown-section .countdown-amount,
1334
+ .down .countdown-section .countdown-period {
1335
+ display: block; }
1336
+
1337
+ /**
1338
+ * Flip Layout
1339
+ */
1340
+ .premium-countdown-flip .premium-countdown-block {
1341
+ text-align: center;
1342
+ -js-display: inline-flex;
1343
+ display: -webkit-inline-box;
1344
+ display: -webkit-inline-flex;
1345
+ display: -moz-inline-box;
1346
+ display: -ms-inline-flexbox;
1347
+ display: inline-flex;
1348
+ -webkit-box-align: center;
1349
+ -webkit-align-items: center;
1350
+ -moz-box-align: center;
1351
+ -ms-flex-align: center;
1352
+ align-items: center; }
1353
+ .premium-countdown-flip .premium-countdown-block:last-child {
1354
+ margin-right: 0; }
1355
+
1356
+ .premium-countdown-flip .premium-countdown-label {
1357
+ overflow: hidden;
1358
+ color: #1a1a1a;
1359
+ text-transform: uppercase; }
1360
+
1361
+ .premium-countdown-flip .premium-countdown-figure {
1362
+ position: relative;
1363
+ height: 110px;
1364
+ width: 100px;
1365
+ line-height: 107px;
1366
+ background-color: #fff;
1367
+ -webkit-border-radius: 10px;
1368
+ border-radius: 10px;
1369
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
1370
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
1371
+ .premium-countdown-flip .premium-countdown-figure:last-child {
1372
+ margin-right: 0; }
1373
+ .premium-countdown-flip .premium-countdown-figure > span {
1374
+ position: absolute;
1375
+ left: 0;
1376
+ right: 0;
1377
+ margin: auto;
1378
+ font-weight: 700; }
1379
+ .premium-countdown-flip .premium-countdown-figure .top {
1380
+ z-index: 3;
1381
+ -webkit-transform-origin: 50% 100%;
1382
+ -ms-transform-origin: 50% 100%;
1383
+ transform-origin: 50% 100%;
1384
+ -webkit-transform: perspective(200px);
1385
+ transform: perspective(200px);
1386
+ -webkit-backface-visibility: hidden;
1387
+ backface-visibility: hidden; }
1388
+ .premium-countdown-flip .premium-countdown-figure .bottom {
1389
+ z-index: 1; }
1390
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
1391
+ content: "";
1392
+ position: absolute;
1393
+ display: block;
1394
+ top: 0;
1395
+ left: 0;
1396
+ width: 100%;
1397
+ height: 50%;
1398
+ background-color: rgba(0, 0, 0, 0.02); }
1399
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1400
+ -webkit-backface-visibility: hidden;
1401
+ backface-visibility: hidden;
1402
+ z-index: 4;
1403
+ bottom: 0;
1404
+ -webkit-transform-origin: 50% 0;
1405
+ -ms-transform-origin: 50% 0;
1406
+ transform-origin: 50% 0;
1407
+ -webkit-transform: perspective(200px) rotateX(180deg);
1408
+ transform: perspective(200px) rotateX(180deg); }
1409
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
1410
+ position: absolute;
1411
+ top: -100%;
1412
+ left: 0;
1413
+ right: 0;
1414
+ margin: auto; }
1415
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
1416
+ z-index: 2;
1417
+ top: 0; }
1418
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1419
+ position: absolute;
1420
+ top: 0;
1421
+ left: 0;
1422
+ right: 0;
1423
+ margin: auto; }
1424
+ .premium-countdown-flip .premium-countdown-figure .top,
1425
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
1426
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1427
+ height: 50%;
1428
+ overflow: hidden;
1429
+ background-color: #f7f7f7;
1430
+ -webkit-border-top-left-radius: 10px;
1431
+ border-top-left-radius: 10px;
1432
+ -webkit-border-top-right-radius: 10px;
1433
+ border-top-right-radius: 10px; }
1434
+ .premium-countdown-flip .premium-countdown-figure .top-back {
1435
+ -webkit-border-bottom-left-radius: 10px;
1436
+ border-bottom-left-radius: 10px;
1437
+ -webkit-border-bottom-right-radius: 10px;
1438
+ border-bottom-right-radius: 10px; }
1439
+ .premium-countdown-flip .premium-countdown-figure .top::after,
1440
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1441
+ content: "";
1442
+ position: absolute;
1443
+ z-index: -1;
1444
+ left: 0;
1445
+ bottom: 0;
1446
+ width: 100%;
1447
+ height: 100%;
1448
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1449
+
1450
+ .side .premium-countdown-figure,
1451
+ .side .premium-countdown-label {
1452
+ display: inline-block; }
1453
+
1454
+ .side .premium-countdown-figure {
1455
+ margin-right: 5px; }
1456
+
1457
+ .down .premium-countdown-figure,
1458
+ .down .premium-countdown-label {
1459
+ display: block; }
1460
+
1461
+ .down .premium-countdown-label {
1462
+ width: 100%; }
1463
+
1464
+ /**************** Premium Carousel ****************/
1465
+ /**************************************************/
1466
+ .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
1467
+ -js-display: flex;
1468
+ display: -webkit-box;
1469
+ display: -webkit-flex;
1470
+ display: -moz-box;
1471
+ display: -ms-flexbox;
1472
+ display: flex;
1473
+ -webkit-box-align: center;
1474
+ -webkit-align-items: center;
1475
+ -moz-box-align: center;
1476
+ -ms-flex-align: center;
1477
+ align-items: center;
1478
+ -webkit-box-pack: center;
1479
+ -webkit-justify-content: center;
1480
+ -moz-box-pack: center;
1481
+ -ms-flex-pack: center;
1482
+ justify-content: center;
1483
+ width: 2em;
1484
+ height: 2em;
1485
+ line-height: 0;
1486
+ text-align: center;
1487
+ position: absolute;
1488
+ z-index: 99;
1489
+ cursor: pointer;
1490
+ -webkit-transition: all 0.3s ease-in-out;
1491
+ transition: all 0.3s ease-in-out;
1492
+ -webkit-appearance: inherit;
1493
+ border: none;
1494
+ -webkit-box-shadow: none;
1495
+ box-shadow: none; }
1496
+
1497
+ .premium-tabs-nav-list a.carousel-arrow,
1498
+ .premium-fb-rev-container a.carousel-arrow,
1499
+ .premium-blog-wrap a.carousel-arrow,
1500
+ .premium-hscroll-wrap a.carousel-arrow,
1501
+ .premium-twitter-feed-wrapper a.carousel-arrow,
1502
+ .premium-facebook-feed-wrapper a.carousel-arrow,
1503
+ .premium-instafeed-container a.carousel-arrow,
1504
+ .premium-persons-container a.carousel-arrow {
1505
+ -js-display: flex;
1506
+ display: -webkit-box;
1507
+ display: -webkit-flex;
1508
+ display: -moz-box;
1509
+ display: -ms-flexbox;
1510
+ display: flex;
1511
+ -webkit-box-align: center;
1512
+ -webkit-align-items: center;
1513
+ -moz-box-align: center;
1514
+ -ms-flex-align: center;
1515
+ align-items: center;
1516
+ -webkit-box-pack: center;
1517
+ -webkit-justify-content: center;
1518
+ -moz-box-pack: center;
1519
+ -ms-flex-pack: center;
1520
+ justify-content: center;
1521
+ width: 2em;
1522
+ height: 2em;
1523
+ line-height: 0;
1524
+ text-align: center;
1525
+ position: absolute;
1526
+ z-index: 99;
1527
+ cursor: pointer;
1528
+ -webkit-transition: all 0.3s ease-in-out;
1529
+ transition: all 0.3s ease-in-out;
1530
+ -webkit-appearance: inherit;
1531
+ border: none;
1532
+ -webkit-box-shadow: none;
1533
+ box-shadow: none; }
1534
+
1535
+ div[class^="premium-"] .slick-arrow i {
1536
+ display: block; }
1537
+
1538
+ .ver-carousel-arrow.carousel-next i {
1539
+ margin-bottom: -3px; }
1540
+
1541
+ .premium-carousel-wrapper a.slick-arrow:hover {
1542
+ -webkit-box-shadow: none !important;
1543
+ box-shadow: none !important; }
1544
+
1545
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
1546
+ visibility: hidden; }
1547
+
1548
+ .premium-carousel-wrapper a.carousel-arrow {
1549
+ top: 50%; }
1550
+
1551
+ .premium-tabs-nav-list a.carousel-arrow,
1552
+ .premium-fb-rev-container a.carousel-arrow,
1553
+ .premium-blog-wrap a.carousel-arrow,
1554
+ .premium-hscroll-wrap a.carousel-arrow,
1555
+ .premium-twitter-feed-wrapper a.carousel-arrow,
1556
+ .premium-facebook-feed-wrapper a.carousel-arrow,
1557
+ .premium-instafeed-container a.carousel-arrow,
1558
+ .premium-persons-container a.carousel-arrow {
1559
+ top: 50%;
1560
+ -webkit-transform: translateY(-50%);
1561
+ -ms-transform: translateY(-50%);
1562
+ transform: translateY(-50%); }
1563
+
1564
+ .premium-carousel-wrapper a.ver-carousel-arrow {
1565
+ left: 50%;
1566
+ -webkit-transform: translateX(-50%);
1567
+ -ms-transform: translateX(-50%);
1568
+ transform: translateX(-50%); }
1569
+
1570
+ a.carousel-arrow.carousel-next {
1571
+ right: -20px; }
1572
+
1573
+ a.carousel-arrow.carousel-prev {
1574
+ left: -20px; }
1575
+
1576
+ a.ver-carousel-arrow.carousel-next {
1577
+ bottom: -56px; }
1578
+
1579
+ a.ver-carousel-arrow.carousel-prev {
1580
+ top: -45px; }
1581
+
1582
+ a.circle-bg {
1583
+ -webkit-border-radius: 100%;
1584
+ border-radius: 100%; }
1585
+
1586
+ a.circle-border {
1587
+ -webkit-border-radius: 100%;
1588
+ border-radius: 100%;
1589
+ border: solid black; }
1590
+
1591
+ a.square-border {
1592
+ border: solid black; }
1593
+
1594
+ .premium-carousel-dots-below ul.slick-dots,
1595
+ .premium-blog-wrap ul.slick-dots,
1596
+ .premium-fb-rev-reviews ul.slick-dots {
1597
+ position: relative;
1598
+ bottom: 0;
1599
+ list-style: none;
1600
+ text-align: center;
1601
+ margin: 0;
1602
+ padding: 0; }
1603
+
1604
+ .premium-carousel-dots-above ul.slick-dots {
1605
+ position: absolute;
1606
+ -js-display: flex;
1607
+ display: -webkit-box;
1608
+ display: -webkit-flex;
1609
+ display: -moz-box;
1610
+ display: -ms-flexbox;
1611
+ display: flex;
1612
+ width: auto;
1613
+ top: 50%;
1614
+ bottom: auto;
1615
+ -webkit-transform: translateY(-50%);
1616
+ -ms-transform: translateY(-50%);
1617
+ transform: translateY(-50%);
1618
+ -webkit-box-orient: vertical;
1619
+ -webkit-box-direction: normal;
1620
+ -webkit-flex-direction: column;
1621
+ -moz-box-orient: vertical;
1622
+ -moz-box-direction: normal;
1623
+ -ms-flex-direction: column;
1624
+ flex-direction: column; }
1625
+
1626
+ ul.slick-dots li {
1627
+ font-size: 10px;
1628
+ -js-display: inline-flex;
1629
+ display: -webkit-inline-box;
1630
+ display: -webkit-inline-flex;
1631
+ display: -moz-inline-box;
1632
+ display: -ms-inline-flexbox;
1633
+ display: inline-flex;
1634
+ -webkit-box-pack: center;
1635
+ -webkit-justify-content: center;
1636
+ -moz-box-pack: center;
1637
+ -ms-flex-pack: center;
1638
+ justify-content: center;
1639
+ -webkit-box-align: center;
1640
+ -webkit-align-items: center;
1641
+ -moz-box-align: center;
1642
+ -ms-flex-align: center;
1643
+ align-items: center;
1644
+ margin: 5px;
1645
+ width: 20px;
1646
+ height: 20px;
1647
+ cursor: pointer; }
1648
+
1649
+ /*
1650
+ * Custom Navigation Dot
1651
+ */
1652
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
1653
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1654
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1655
+ display: none; }
1656
+
1657
+ .premium-carousel-wrapper ul.slick-dots svg {
1658
+ width: 20px;
1659
+ height: 20px; }
1660
+
1661
+ /* Ripple Out */
1662
+ @-webkit-keyframes hvr-ripple-out {
1663
+ 0% {
1664
+ -webkit-transform: scale(1);
1665
+ transform: scale(1);
1666
+ opacity: 1; }
1667
+ 100% {
1668
+ -webkit-transform: scale(1.5);
1669
+ transform: scale(1.5);
1670
+ opacity: 0; } }
1671
+ @keyframes hvr-ripple-out {
1672
+ 0% {
1673
+ -webkit-transform: scale(1);
1674
+ transform: scale(1);
1675
+ opacity: 1; }
1676
+ 100% {
1677
+ -webkit-transform: scale(1.5);
1678
+ transform: scale(1.5);
1679
+ opacity: 0; } }
1680
+
1681
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
1682
+ padding-bottom: 1px; }
1683
+
1684
+ .premium-carousel-ripple-yes ul.slick-dots li {
1685
+ position: relative; }
1686
+ .premium-carousel-ripple-yes ul.slick-dots li i {
1687
+ position: relative;
1688
+ z-index: 1; }
1689
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1690
+ content: "";
1691
+ position: absolute;
1692
+ -webkit-transform: scale(1);
1693
+ -ms-transform: scale(1);
1694
+ transform: scale(1);
1695
+ top: 0;
1696
+ right: 0;
1697
+ bottom: 0;
1698
+ left: 0;
1699
+ -webkit-border-radius: 50%;
1700
+ border-radius: 50%;
1701
+ pointer-events: none;
1702
+ background-color: rgba(0, 0, 0, 0.15); }
1703
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1704
+ background-color: rgba(0, 0, 0, 0.3); }
1705
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1706
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
1707
+ animation: hvr-ripple-out 1.3s infinite; }
1708
+
1709
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
1710
+ -webkit-transform: scale(1.25, 1.25);
1711
+ -ms-transform: scale(1.25, 1.25);
1712
+ transform: scale(1.25, 1.25);
1713
+ -webkit-transition: all 0.3s ease-in-out !important;
1714
+ transition: all 0.3s ease-in-out !important; }
1715
+
1716
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
1717
+ -webkit-transform: scale(1, 1);
1718
+ -ms-transform: scale(1, 1);
1719
+ transform: scale(1, 1); }
1720
+
1721
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
1722
+ float: right; }
1723
+
1724
+ /**************** Premium Counter ***************/
1725
+ /************************************************/
1726
+ .premium-counter-area {
1727
+ padding: 10px 0;
1728
+ -js-display: flex;
1729
+ display: -webkit-box;
1730
+ display: -webkit-flex;
1731
+ display: -moz-box;
1732
+ display: -ms-flexbox;
1733
+ display: flex;
1734
+ -webkit-box-pack: center;
1735
+ -webkit-justify-content: center;
1736
+ -moz-box-pack: center;
1737
+ -ms-flex-pack: center;
1738
+ justify-content: center;
1739
+ -webkit-box-align: center;
1740
+ -webkit-align-items: center;
1741
+ -moz-box-align: center;
1742
+ -ms-flex-align: center;
1743
+ align-items: center; }
1744
+ .premium-counter-area.top {
1745
+ -webkit-box-orient: vertical;
1746
+ -webkit-box-direction: normal;
1747
+ -webkit-flex-direction: column;
1748
+ -moz-box-orient: vertical;
1749
+ -moz-box-direction: normal;
1750
+ -ms-flex-direction: column;
1751
+ flex-direction: column; }
1752
+ .premium-counter-area.right {
1753
+ -webkit-box-orient: horizontal;
1754
+ -webkit-box-direction: reverse;
1755
+ -webkit-flex-direction: row-reverse;
1756
+ -moz-box-orient: horizontal;
1757
+ -moz-box-direction: reverse;
1758
+ -ms-flex-direction: row-reverse;
1759
+ flex-direction: row-reverse; }
1760
+ .premium-counter-area.right .premium-counter-icon {
1761
+ padding-left: 20px; }
1762
+ .premium-counter-area.left .premium-counter-icon {
1763
+ padding-right: 20px; }
1764
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
1765
+ vertical-align: text-top; }
1766
+ .premium-counter-area .premium-counter-icon span.icon {
1767
+ text-align: center;
1768
+ display: inline-block;
1769
+ vertical-align: middle; }
1770
+ .premium-counter-area .premium-counter-icon .circle {
1771
+ -webkit-border-radius: 100%;
1772
+ border-radius: 100%; }
1773
+ .premium-counter-area .premium-counter-icon img,
1774
+ .premium-counter-area .premium-counter-icon svg {
1775
+ width: 80px; }
1776
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
1777
+ height: 80px; }
1778
+ .premium-counter-area .premium-counter-title {
1779
+ padding: 0;
1780
+ margin: 0; }
1781
+ .premium-counter-area .premium-counter-value-wrap {
1782
+ -js-display: flex;
1783
+ display: -webkit-box;
1784
+ display: -webkit-flex;
1785
+ display: -moz-box;
1786
+ display: -ms-flexbox;
1787
+ display: flex;
1788
+ -webkit-box-align: center;
1789
+ -webkit-align-items: center;
1790
+ -moz-box-align: center;
1791
+ -ms-flex-align: center;
1792
+ align-items: center; }
1793
+
1794
+ .premium-init-wrapper.right {
1795
+ text-align: right; }
1796
+
1797
+ span.icon.flex-width {
1798
+ width: auto !important;
1799
+ height: auto !important; }
1800
+
1801
+ .premium-counter-area .premium-counter-init {
1802
+ font-size: 35px; }
1803
+
1804
+ /**************** Premium Image Separator ****************/
1805
+ /*********************************************************/
1806
+ .premium-image-separator-container {
1807
+ position: absolute;
1808
+ width: 100%;
1809
+ z-index: 2;
1810
+ top: auto;
1811
+ -webkit-transition: all 0.3s ease-in-out;
1812
+ transition: all 0.3s ease-in-out; }
1813
+ .premium-image-separator-container svg,
1814
+ .premium-image-separator-container img {
1815
+ display: inline-block !important;
1816
+ -webkit-mask-repeat: no-repeat;
1817
+ mask-repeat: no-repeat;
1818
+ -webkit-mask-position: center;
1819
+ mask-position: center; }
1820
+ .premium-image-separator-container .premium-image-separator-link {
1821
+ position: absolute;
1822
+ z-index: 9999;
1823
+ top: 0;
1824
+ left: 0;
1825
+ width: 100%;
1826
+ height: 100%;
1827
+ text-decoration: none; }
1828
+ .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
1829
+ -webkit-box-shadow: none !important;
1830
+ box-shadow: none !important;
1831
+ outline: none !important;
1832
+ border: none !important;
1833
+ text-decoration: none !important; }
1834
+ .premium-image-separator-container i {
1835
+ padding: 0.1em;
1836
+ -webkit-transition: all 0.3s ease-in-out;
1837
+ transition: all 0.3s ease-in-out; }
1838
+
1839
+ /**************** Premium Modal Box ****************/
1840
+ /***************************************************/
1841
+ .premium-modal-trigger-btn,
1842
+ .premium-modal-box-modal-lower-close {
1843
+ display: inline-block;
1844
+ padding: 6px 12px;
1845
+ margin-bottom: 0;
1846
+ font-size: 14px;
1847
+ font-weight: normal;
1848
+ line-height: 1.42857143;
1849
+ text-align: center;
1850
+ white-space: nowrap;
1851
+ vertical-align: middle;
1852
+ -ms-touch-action: manipulation;
1853
+ touch-action: manipulation;
1854
+ cursor: pointer;
1855
+ -webkit-user-select: none;
1856
+ -moz-user-select: none;
1857
+ -ms-user-select: none;
1858
+ user-select: none;
1859
+ background-image: none;
1860
+ border: 1px solid transparent; }
1861
+
1862
+ .premium-modal-trigger-btn i {
1863
+ -webkit-transition: all 0.3s ease-in-out;
1864
+ transition: all 0.3s ease-in-out; }
1865
+
1866
+ .premium-btn-md {
1867
+ padding: 8px 14px;
1868
+ font-size: 16px;
1869
+ line-height: 1.2; }
1870
+
1871
+ .premium-btn-lg {
1872
+ padding: 10px 16px;
1873
+ font-size: 18px;
1874
+ line-height: 1.3333333; }
1875
+
1876
+ .premium-btn-block {
1877
+ display: block;
1878
+ width: 100%; }
1879
+
1880
+ .premium-modal-box-modal-close {
1881
+ float: right;
1882
+ font-size: 21px;
1883
+ font-weight: bold;
1884
+ line-height: 1;
1885
+ color: #000; }
1886
+ .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
1887
+ color: #000;
1888
+ text-decoration: none;
1889
+ cursor: pointer; }
1890
+
1891
+ button.premium-modal-box-modal-close {
1892
+ -webkit-appearance: none;
1893
+ padding: 0;
1894
+ cursor: pointer;
1895
+ background: transparent;
1896
+ border: 0; }
1897
+
1898
+ .premium-modal-box-modal {
1899
+ position: fixed;
1900
+ top: 0;
1901
+ right: 0;
1902
+ bottom: 0;
1903
+ left: 0;
1904
+ z-index: 1050;
1905
+ display: none;
1906
+ -webkit-overflow-scrolling: touch;
1907
+ outline: 0;
1908
+ padding: 0 !important;
1909
+ background: rgba(0, 0, 0, 0.5);
1910
+ -webkit-box-align: center;
1911
+ -webkit-align-items: center;
1912
+ -moz-box-align: center;
1913
+ -ms-flex-align: center;
1914
+ align-items: center;
1915
+ -webkit-box-pack: center;
1916
+ -webkit-justify-content: center;
1917
+ -moz-box-pack: center;
1918
+ -ms-flex-pack: center;
1919
+ justify-content: center; }
1920
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
1921
+ position: absolute;
1922
+ max-height: -webkit-calc(100vh - 150px);
1923
+ max-height: calc(100vh - 150px);
1924
+ -js-display: flex;
1925
+ display: -webkit-box;
1926
+ display: -webkit-flex;
1927
+ display: -moz-box;
1928
+ display: -ms-flexbox;
1929
+ display: flex;
1930
+ -webkit-box-orient: vertical;
1931
+ -webkit-box-direction: normal;
1932
+ -webkit-flex-direction: column;
1933
+ -moz-box-orient: vertical;
1934
+ -moz-box-direction: normal;
1935
+ -ms-flex-direction: column;
1936
+ flex-direction: column;
1937
+ opacity: 0; }
1938
+
1939
+ .premium-modal-box-modal-content {
1940
+ background-color: #fff;
1941
+ background-clip: padding-box;
1942
+ border: 1px solid rgba(0, 0, 0, 0.2);
1943
+ -webkit-border-radius: 6px;
1944
+ border-radius: 6px;
1945
+ outline: 0; }
1946
+
1947
+ .premium-modal-backdrop.premium-in {
1948
+ filter: alpha(opacity=50);
1949
+ opacity: 0.5 !important; }
1950
+
1951
+ .premium-in {
1952
+ opacity: 1; }
1953
+
1954
+ .premium-modal-backdrop {
1955
+ position: fixed;
1956
+ top: 0;
1957
+ right: 0;
1958
+ bottom: 0;
1959
+ left: 0;
1960
+ z-index: 1040;
1961
+ background-color: #000; }
1962
+
1963
+ .premium-in {
1964
+ -js-display: flex !important;
1965
+ display: -webkit-box !important;
1966
+ display: -webkit-flex !important;
1967
+ display: -moz-box !important;
1968
+ display: -ms-flexbox !important;
1969
+ display: flex !important; }
1970
+
1971
+ .premium-modal-box-modal-header {
1972
+ -js-display: flex;
1973
+ display: -webkit-box;
1974
+ display: -webkit-flex;
1975
+ display: -moz-box;
1976
+ display: -ms-flexbox;
1977
+ display: flex;
1978
+ -webkit-box-pack: justify;
1979
+ -webkit-justify-content: space-between;
1980
+ -moz-box-pack: justify;
1981
+ -ms-flex-pack: justify;
1982
+ justify-content: space-between;
1983
+ -webkit-box-align: center;
1984
+ -webkit-align-items: center;
1985
+ -moz-box-align: center;
1986
+ -ms-flex-align: center;
1987
+ align-items: center;
1988
+ padding: 5px 15px;
1989
+ border-bottom: 1px solid #e5e5e5; }
1990
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
1991
+ margin-top: -2px; }
1992
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
1993
+ -js-display: flex;
1994
+ display: -webkit-box;
1995
+ display: -webkit-flex;
1996
+ display: -moz-box;
1997
+ display: -ms-flexbox;
1998
+ display: flex;
1999
+ -webkit-box-align: center;
2000
+ -webkit-align-items: center;
2001
+ -moz-box-align: center;
2002
+ -ms-flex-align: center;
2003
+ align-items: center;
2004
+ margin: 0;
2005
+ padding: 0; }
2006
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2007
+ width: 50px;
2008
+ height: 60px; }
2009
+
2010
+ .premium-modal-box-modal-body {
2011
+ position: relative;
2012
+ padding: 15px;
2013
+ overflow: hidden; }
2014
+
2015
+ .premium-modal-box-modal-footer {
2016
+ padding: 15px;
2017
+ text-align: right;
2018
+ border-top: 1px solid #e5e5e5; }
2019
+
2020
+ .premium-modal-scrollbar-measure {
2021
+ position: absolute;
2022
+ top: -9999px;
2023
+ width: 50px;
2024
+ height: 50px;
2025
+ overflow: scroll; }
2026
+
2027
+ .premium-modal-trigger-text {
2028
+ background: none !important;
2029
+ display: inline-block; }
2030
+
2031
+ .premium-modal-box-container {
2032
+ width: 100% !important; }
2033
+
2034
+ /*Open Modal Button Style*/
2035
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
2036
+ border: none;
2037
+ -webkit-transition: all 0.3s ease-in-out;
2038
+ transition: all 0.3s ease-in-out; }
2039
+
2040
+ .premium-modal-trigger-container .premium-modal-trigger-img,
2041
+ .premium-modal-trigger-container .premium-modal-trigger-text,
2042
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
2043
+ cursor: pointer; }
2044
+
2045
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
2046
+ display: inline-block;
2047
+ width: 200px;
2048
+ height: 200px;
2049
+ -webkit-transition: all 0.3s ease-in-out;
2050
+ transition: all 0.3s ease-in-out; }
2051
+
2052
+ /*Image on Modal Header Style*/
2053
+ .premium-modal-box-modal-header img {
2054
+ width: 48px;
2055
+ padding-right: 5px; }
2056
+
2057
+ .premium-modal-box-modal-header i,
2058
+ .premium-modal-box-modal-header svg {
2059
+ padding-right: 6px; }
2060
+
2061
+ .premium-modal-box-modal-close {
2062
+ position: relative;
2063
+ z-index: 99; }
2064
+
2065
+ .premium-modal-trigger-img,
2066
+ .premium-modal-trigger-text,
2067
+ .premium-modal-box-close-button-container,
2068
+ .premium-modal-box-modal-close,
2069
+ .premium-modal-box-modal-lower-close {
2070
+ -webkit-transition: all 0.3s ease-in-out;
2071
+ transition: all 0.3s ease-in-out; }
2072
+
2073
+ @media (min-width: 768px) {
2074
+ .premium-modal-box-modal-dialog {
2075
+ width: 700px;
2076
+ max-height: 600px;
2077
+ overflow: auto; } }
2078
+
2079
+ @media (max-width: 767px) {
2080
+ .premium-modal-box-modal-dialog {
2081
+ width: 100%;
2082
+ max-height: 500px;
2083
+ overflow: auto; } }
2084
+
2085
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
2086
+ opacity: 0; }
2087
+
2088
+ /**************** Premium Progress Bar ****************/
2089
+ /******************************************************/
2090
+ .premium-progressbar-container {
2091
+ position: relative; }
2092
+
2093
+ .premium-progressbar-bar-wrap {
2094
+ position: relative;
2095
+ text-align: left;
2096
+ overflow: hidden;
2097
+ height: 25px;
2098
+ margin-bottom: 50px;
2099
+ background-color: #f5f5f5;
2100
+ -webkit-border-radius: 4px;
2101
+ border-radius: 4px;
2102
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2103
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
2104
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
2105
+ background-color: transparent;
2106
+ width: 100%;
2107
+ -js-display: flex;
2108
+ display: -webkit-box;
2109
+ display: -webkit-flex;
2110
+ display: -moz-box;
2111
+ display: -ms-flexbox;
2112
+ display: flex;
2113
+ height: auto;
2114
+ -webkit-box-shadow: none;
2115
+ box-shadow: none; }
2116
+ .premium-progressbar-bar-wrap .progress-segment {
2117
+ position: relative;
2118
+ width: 25px;
2119
+ height: 25px;
2120
+ -webkit-border-radius: 50%;
2121
+ border-radius: 50%;
2122
+ overflow: hidden;
2123
+ background-color: #f5f5f5; }
2124
+ .premium-progressbar-bar-wrap .progress-segment.filled {
2125
+ background: #6ec1e4; }
2126
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2127
+ margin: 0 4px; }
2128
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
2129
+ margin-right: 4px; }
2130
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
2131
+ margin-left: 4px; }
2132
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2133
+ position: absolute;
2134
+ top: 0;
2135
+ left: 0;
2136
+ height: 100%;
2137
+ background-color: #6ec1e4; }
2138
+
2139
+ .premium-progressbar-bar {
2140
+ float: left;
2141
+ width: 0%;
2142
+ height: 100%;
2143
+ font-size: 12px;
2144
+ line-height: 20px;
2145
+ background: #6ec1e4;
2146
+ text-align: center;
2147
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2148
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
2149
+
2150
+ .premium-progressbar-striped .premium-progressbar-bar {
2151
+ background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2152
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2153
+ -webkit-background-size: 40px 40px;
2154
+ background-size: 40px 40px; }
2155
+
2156
+ .premium-progressbar-active .premium-progressbar-bar {
2157
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
2158
+ animation: progress-bar-stripes 2s linear infinite; }
2159
+
2160
+ .premium-progressbar-gradient .premium-progressbar-bar {
2161
+ -webkit-background-size: 400% 400% !important;
2162
+ background-size: 400% 400% !important;
2163
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2164
+ animation: progress-bar-gradient 10s ease-in-out infinite; }
2165
+
2166
+ .premium-progressbar-bar {
2167
+ position: absolute;
2168
+ overflow: hidden;
2169
+ line-height: 20px; }
2170
+
2171
+ .premium-progressbar-container .clearfix {
2172
+ clear: both; }
2173
+
2174
+ .premium-progressbar-bar {
2175
+ -webkit-transition: width 0s ease-in-out !important;
2176
+ transition: width 0s ease-in-out !important; }
2177
+
2178
+ .premium-progressbar-container p:first-of-type {
2179
+ margin: 0;
2180
+ float: left; }
2181
+
2182
+ .premium-progressbar-container p:nth-of-type(2) {
2183
+ margin: 0;
2184
+ float: right; }
2185
+
2186
+ .premium-progressbar-name {
2187
+ left: 50%;
2188
+ top: 0;
2189
+ right: 0;
2190
+ -webkit-transform: translateX(-12.5px);
2191
+ -ms-transform: translateX(-12.5px);
2192
+ transform: translateX(-12.5px);
2193
+ z-index: 1; }
2194
+
2195
+ .premium-progressbar-multiple-label {
2196
+ position: relative;
2197
+ float: left;
2198
+ width: 0;
2199
+ left: 50%; }
2200
+
2201
+ .premium-progressbar-center-label {
2202
+ position: relative;
2203
+ white-space: nowrap; }
2204
+
2205
+ .premium-progressbar-arrow {
2206
+ height: 15px;
2207
+ left: 50%;
2208
+ display: inline-block;
2209
+ border-left: 7px solid transparent;
2210
+ border-right: 7px solid transparent;
2211
+ border-top: 11px solid;
2212
+ -webkit-transform: translateX(-50%);
2213
+ -ms-transform: translateX(-50%);
2214
+ transform: translateX(-50%); }
2215
+
2216
+ .premium-progressbar-pin {
2217
+ border-left: 1px solid;
2218
+ height: 12px;
2219
+ left: 50%;
2220
+ display: inline-block; }
2221
+
2222
+ /**
2223
+ * Circle Progress Bar
2224
+ */
2225
+ .premium-progressbar-circle-wrap {
2226
+ width: 200px;
2227
+ height: 200px;
2228
+ position: relative;
2229
+ margin: 0 auto; }
2230
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
2231
+ position: absolute;
2232
+ top: 0;
2233
+ left: 0;
2234
+ width: 100%;
2235
+ height: 100%;
2236
+ -webkit-clip-path: inset(0 0 0 50%);
2237
+ clip-path: inset(0 0 0 50%); }
2238
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2239
+ position: absolute;
2240
+ left: 0;
2241
+ top: 0;
2242
+ height: 100%;
2243
+ width: 100%;
2244
+ border-width: 6px;
2245
+ border-style: solid;
2246
+ border-color: #54595f;
2247
+ -webkit-border-radius: 50%;
2248
+ border-radius: 50%;
2249
+ -webkit-clip-path: inset(0 50% 0 0);
2250
+ clip-path: inset(0 50% 0 0); }
2251
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2252
+ -webkit-transform: rotate(0);
2253
+ -ms-transform: rotate(0);
2254
+ transform: rotate(0); }
2255
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2256
+ -webkit-transform: rotate(180deg);
2257
+ -ms-transform: rotate(180deg);
2258
+ transform: rotate(180deg);
2259
+ visibility: hidden; }
2260
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2261
+ width: 100%;
2262
+ height: 100%;
2263
+ border: 6px solid #eee;
2264
+ -webkit-border-radius: 50%;
2265
+ border-radius: 50%; }
2266
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2267
+ position: absolute;
2268
+ top: 0;
2269
+ left: 0;
2270
+ width: 100%;
2271
+ height: 100%;
2272
+ -js-display: flex;
2273
+ display: -webkit-box;
2274
+ display: -webkit-flex;
2275
+ display: -moz-box;
2276
+ display: -ms-flexbox;
2277
+ display: flex;
2278
+ -webkit-box-orient: vertical;
2279
+ -webkit-box-direction: normal;
2280
+ -webkit-flex-direction: column;
2281
+ -moz-box-orient: vertical;
2282
+ -moz-box-direction: normal;
2283
+ -ms-flex-direction: column;
2284
+ flex-direction: column;
2285
+ -webkit-box-pack: center;
2286
+ -webkit-justify-content: center;
2287
+ -moz-box-pack: center;
2288
+ -ms-flex-pack: center;
2289
+ justify-content: center;
2290
+ -webkit-box-align: center;
2291
+ -webkit-align-items: center;
2292
+ -moz-box-align: center;
2293
+ -ms-flex-align: center;
2294
+ align-items: center; }
2295
+ .premium-progressbar-circle-wrap .premium-lottie-animation {
2296
+ line-height: 1; }
2297
+
2298
+ @-webkit-keyframes progress-bar-stripes {
2299
+ from {
2300
+ background-position: 0 0; }
2301
+ to {
2302
+ background-position: 40px 0; } }
2303
+
2304
+ @keyframes progress-bar-stripes {
2305
+ from {
2306
+ background-position: 0 0; }
2307
+ to {
2308
+ background-position: 40px 0; } }
2309
+
2310
+ @-webkit-keyframes progress-bar-gradient {
2311
+ 0% {
2312
+ background-position: 0% 50%; }
2313
+ 50% {
2314
+ background-position: 100% 50%; }
2315
+ 100% {
2316
+ background-position: 0% 50%; } }
2317
+
2318
+ @keyframes progress-bar-gradient {
2319
+ 0% {
2320
+ background-position: 0% 50%; }
2321
+ 50% {
2322
+ background-position: 100% 50%; }
2323
+ 100% {
2324
+ background-position: 0% 50%; } }
2325
+
2326
+ /**************** Premium Testimonials ****************/
2327
+ /******************************************************/
2328
+ .premium-testimonial-box {
2329
+ width: 100%;
2330
+ background: transparent;
2331
+ -webkit-transition: all 0.3s ease-in-out;
2332
+ transition: all 0.3s ease-in-out; }
2333
+ .premium-testimonial-box .premium-testimonial-author-info {
2334
+ -js-display: flex;
2335
+ display: -webkit-box;
2336
+ display: -webkit-flex;
2337
+ display: -moz-box;
2338
+ display: -ms-flexbox;
2339
+ display: flex;
2340
+ -webkit-box-pack: center;
2341
+ -webkit-justify-content: center;
2342
+ -moz-box-pack: center;
2343
+ -ms-flex-pack: center;
2344
+ justify-content: center;
2345
+ -webkit-box-align: center;
2346
+ -webkit-align-items: center;
2347
+ -moz-box-align: center;
2348
+ -ms-flex-align: center;
2349
+ align-items: center; }
2350
+ .premium-testimonial-box .premium-testimonial-person-name,
2351
+ .premium-testimonial-box .premium-testimonial-company-name {
2352
+ font-weight: 600;
2353
+ margin: 0; }
2354
+
2355
+ .premium-testimonial-container {
2356
+ position: relative; }
2357
+
2358
+ .premium-testimonial-img-wrapper {
2359
+ margin-left: auto;
2360
+ margin-right: auto;
2361
+ overflow: hidden;
2362
+ border-style: solid !important; }
2363
+ .premium-testimonial-img-wrapper.circle {
2364
+ -webkit-border-radius: 50%;
2365
+ border-radius: 50%; }
2366
+ .premium-testimonial-img-wrapper.rounded {
2367
+ -webkit-border-radius: 15px;
2368
+ border-radius: 15px; }
2369
+ .premium-testimonial-img-wrapper img {
2370
+ -o-object-fit: cover;
2371
+ object-fit: cover;
2372
+ width: 100%;
2373
+ height: 100% !important; }
2374
+
2375
+ .premium-testimonial-content-wrapper {
2376
+ position: relative;
2377
+ -js-display: flex;
2378
+ display: -webkit-box;
2379
+ display: -webkit-flex;
2380
+ display: -moz-box;
2381
+ display: -ms-flexbox;
2382
+ display: flex;
2383
+ -webkit-box-orient: vertical;
2384
+ -webkit-box-direction: normal;
2385
+ -webkit-flex-direction: column;
2386
+ -moz-box-orient: vertical;
2387
+ -moz-box-direction: normal;
2388
+ -ms-flex-direction: column;
2389
+ flex-direction: column;
2390
+ z-index: 2;
2391
+ width: 100%;
2392
+ padding: 20px;
2393
+ text-align: center; }
2394
+
2395
+ .premium-testimonial-clear-float {
2396
+ clear: both; }
2397
+
2398
+ .premium-testimonial-upper-quote,
2399
+ .premium-testimonial-lower-quote {
2400
+ position: absolute;
2401
+ z-index: 1; }
2402
+
2403
+ /**************** Premium Dual Heading *****************/
2404
+ /*******************************************************/
2405
+ .premium-dual-header-container .premium-dual-header-first-header,
2406
+ .premium-dual-header-container .premium-dual-header-second-header {
2407
+ position: relative;
2408
+ padding: 0;
2409
+ margin: 0;
2410
+ display: inline-block;
2411
+ -webkit-transform: translate(0, 0);
2412
+ -ms-transform: translate(0, 0);
2413
+ transform: translate(0, 0); }
2414
+
2415
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
2416
+ .premium-dual-header-second-clip {
2417
+ -webkit-text-fill-color: transparent;
2418
+ -webkit-background-clip: text;
2419
+ background-clip: text; }
2420
+
2421
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2422
+ .premium-dual-header-second-clip.stroke {
2423
+ -webkit-text-stroke-color: transparent;
2424
+ -webkit-text-fill-color: #fafafa;
2425
+ -webkit-text-stroke-width: 2px; }
2426
+
2427
+ @media (max-width: 500px) {
2428
+ .premium-dual-header-container .premium-dual-header-first-header,
2429
+ .premium-dual-header-container .premium-dual-header-second-header {
2430
+ display: block;
2431
+ word-wrap: break-word; }
2432
+ .premium-dual-header-first-container,
2433
+ .premium-dual-header-second-container {
2434
+ margin: 0; } }
2435
+
2436
+ @media (min-width: 501px) {
2437
+ .premium-dual-header-first-container {
2438
+ margin-right: 5px; } }
2439
+
2440
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2441
+ .premium-dual-header-second-header.gradient {
2442
+ -webkit-background-size: 300% 300% !important;
2443
+ background-size: 300% 300% !important;
2444
+ -webkit-animation: Gradient 10s ease-in-out infinite;
2445
+ animation: Gradient 10s ease-in-out infinite; }
2446
+
2447
+ @-webkit-keyframes Gradient {
2448
+ 0% {
2449
+ background-position: 0% 50%; }
2450
+ 50% {
2451
+ background-position: 100% 50%; }
2452
+ 100% {
2453
+ background-position: 0% 50%; } }
2454
+
2455
+ @keyframes Gradient {
2456
+ 0% {
2457
+ background-position: 0% 50%; }
2458
+ 50% {
2459
+ background-position: 100% 50%; }
2460
+ 100% {
2461
+ background-position: 0% 50%; } }
2462
+
2463
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2464
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2465
+ display: inline-block !important; }
2466
+
2467
+ /**************** Premium Title ****************/
2468
+ /***********************************************/
2469
+ .premium-title-container {
2470
+ position: relative;
2471
+ width: 100%;
2472
+ clear: both; }
2473
+ .premium-title-container .premium-title-header {
2474
+ position: relative;
2475
+ margin: 0;
2476
+ padding: 10px; }
2477
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
2478
+ -webkit-box-align: center;
2479
+ -webkit-align-items: center;
2480
+ -moz-box-align: center;
2481
+ -ms-flex-align: center;
2482
+ align-items: center; }
2483
+ .premium-title-container .premium-title-header svg {
2484
+ width: 40px;
2485
+ height: 40px; }
2486
+ .premium-title-container .premium-title-header img {
2487
+ width: 40px;
2488
+ height: 40px;
2489
+ -o-object-fit: cover;
2490
+ object-fit: cover; }
2491
+ .premium-title-container .premium-title-header a {
2492
+ position: absolute;
2493
+ top: 0;
2494
+ left: 0;
2495
+ width: 100%;
2496
+ height: 100%; }
2497
+ .premium-title-container .premium-lottie-animation {
2498
+ -js-display: flex;
2499
+ display: -webkit-box;
2500
+ display: -webkit-flex;
2501
+ display: -moz-box;
2502
+ display: -ms-flexbox;
2503
+ display: flex; }
2504
+
2505
+ .premium-title-icon-row .premium-title-icon {
2506
+ margin-right: 10px; }
2507
+
2508
+ .premium-title-icon-row-reverse .premium-title-icon {
2509
+ margin-left: 10px; }
2510
+
2511
+ .premium-title-style3,
2512
+ .premium-title-style4 {
2513
+ -js-display: flex;
2514
+ display: -webkit-box;
2515
+ display: -webkit-flex;
2516
+ display: -moz-box;
2517
+ display: -ms-flexbox;
2518
+ display: flex; }
2519
+
2520
+ .premium-title-style1,
2521
+ .premium-title-style2,
2522
+ .premium-title-style5,
2523
+ .premium-title-style6,
2524
+ .premium-title-style8,
2525
+ .premium-title-style9 {
2526
+ -js-display: inline-flex;
2527
+ display: -webkit-inline-box;
2528
+ display: -webkit-inline-flex;
2529
+ display: -moz-inline-box;
2530
+ display: -ms-inline-flexbox;
2531
+ display: inline-flex; }
2532
+
2533
+ .premium-title-style7 {
2534
+ -js-display: inline-flex;
2535
+ display: -webkit-inline-box;
2536
+ display: -webkit-inline-flex;
2537
+ display: -moz-inline-box;
2538
+ display: -ms-inline-flexbox;
2539
+ display: inline-flex;
2540
+ -webkit-box-orient: vertical;
2541
+ -webkit-box-direction: normal;
2542
+ -webkit-flex-direction: column;
2543
+ -moz-box-orient: vertical;
2544
+ -moz-box-direction: normal;
2545
+ -ms-flex-direction: column;
2546
+ flex-direction: column; }
2547
+ .premium-title-style7 .premium-title-style7-inner {
2548
+ -js-display: flex;
2549
+ display: -webkit-box;
2550
+ display: -webkit-flex;
2551
+ display: -moz-box;
2552
+ display: -ms-flexbox;
2553
+ display: flex;
2554
+ -webkit-box-align: center;
2555
+ -webkit-align-items: center;
2556
+ -moz-box-align: center;
2557
+ -ms-flex-align: center;
2558
+ align-items: center; }
2559
+
2560
+ .premium-title-style1 {
2561
+ border-left: 3px solid #6ec1e4; }
2562
+
2563
+ .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
2564
+ border-bottom: 3px solid #6ec1e4; }
2565
+
2566
+ /*Style 6 Header*/
2567
+ .premium-title-style6:before {
2568
+ position: absolute;
2569
+ left: 50%;
2570
+ bottom: 0;
2571
+ margin-left: -2px;
2572
+ content: "";
2573
+ border: 3px solid transparent; }
2574
+
2575
+ /*Style 6 Trinagle*/
2576
+ .premium-title-style7-stripe-wrap {
2577
+ -js-display: flex;
2578
+ display: -webkit-box;
2579
+ display: -webkit-flex;
2580
+ display: -moz-box;
2581
+ display: -ms-flexbox;
2582
+ display: flex; }
2583
+
2584
+ .premium-title-style7:before {
2585
+ display: none; }
2586
+
2587
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
2588
+ -webkit-background-size: 125px 125px !important;
2589
+ background-size: 125px !important;
2590
+ color: rgba(255, 255, 255, 0);
2591
+ -webkit-background-clip: text !important;
2592
+ background-clip: text !important;
2593
+ -webkit-animation-name: pa-shinny-text !important;
2594
+ animation-name: pa-shinny-text !important;
2595
+ -webkit-animation-duration: var(--animation-speed) !important;
2596
+ animation-duration: var(--animation-speed) !important;
2597
+ -webkit-animation-iteration-count: infinite !important;
2598
+ animation-iteration-count: infinite !important;
2599
+ background: var(--base-color) -webkit-gradient(linear, left top, right top, from(var(--base-color)), to(var(--base-color)), color-stop(0.5, var(--shiny-color))) 0 0 no-repeat; }
2600
+
2601
+ @-webkit-keyframes pa-shinny-text {
2602
+ 0% {
2603
+ background-position: 0%; }
2604
+ 100% {
2605
+ background-position: 200%; } }
2606
+
2607
+ @keyframes pa-shinny-text {
2608
+ 0% {
2609
+ background-position: 0%; }
2610
+ 100% {
2611
+ background-position: 200%; } }
2612
+
2613
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
2614
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
2615
+ animation: pa-blur-shadow 2s 1 alternate; }
2616
+
2617
+ @-webkit-keyframes pa-blur-shadow {
2618
+ from {
2619
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2620
+ color: transparent; }
2621
+ to {
2622
+ text-shadow: 0; } }
2623
+
2624
+ @keyframes pa-blur-shadow {
2625
+ from {
2626
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2627
+ color: transparent; }
2628
+ to {
2629
+ text-shadow: 0; } }
2630
+
2631
+ .premium-title-gradient-yes .premium-title-text,
2632
+ .premium-title-gradient-yes .premium-title-icon {
2633
+ -webkit-background-clip: text;
2634
+ -webkit-text-fill-color: transparent;
2635
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
2636
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
2637
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
2638
+ -webkit-animation: pa-text-gradient 8s infinite;
2639
+ animation: pa-text-gradient 8s infinite; }
2640
+
2641
+ @-webkit-keyframes pa-text-gradient {
2642
+ 0%,
2643
+ 100% {
2644
+ -webkit-filter: hue-rotate(0deg);
2645
+ filter: hue-rotate(0deg); }
2646
+ 50% {
2647
+ -webkit-filter: hue-rotate(360deg);
2648
+ filter: hue-rotate(360deg); } }
2649
+
2650
+ @keyframes pa-text-gradient {
2651
+ 0%,
2652
+ 100% {
2653
+ -webkit-filter: hue-rotate(0deg);
2654
+ filter: hue-rotate(0deg); }
2655
+ 50% {
2656
+ -webkit-filter: hue-rotate(360deg);
2657
+ filter: hue-rotate(360deg); } }
2658
+
2659
+ /*
2660
+ * Common Title/Dual Heading
2661
+ */
2662
+ .premium-title-bg-text:before {
2663
+ position: absolute;
2664
+ content: attr(data-background);
2665
+ top: 0;
2666
+ left: 0;
2667
+ text-align: left; }
2668
+
2669
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
2670
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
2671
+ background: inherit; }
2672
+
2673
+ .premium-mask-yes .premium-mask-span {
2674
+ position: relative;
2675
+ overflow: hidden;
2676
+ -js-display: inline-flex !important;
2677
+ display: -webkit-inline-box !important;
2678
+ display: -webkit-inline-flex !important;
2679
+ display: -moz-inline-box !important;
2680
+ display: -ms-inline-flexbox !important;
2681
+ display: inline-flex !important; }
2682
+ .premium-mask-yes .premium-mask-span::after {
2683
+ content: "";
2684
+ position: absolute;
2685
+ top: 0;
2686
+ right: 0px;
2687
+ width: 100%;
2688
+ height: 100%;
2689
+ background-color: currentColor;
2690
+ -webkit-backface-visibility: visible;
2691
+ backface-visibility: visible; }
2692
+
2693
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
2694
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2695
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2696
+ -webkit-transform: translateX(-103%);
2697
+ -ms-transform: translateX(-103%);
2698
+ transform: translateX(-103%); }
2699
+
2700
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
2701
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2702
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2703
+ -webkit-transform: translateX(103%);
2704
+ -ms-transform: translateX(103%);
2705
+ transform: translateX(103%); }
2706
+
2707
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
2708
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2709
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2710
+ -webkit-transform: translateY(-103%);
2711
+ -ms-transform: translateY(-103%);
2712
+ transform: translateY(-103%); }
2713
+
2714
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
2715
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2716
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2717
+ -webkit-transform: translateY(103%);
2718
+ -ms-transform: translateY(103%);
2719
+ transform: translateY(103%); }
2720
+
2721
+ @-webkit-keyframes pa-mask-tr {
2722
+ 0% {
2723
+ -webkit-transform: translateX(0%);
2724
+ transform: translateX(0%); }
2725
+ 100% {
2726
+ -webkit-transform: translateX(103%);
2727
+ transform: translateX(103%); } }
2728
+
2729
+ @keyframes pa-mask-tr {
2730
+ 0% {
2731
+ -webkit-transform: translateX(0%);
2732
+ transform: translateX(0%); }
2733
+ 100% {
2734
+ -webkit-transform: translateX(103%);
2735
+ transform: translateX(103%); } }
2736
+
2737
+ @-webkit-keyframes pa-mask-tl {
2738
+ 0% {
2739
+ -webkit-transform: translateX(0%);
2740
+ transform: translateX(0%); }
2741
+ 100% {
2742
+ -webkit-transform: translateX(-103%);
2743
+ transform: translateX(-103%); } }
2744
+
2745
+ @keyframes pa-mask-tl {
2746
+ 0% {
2747
+ -webkit-transform: translateX(0%);
2748
+ transform: translateX(0%); }
2749
+ 100% {
2750
+ -webkit-transform: translateX(-103%);
2751
+ transform: translateX(-103%); } }
2752
+
2753
+ @-webkit-keyframes pa-mask-tb {
2754
+ 0% {
2755
+ -webkit-transform: translateY(0%);
2756
+ transform: translateY(0%); }
2757
+ 100% {
2758
+ -webkit-transform: translateY(103%);
2759
+ transform: translateY(103%); } }
2760
+
2761
+ @keyframes pa-mask-tb {
2762
+ 0% {
2763
+ -webkit-transform: translateY(0%);
2764
+ transform: translateY(0%); }
2765
+ 100% {
2766
+ -webkit-transform: translateY(103%);
2767
+ transform: translateY(103%); } }
2768
+
2769
+ @-webkit-keyframes pa-mask-tt {
2770
+ 0% {
2771
+ -webkit-transform: translateY(0%);
2772
+ transform: translateY(0%); }
2773
+ 100% {
2774
+ -webkit-transform: translateY(-103%);
2775
+ transform: translateY(-103%); } }
2776
+
2777
+ @keyframes pa-mask-tt {
2778
+ 0% {
2779
+ -webkit-transform: translateY(0%);
2780
+ transform: translateY(0%); }
2781
+ 100% {
2782
+ -webkit-transform: translateY(-103%);
2783
+ transform: translateY(-103%); } }
2784
+
2785
+ /**************** Premium Video Box ************/
2786
+ /***********************************************/
2787
+ .premium-video-box-transform {
2788
+ -webkit-transform: none !important;
2789
+ -ms-transform: none !important;
2790
+ transform: none !important; }
2791
+
2792
+ .premium-video-box-container {
2793
+ -js-display: flex;
2794
+ display: -webkit-box;
2795
+ display: -webkit-flex;
2796
+ display: -moz-box;
2797
+ display: -ms-flexbox;
2798
+ display: flex;
2799
+ -webkit-box-orient: vertical;
2800
+ -webkit-box-direction: normal;
2801
+ -webkit-flex-direction: column;
2802
+ -moz-box-orient: vertical;
2803
+ -moz-box-direction: normal;
2804
+ -ms-flex-direction: column;
2805
+ flex-direction: column; }
2806
+
2807
+ .premium-video-box-container > div {
2808
+ position: relative;
2809
+ overflow: hidden; }
2810
+
2811
+ .pa-aspect-ratio-11 .premium-video-box-container > div {
2812
+ padding-bottom: 100%; }
2813
+
2814
+ .pa-aspect-ratio-169 .premium-video-box-container > div {
2815
+ padding-bottom: 56.25%; }
2816
+
2817
+ .pa-aspect-ratio-43 .premium-video-box-container > div {
2818
+ padding-bottom: 75%; }
2819
+
2820
+ .pa-aspect-ratio-32 .premium-video-box-container > div {
2821
+ padding-bottom: 66.6666%; }
2822
+
2823
+ .pa-aspect-ratio-219 .premium-video-box-container > div {
2824
+ padding-bottom: 42.8571%; }
2825
+
2826
+ .pa-aspect-ratio-916 .premium-video-box-container > div {
2827
+ padding-bottom: 177.8%; }
2828
+
2829
+ .premium-video-box-image-container {
2830
+ position: absolute;
2831
+ top: 0;
2832
+ left: 0;
2833
+ bottom: 0;
2834
+ right: 0;
2835
+ width: 100%;
2836
+ height: 100%;
2837
+ -webkit-background-size: cover;
2838
+ background-size: cover;
2839
+ background-position: 50%;
2840
+ cursor: pointer;
2841
+ margin: auto;
2842
+ -webkit-transition: 0.2s all;
2843
+ transition: 0.2s all; }
2844
+
2845
+ .premium-video-box-play-icon-container {
2846
+ position: absolute;
2847
+ z-index: 2;
2848
+ cursor: pointer;
2849
+ -webkit-transform: translate(-50%, -50%);
2850
+ -ms-transform: translate(-50%, -50%);
2851
+ transform: translate(-50%, -50%);
2852
+ background: rgba(252, 252, 252, 0.35); }
2853
+
2854
+ .premium-video-box-description-container {
2855
+ position: absolute;
2856
+ z-index: 2;
2857
+ padding: 5px;
2858
+ text-align: center;
2859
+ cursor: pointer;
2860
+ -webkit-transform: translate(-50%, -50%);
2861
+ -ms-transform: translate(-50%, -50%);
2862
+ transform: translate(-50%, -50%); }
2863
+
2864
+ .premium-video-box-text {
2865
+ margin-bottom: 0 !important;
2866
+ -webkit-transition: all 0.3s ease-in-out;
2867
+ transition: all 0.3s ease-in-out; }
2868
+
2869
+ .premium-video-box-play-icon {
2870
+ padding: 15px;
2871
+ -webkit-transform: translateX(4%);
2872
+ -ms-transform: translateX(4%);
2873
+ transform: translateX(4%);
2874
+ -webkit-transition: all 0.3s ease-in-out;
2875
+ transition: all 0.3s ease-in-out; }
2876
+
2877
+ .premium-video-box-video-container {
2878
+ position: absolute;
2879
+ top: 0;
2880
+ left: 0;
2881
+ z-index: 2;
2882
+ width: 100%;
2883
+ height: 100%;
2884
+ -webkit-transition: opacity 0.8s ease-in-out;
2885
+ transition: opacity 0.8s ease-in-out;
2886
+ overflow: hidden;
2887
+ cursor: pointer; }
2888
+
2889
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
2890
+ opacity: 0;
2891
+ visibility: hidden; }
2892
+
2893
+ .premium-video-box-video-container iframe {
2894
+ max-width: 100%;
2895
+ width: 100%;
2896
+ height: 100%;
2897
+ margin: 0;
2898
+ line-height: 1;
2899
+ border: none; }
2900
+
2901
+ .premium-video-box-video-container video {
2902
+ max-width: 100%;
2903
+ width: 100%;
2904
+ height: 100%;
2905
+ margin: 0;
2906
+ line-height: 1;
2907
+ border: none;
2908
+ background-color: #000;
2909
+ -o-object-fit: contain;
2910
+ object-fit: contain; }
2911
+
2912
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
2913
+ -js-display: flex;
2914
+ display: -webkit-box;
2915
+ display: -webkit-flex;
2916
+ display: -moz-box;
2917
+ display: -ms-flexbox;
2918
+ display: flex;
2919
+ position: absolute;
2920
+ top: 0;
2921
+ left: 0;
2922
+ z-index: 3;
2923
+ margin: 10px;
2924
+ margin-right: 10px;
2925
+ -webkit-transition: opacity 0.2s ease-out;
2926
+ transition: opacity 0.2s ease-out;
2927
+ margin-right: 4.6em; }
2928
+
2929
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
2930
+ width: 60px;
2931
+ height: 60px;
2932
+ background: rgba(23, 35, 34, 0.75);
2933
+ margin-right: 1px;
2934
+ -webkit-box-flex: 1;
2935
+ -webkit-flex: 1 0 auto;
2936
+ -moz-box-flex: 1;
2937
+ -ms-flex: 1 0 auto;
2938
+ flex: 1 0 auto;
2939
+ padding: 0; }
2940
+
2941
+ .premium-video-box-vimeo-portrait img {
2942
+ width: 50px;
2943
+ height: 50px;
2944
+ margin: 5px;
2945
+ padding: 0;
2946
+ border: 0;
2947
+ -webkit-border-radius: 50%;
2948
+ border-radius: 50%; }
2949
+
2950
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
2951
+ font-size: 10px; }
2952
+
2953
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
2954
+ max-width: 100%;
2955
+ font-size: 2em !important;
2956
+ font-weight: 700;
2957
+ margin: 0;
2958
+ padding: 0.1em 0.2em;
2959
+ background: rgba(23, 35, 34, 0.75);
2960
+ display: inline-block;
2961
+ text-transform: none;
2962
+ line-height: normal;
2963
+ letter-spacing: normal; }
2964
+
2965
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
2966
+ font-size: 1.2em !important;
2967
+ font-weight: 400;
2968
+ color: #fff;
2969
+ margin-top: 0.1em;
2970
+ padding: 0.2em 0.5em;
2971
+ background: rgba(23, 35, 34, 0.75);
2972
+ text-transform: none;
2973
+ line-height: normal;
2974
+ letter-spacing: normal; }
2975
+
2976
+ .premium-video-box-playlist-container {
2977
+ -js-display: flex;
2978
+ display: -webkit-box;
2979
+ display: -webkit-flex;
2980
+ display: -moz-box;
2981
+ display: -ms-flexbox;
2982
+ display: flex;
2983
+ -webkit-flex-wrap: wrap;
2984
+ -ms-flex-wrap: wrap;
2985
+ flex-wrap: wrap; }
2986
+ .premium-video-box-playlist-container .premium-video-box-container {
2987
+ height: 100%;
2988
+ overflow: hidden; }
2989
+
2990
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
2991
+ -webkit-transform: scale(1.1);
2992
+ -ms-transform: scale(1.1);
2993
+ transform: scale(1.1); }
2994
+
2995
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
2996
+ -webkit-transform: scale(1);
2997
+ -ms-transform: scale(1);
2998
+ transform: scale(1); }
2999
+
3000
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
3001
+ -webkit-transform: scale(1.3) rotate(5deg);
3002
+ -ms-transform: scale(1.3) rotate(5deg);
3003
+ transform: scale(1.3) rotate(5deg); }
3004
+
3005
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
3006
+ -webkit-filter: grayscale(0%);
3007
+ filter: grayscale(0%); }
3008
+
3009
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
3010
+ -webkit-filter: blur(3px);
3011
+ filter: blur(3px); }
3012
+
3013
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3014
+ -webkit-filter: sepia(0%);
3015
+ filter: sepia(0%); }
3016
+
3017
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
3018
+ -webkit-transform: translateX(0px) scale(1.1);
3019
+ -ms-transform: translateX(0px) scale(1.1);
3020
+ transform: translateX(0px) scale(1.1); }
3021
+
3022
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
3023
+ -webkit-filter: brightness(1.2);
3024
+ filter: brightness(1.2); }
3025
+
3026
+ .premium-video-box-image-container.gray {
3027
+ -webkit-filter: grayscale(100%);
3028
+ filter: grayscale(100%); }
3029
+
3030
+ .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
3031
+ -webkit-transform: scale(1.2);
3032
+ -ms-transform: scale(1.2);
3033
+ transform: scale(1.2); }
3034
+
3035
+ .premium-video-box-image-container.sepia {
3036
+ -webkit-filter: sepia(30%);
3037
+ filter: sepia(30%); }
3038
+
3039
+ .premium-video-box-image-container.bright {
3040
+ -webkit-filter: brightness(1);
3041
+ filter: brightness(1); }
3042
+
3043
+ .premium-video-box-image-container.trans {
3044
+ -webkit-transform: translateX(-15px) scale(1.1);
3045
+ -ms-transform: translateX(-15px) scale(1.1);
3046
+ transform: translateX(-15px) scale(1.1); }
3047
+
3048
+ .premium-video-box-mask-media {
3049
+ -webkit-mask-repeat: no-repeat;
3050
+ mask-repeat: no-repeat; }
3051
+
3052
+ /* Sticky Video Option */
3053
+ .premium-video-box-container.premium-video-box-sticky-apply {
3054
+ z-index: 99;
3055
+ overflow: unset; }
3056
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3057
+ position: fixed !important;
3058
+ z-index: 99999;
3059
+ height: 225px;
3060
+ width: 400px;
3061
+ background: #fff; }
3062
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3063
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3064
+ visibility: hidden; }
3065
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3066
+ -webkit-box-shadow: unset;
3067
+ box-shadow: unset; }
3068
+
3069
+ .premium-video-box-sticky-close,
3070
+ .premium-video-box-sticky-infobar {
3071
+ display: none; }
3072
+
3073
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3074
+ position: absolute;
3075
+ padding: 5px;
3076
+ cursor: pointer;
3077
+ z-index: 99999;
3078
+ height: 14px;
3079
+ width: 14px;
3080
+ -webkit-box-sizing: content-box;
3081
+ -moz-box-sizing: content-box;
3082
+ box-sizing: content-box;
3083
+ -webkit-border-radius: 100%;
3084
+ border-radius: 100%;
3085
+ -js-display: flex;
3086
+ display: -webkit-box;
3087
+ display: -webkit-flex;
3088
+ display: -moz-box;
3089
+ display: -ms-flexbox;
3090
+ display: flex;
3091
+ -webkit-box-pack: center;
3092
+ -webkit-justify-content: center;
3093
+ -moz-box-pack: center;
3094
+ -ms-flex-pack: center;
3095
+ justify-content: center;
3096
+ -webkit-box-align: center;
3097
+ -webkit-align-items: center;
3098
+ -moz-box-align: center;
3099
+ -ms-flex-align: center;
3100
+ align-items: center; }
3101
+
3102
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3103
+ -js-display: flex;
3104
+ display: -webkit-box;
3105
+ display: -webkit-flex;
3106
+ display: -moz-box;
3107
+ display: -ms-flexbox;
3108
+ display: flex; }
3109
+
3110
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
3111
+ -webkit-transition: none;
3112
+ transition: none; }
3113
+
3114
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3115
+ display: block;
3116
+ position: relative;
3117
+ top: 100%;
3118
+ width: 100%;
3119
+ padding: 5px;
3120
+ text-align: center;
3121
+ z-index: 9999;
3122
+ margin-top: -1px; }
3123
+
3124
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3125
+ cursor: move; }
3126
+
3127
+ .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3128
+ right: auto;
3129
+ left: 20px;
3130
+ top: 20px; }
3131
+
3132
+ .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3133
+ right: auto;
3134
+ left: 20px;
3135
+ bottom: 20px; }
3136
+
3137
+ .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3138
+ left: auto;
3139
+ right: 20px;
3140
+ top: 20px; }
3141
+
3142
+ .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3143
+ left: auto;
3144
+ right: 20px;
3145
+ bottom: 20px; }
3146
+
3147
+ .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3148
+ right: auto;
3149
+ left: 20px;
3150
+ top: 50%;
3151
+ -webkit-transform: translateY(-50%);
3152
+ -ms-transform: translateY(-50%);
3153
+ transform: translateY(-50%); }
3154
+
3155
+ .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3156
+ left: auto;
3157
+ right: 20px;
3158
+ top: 50%;
3159
+ -webkit-transform: translateY(-50%);
3160
+ -ms-transform: translateY(-50%);
3161
+ transform: translateY(-50%); }
3162
+
3163
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
3164
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3165
+ bottom: 55px; }
3166
+
3167
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3168
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3169
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3170
+ top: -10px;
3171
+ right: -10px; }
3172
+
3173
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3174
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3175
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3176
+ top: -10px;
3177
+ left: -10px; }
3178
+
3179
+ .premium-video-box-filter-sticky {
3180
+ -webkit-filter: none !important;
3181
+ filter: none !important; }
3182
+
3183
+ /**************** Premium Blog *****************/
3184
+ /***********************************************/
3185
+ .premium-blog-thumb-effect-wrapper {
3186
+ position: relative;
3187
+ overflow: hidden; }
3188
+
3189
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3190
+ position: absolute;
3191
+ top: 0;
3192
+ left: 0;
3193
+ width: 100%;
3194
+ height: 100%;
3195
+ z-index: 2;
3196
+ padding: 20px; }
3197
+
3198
+ .premium-blog-bordered-effect .premium-blog-post-link {
3199
+ display: block;
3200
+ height: 100%;
3201
+ position: relative; }
3202
+
3203
+ /*Thumbnail Img*/
3204
+ .premium-blog-thumbnail-container {
3205
+ overflow: hidden; }
3206
+ .premium-blog-thumbnail-container img,
3207
+ .premium-blog-thumbnail-container .below-entry-meta {
3208
+ width: 100%;
3209
+ height: 100%;
3210
+ margin: 0 !important;
3211
+ -webkit-transition: all 0.4s ease-in-out;
3212
+ transition: all 0.4s ease-in-out; }
3213
+
3214
+ .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3215
+ .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3216
+ -webkit-transform: scale(1.2);
3217
+ -ms-transform: scale(1.2);
3218
+ transform: scale(1.2); }
3219
+
3220
+ .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3221
+ -webkit-filter: sepia(30%);
3222
+ filter: sepia(30%); }
3223
+
3224
+ .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3225
+ -webkit-filter: brightness(1);
3226
+ filter: brightness(1); }
3227
+
3228
+ .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3229
+ -webkit-transform: translateX(-15px) scale(1.1);
3230
+ -ms-transform: translateX(-15px) scale(1.1);
3231
+ transform: translateX(-15px) scale(1.1); }
3232
+
3233
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3234
+ -webkit-transform: scale(1.2);
3235
+ -ms-transform: scale(1.2);
3236
+ transform: scale(1.2); }
3237
+
3238
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3239
+ -webkit-transform: scale(1.1);
3240
+ -ms-transform: scale(1.1);
3241
+ transform: scale(1.1); }
3242
+
3243
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3244
+ -webkit-transform: scale(1.3) rotate(5deg);
3245
+ -ms-transform: scale(1.3) rotate(5deg);
3246
+ transform: scale(1.3) rotate(5deg); }
3247
+
3248
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3249
+ -webkit-filter: grayscale(100%);
3250
+ filter: grayscale(100%); }
3251
+
3252
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3253
+ -webkit-filter: blur(3px);
3254
+ filter: blur(3px); }
3255
+
3256
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3257
+ -webkit-filter: sepia(0%);
3258
+ filter: sepia(0%); }
3259
+
3260
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3261
+ -webkit-filter: brightness(1.2);
3262
+ filter: brightness(1.2); }
3263
+
3264
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3265
+ -webkit-transform: translateX(0px) scale(1.1);
3266
+ -ms-transform: translateX(0px) scale(1.1);
3267
+ transform: translateX(0px) scale(1.1); }
3268
+
3269
+ .premium-blog-post-container {
3270
+ overflow: hidden; }
3271
+ .premium-blog-post-container .premium-blog-inner-container {
3272
+ -js-display: flex;
3273
+ display: -webkit-box;
3274
+ display: -webkit-flex;
3275
+ display: -moz-box;
3276
+ display: -ms-flexbox;
3277
+ display: flex; }
3278
+ .premium-blog-post-container .premium-blog-entry-container {
3279
+ margin: 0 !important; }
3280
+ .premium-blog-post-container .premium-blog-post-content {
3281
+ line-height: 1.5em;
3282
+ color: #777;
3283
+ font-size: 14px;
3284
+ margin-bottom: 10px; }
3285
+ .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
3286
+ .premium-blog-post-container .premium-blog-post-link:hover,
3287
+ .premium-blog-post-container .premium-blog-post-link:focus {
3288
+ -webkit-box-shadow: none !important;
3289
+ box-shadow: none !important;
3290
+ outline: none !important; }
3291
+ .premium-blog-post-container .premium-blog-entry-title {
3292
+ font-size: 18px;
3293
+ margin-bottom: 5px; }
3294
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
3295
+ position: relative;
3296
+ z-index: 3;
3297
+ top: -50px; }
3298
+ .premium-blog-post-container .premium-blog-content-wrapper {
3299
+ background-color: #f5f5f5;
3300
+ padding: 30px; }
3301
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
3302
+ top: 0; }
3303
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
3304
+ position: absolute;
3305
+ content: "";
3306
+ z-index: 1;
3307
+ top: 50%;
3308
+ left: 50%;
3309
+ opacity: 0;
3310
+ -webkit-transform: translate(-50%, -50%);
3311
+ -ms-transform: translate(-50%, -50%);
3312
+ transform: translate(-50%, -50%);
3313
+ -webkit-transition: all 0.4s linear 0s;
3314
+ transition: all 0.4s linear 0s;
3315
+ height: 1px;
3316
+ width: 100%;
3317
+ background-color: #fff; }
3318
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
3319
+ width: 1px;
3320
+ height: 100%; }
3321
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
3322
+ width: 20px;
3323
+ opacity: 1; }
3324
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
3325
+ height: 20px;
3326
+ opacity: 1; }
3327
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
3328
+ margin: 0px 10px 20px;
3329
+ clear: both; }
3330
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
3331
+ position: absolute;
3332
+ top: 0;
3333
+ left: 0;
3334
+ width: 100%;
3335
+ height: 100%;
3336
+ -webkit-transition: all 0.3s ease-in-out;
3337
+ transition: all 0.3s ease-in-out;
3338
+ opacity: 0; }
3339
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
3340
+ -js-display: flex;
3341
+ display: -webkit-box;
3342
+ display: -webkit-flex;
3343
+ display: -moz-box;
3344
+ display: -ms-flexbox;
3345
+ display: flex;
3346
+ -webkit-box-pack: center;
3347
+ -webkit-justify-content: center;
3348
+ -moz-box-pack: center;
3349
+ -ms-flex-pack: center;
3350
+ justify-content: center;
3351
+ -webkit-box-align: center;
3352
+ -webkit-align-items: center;
3353
+ -moz-box-align: center;
3354
+ -ms-flex-align: center;
3355
+ align-items: center;
3356
+ width: 100%;
3357
+ height: 100%; }
3358
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
3359
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
3360
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
3361
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
3362
+ -webkit-transition: all 0.3s ease-in-out;
3363
+ transition: all 0.3s ease-in-out; }
3364
+ .premium-blog-post-container.premium-blog-skin-side {
3365
+ -js-display: flex;
3366
+ display: -webkit-box;
3367
+ display: -webkit-flex;
3368
+ display: -moz-box;
3369
+ display: -ms-flexbox;
3370
+ display: flex; }
3371
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
3372
+ height: 100%; }
3373
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
3374
+ -webkit-box-flex: 1;
3375
+ -webkit-flex: 1;
3376
+ -moz-box-flex: 1;
3377
+ -ms-flex: 1;
3378
+ flex: 1; }
3379
+ .premium-blog-post-container.premium-blog-skin-banner {
3380
+ position: relative; }
3381
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
3382
+ position: absolute;
3383
+ width: 100%;
3384
+ bottom: 0;
3385
+ -js-display: flex;
3386
+ display: -webkit-box;
3387
+ display: -webkit-flex;
3388
+ display: -moz-box;
3389
+ display: -ms-flexbox;
3390
+ display: flex;
3391
+ -webkit-box-orient: vertical;
3392
+ -webkit-box-direction: normal;
3393
+ -webkit-flex-direction: column;
3394
+ -moz-box-orient: vertical;
3395
+ -moz-box-direction: normal;
3396
+ -ms-flex-direction: column;
3397
+ flex-direction: column;
3398
+ background-color: transparent;
3399
+ z-index: 3; }
3400
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
3401
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
3402
+ transition: -webkit-transform 0.3s ease-in-out;
3403
+ transition: transform 0.3s ease-in-out;
3404
+ transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
3405
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
3406
+ -webkit-transform: translateY(-5px);
3407
+ -ms-transform: translateY(-5px);
3408
+ transform: translateY(-5px); }
3409
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
3410
+ margin: 0;
3411
+ padding: 0;
3412
+ list-style: none;
3413
+ -js-display: flex;
3414
+ display: -webkit-box;
3415
+ display: -webkit-flex;
3416
+ display: -moz-box;
3417
+ display: -ms-flexbox;
3418
+ display: flex; }
3419
+ .premium-blog-post-container .premium-blog-cats-container a {
3420
+ display: block;
3421
+ font-size: 12px;
3422
+ color: #fff;
3423
+ background-color: #777;
3424
+ margin: 0 3px 10px 0;
3425
+ padding: 5px;
3426
+ -webkit-transition: all 0.3s ease-in-out;
3427
+ transition: all 0.3s ease-in-out; }
3428
+
3429
+ /*
3430
+ * Diagonal Effect
3431
+ */
3432
+ .premium-blog-diagonal-container {
3433
+ position: absolute;
3434
+ top: 0;
3435
+ left: 0;
3436
+ width: 100%;
3437
+ height: 100%; }
3438
+
3439
+ .premium-blog-diagonal-effect:before {
3440
+ position: absolute;
3441
+ top: 0px;
3442
+ left: 0px;
3443
+ width: 100%;
3444
+ height: 100%;
3445
+ content: " ";
3446
+ z-index: 1;
3447
+ background: rgba(255, 255, 255, 0.2);
3448
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3449
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3450
+ -webkit-transition: all 0.3s linear 0s;
3451
+ transition: all 0.3s linear 0s; }
3452
+
3453
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
3454
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3455
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3456
+
3457
+ /*
3458
+ * Framed Effect
3459
+ */
3460
+ .premium-blog-framed-effect {
3461
+ position: absolute;
3462
+ width: -webkit-calc(100% - 30px);
3463
+ width: calc(100% - 30px);
3464
+ height: -webkit-calc(100% - 30px);
3465
+ height: calc(100% - 30px);
3466
+ top: 15px;
3467
+ left: 15px;
3468
+ opacity: 0;
3469
+ -webkit-transform: scale(0.3);
3470
+ -ms-transform: scale(0.3);
3471
+ transform: scale(0.3);
3472
+ -webkit-transition: all 0.3s linear 0s;
3473
+ transition: all 0.3s linear 0s; }
3474
+
3475
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
3476
+ opacity: 0.99;
3477
+ -webkit-transform: scale(1);
3478
+ -ms-transform: scale(1);
3479
+ transform: scale(1); }
3480
+
3481
+ /*
3482
+ * Bordered Effect
3483
+ */
3484
+ .premium-blog-bordered-effect {
3485
+ position: absolute;
3486
+ top: 0;
3487
+ left: 0;
3488
+ width: 100%;
3489
+ height: 100%;
3490
+ opacity: 0;
3491
+ padding: 15px;
3492
+ -webkit-transition: all 0.3s linear 0s;
3493
+ transition: all 0.3s linear 0s; }
3494
+ .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
3495
+ content: "";
3496
+ display: block;
3497
+ position: absolute;
3498
+ top: 0;
3499
+ left: 0;
3500
+ width: 100%;
3501
+ height: 100%;
3502
+ -webkit-transition: all 0.5s linear 0s;
3503
+ transition: all 0.5s linear 0s;
3504
+ -webkit-transition-delay: 0s;
3505
+ transition-delay: 0s;
3506
+ border-color: rgba(255, 255, 255, 0.45); }
3507
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
3508
+ border-right: 2px solid;
3509
+ border-left: 2px solid;
3510
+ -webkit-transform: scale(1, 0);
3511
+ -ms-transform: scale(1, 0);
3512
+ transform: scale(1, 0);
3513
+ -webkit-transform-origin: 100% 0;
3514
+ -ms-transform-origin: 100% 0;
3515
+ transform-origin: 100% 0; }
3516
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
3517
+ border-top: 2px solid;
3518
+ border-bottom: 2px solid;
3519
+ -webkit-transform: scale(0, 1);
3520
+ -ms-transform: scale(0, 1);
3521
+ transform: scale(0, 1);
3522
+ -webkit-transform-origin: 0 0;
3523
+ -ms-transform-origin: 0 0;
3524
+ transform-origin: 0 0; }
3525
+
3526
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
3527
+ opacity: 0.99; }
3528
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
3529
+ -webkit-transition-delay: 0.15s;
3530
+ transition-delay: 0.15s;
3531
+ opacity: 1;
3532
+ -webkit-transform: scale(1);
3533
+ -ms-transform: scale(1);
3534
+ transform: scale(1); }
3535
+
3536
+ /*
3537
+ * Squares Effect
3538
+ */
3539
+ .premium-blog-squares-effect,
3540
+ .premium-blog-squares-square-container {
3541
+ position: absolute;
3542
+ top: 0;
3543
+ left: 0;
3544
+ width: 100%;
3545
+ height: 100%; }
3546
+
3547
+ .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
3548
+ position: absolute;
3549
+ content: "";
3550
+ top: 0;
3551
+ left: 0;
3552
+ width: 50%;
3553
+ height: 50%;
3554
+ -webkit-transform: translate(-100%, -100%);
3555
+ -ms-transform: translate(-100%, -100%);
3556
+ transform: translate(-100%, -100%);
3557
+ opacity: 0.7;
3558
+ -webkit-transition: all 0.3s linear 0s;
3559
+ transition: all 0.3s linear 0s; }
3560
+
3561
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3562
+ position: absolute;
3563
+ content: "";
3564
+ top: 0;
3565
+ left: 0;
3566
+ width: 50%;
3567
+ height: 50%;
3568
+ -webkit-transform: translate(-100%, -100%);
3569
+ -ms-transform: translate(-100%, -100%);
3570
+ transform: translate(-100%, -100%);
3571
+ opacity: 0.7;
3572
+ -webkit-transition: all 0.3s linear 0s;
3573
+ transition: all 0.3s linear 0s; }
3574
+
3575
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3576
+ opacity: 0.8; }
3577
+
3578
+ .premium-blog-squares-effect:after {
3579
+ -webkit-transform: translate(200%, 200%);
3580
+ -ms-transform: translate(200%, 200%);
3581
+ transform: translate(200%, 200%); }
3582
+
3583
+ .premium-blog-squares-square-container:before {
3584
+ -webkit-transform: translate(-100%, 200%);
3585
+ -ms-transform: translate(-100%, 200%);
3586
+ transform: translate(-100%, 200%); }
3587
+
3588
+ .premium-blog-squares-square-container:after {
3589
+ -webkit-transform: translate(200%, -100%);
3590
+ -ms-transform: translate(200%, -100%);
3591
+ transform: translate(200%, -100%); }
3592
+
3593
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
3594
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3595
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3596
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
3597
+
3598
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
3599
+ -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3600
+ -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3601
+ transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
3602
+
3603
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
3604
+ -webkit-transform: translate(0, 100%);
3605
+ -ms-transform: translate(0, 100%);
3606
+ transform: translate(0, 100%); }
3607
+
3608
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
3609
+ -webkit-transform: translate(100%, 0%);
3610
+ -ms-transform: translate(100%, 0%);
3611
+ transform: translate(100%, 0%); }
3612
+
3613
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
3614
+ opacity: 1; }
3615
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
3616
+ opacity: 1;
3617
+ -webkit-transform: scale(1);
3618
+ -ms-transform: scale(1);
3619
+ transform: scale(1); }
3620
+
3621
+ .premium-blog-clear-fix {
3622
+ clear: both; }
3623
+
3624
+ .premium-blog-masked .premium-blog-thumbnail-container {
3625
+ position: relative;
3626
+ overflow: visible; }
3627
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
3628
+ position: absolute;
3629
+ height: 100px;
3630
+ width: 100%;
3631
+ bottom: -5px;
3632
+ left: 0;
3633
+ fill: #f5f5f5;
3634
+ z-index: 99; }
3635
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
3636
+ -webkit-transform: rotate(180deg);
3637
+ -ms-transform: rotate(180deg);
3638
+ transform: rotate(180deg); }
3639
+
3640
+ .premium-blog-masked .premium-blog-author-thumbnail,
3641
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
3642
+ z-index: 999 !important; }
3643
+
3644
+ .premium-blog-format-link {
3645
+ padding: 5px;
3646
+ line-height: 0; }
3647
+
3648
+ .premium-blog-entry-meta {
3649
+ line-height: 1.3em;
3650
+ font-size: 12px;
3651
+ margin-bottom: 13px;
3652
+ color: #adadad; }
3653
+ .premium-blog-entry-meta i {
3654
+ margin-right: 3px;
3655
+ -webkit-transition: all 0.3s ease-in-out;
3656
+ transition: all 0.3s ease-in-out; }
3657
+
3658
+ .premium-blog-meta-data {
3659
+ display: inline-block; }
3660
+ .premium-blog-meta-data .premium-blog-meta-separator {
3661
+ margin: 0 5px; }
3662
+ .premium-blog-meta-data a,
3663
+ .premium-blog-meta-data span {
3664
+ color: inherit;
3665
+ -webkit-transition: all 0.3s ease-in-out;
3666
+ transition: all 0.3s ease-in-out; }
3667
+
3668
+ .premium-blog-author-thumbnail {
3669
+ position: relative;
3670
+ padding: 0 30px;
3671
+ width: 100%;
3672
+ top: -10px;
3673
+ height: 0;
3674
+ pointer-events: none; }
3675
+ .premium-blog-author-thumbnail img {
3676
+ -webkit-border-radius: 50%;
3677
+ border-radius: 50%;
3678
+ width: 60px;
3679
+ pointer-events: all;
3680
+ -webkit-transform: translateY(-50%);
3681
+ -ms-transform: translateY(-50%);
3682
+ transform: translateY(-50%); }
3683
+
3684
+ .premium-blog-entry-title a,
3685
+ .premium-blog-post-tags-container a,
3686
+ .premium-blog-post-content .premium-blog-excerpt-link {
3687
+ -webkit-transition: all 0.3s ease-in-out;
3688
+ transition: all 0.3s ease-in-out; }
3689
+
3690
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
3691
+ background-color: transparent;
3692
+ color: #54595f;
3693
+ padding: 0; }
3694
+
3695
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
3696
+ width: 100%; }
3697
+
3698
+ .premium-blog-post-tags-container {
3699
+ margin-top: 8px;
3700
+ -js-display: flex;
3701
+ display: -webkit-box;
3702
+ display: -webkit-flex;
3703
+ display: -moz-box;
3704
+ display: -ms-flexbox;
3705
+ display: flex;
3706
+ -webkit-box-align: center;
3707
+ -webkit-align-items: center;
3708
+ -moz-box-align: center;
3709
+ -ms-flex-align: center;
3710
+ align-items: center;
3711
+ -webkit-flex-wrap: wrap;
3712
+ -ms-flex-wrap: wrap;
3713
+ flex-wrap: wrap; }
3714
+ .premium-blog-post-tags-container a {
3715
+ color: inherit;
3716
+ margin-left: 5px; }
3717
+
3718
+ /*Tags align*/
3719
+ .premium-blog-align-left .post-categories,
3720
+ .premium-blog-align-left .premium-blog-inner-container,
3721
+ .premium-blog-align-left .premium-blog-post-tags-container {
3722
+ -webkit-box-pack: start;
3723
+ -webkit-justify-content: flex-start;
3724
+ -moz-box-pack: start;
3725
+ -ms-flex-pack: start;
3726
+ justify-content: flex-start; }
3727
+
3728
+ .premium-blog-align-center .post-categories,
3729
+ .premium-blog-align-center .premium-blog-inner-container,
3730
+ .premium-blog-align-center .premium-blog-post-tags-container {
3731
+ -webkit-box-pack: center;
3732
+ -webkit-justify-content: center;
3733
+ -moz-box-pack: center;
3734
+ -ms-flex-pack: center;
3735
+ justify-content: center; }
3736
+
3737
+ .premium-blog-align-right .post-categories,
3738
+ .premium-blog-align-right .premium-blog-inner-container,
3739
+ .premium-blog-align-right .premium-blog-post-tags-container {
3740
+ -webkit-box-pack: end;
3741
+ -webkit-justify-content: flex-end;
3742
+ -moz-box-pack: end;
3743
+ -ms-flex-pack: end;
3744
+ justify-content: flex-end; }
3745
+
3746
+ /* Pagination */
3747
+ .premium-blog-pagination-container {
3748
+ text-align: right; }
3749
+ .premium-blog-pagination-container span {
3750
+ cursor: default; }
3751
+ .premium-blog-pagination-container .page-numbers {
3752
+ display: inline-block;
3753
+ color: #000;
3754
+ line-height: 1;
3755
+ font-size: 1em;
3756
+ font-weight: 400;
3757
+ text-decoration: none;
3758
+ padding: 0.75em;
3759
+ margin: 0 0.4em 0.4em 0;
3760
+ -webkit-transition: all 0.2s ease-in-out;
3761
+ transition: all 0.2s ease-in-out; }
3762
+
3763
+ .premium-blog-wrap .premium-loading-feed {
3764
+ display: block;
3765
+ position: absolute;
3766
+ width: 100%;
3767
+ height: 100%;
3768
+ top: 0px;
3769
+ left: 0px;
3770
+ bottom: 0px;
3771
+ right: 0px;
3772
+ background: rgba(255, 255, 255, 0.2);
3773
+ -js-display: flex;
3774
+ display: -webkit-box;
3775
+ display: -webkit-flex;
3776
+ display: -moz-box;
3777
+ display: -ms-flexbox;
3778
+ display: flex;
3779
+ -webkit-box-align: center;
3780
+ -webkit-align-items: center;
3781
+ -moz-box-align: center;
3782
+ -ms-flex-align: center;
3783
+ align-items: center;
3784
+ z-index: 99; }
3785
+
3786
+ .premium-blog-wrap {
3787
+ -js-display: flex;
3788
+ display: -webkit-box;
3789
+ display: -webkit-flex;
3790
+ display: -moz-box;
3791
+ display: -ms-flexbox;
3792
+ display: flex;
3793
+ -webkit-flex-wrap: wrap;
3794
+ -ms-flex-wrap: wrap;
3795
+ flex-wrap: wrap; }
3796
+ .premium-blog-wrap ul.slick-dots {
3797
+ width: 100%; }
3798
+
3799
+ /*
3800
+ * List Layout
3801
+ */
3802
+ .premium-blog-list .premium-blog-post-outer-container {
3803
+ width: 100%; }
3804
+
3805
+ /**
3806
+ * Even Layout
3807
+ */
3808
+ .premium-blog-even .premium-blog-post-container {
3809
+ height: 100%; }
3810
+
3811
+ .premium-blog-even .slick-track {
3812
+ -js-display: flex;
3813
+ display: -webkit-box;
3814
+ display: -webkit-flex;
3815
+ display: -moz-box;
3816
+ display: -ms-flexbox;
3817
+ display: flex; }
3818
+
3819
+ .premium-blog-even .slick-slide {
3820
+ height: inherit !important; }
3821
+
3822
+ /**
3823
+ * Responsive Style
3824
+ */
3825
+ @media (max-width: 768px) {
3826
+ .premium-blog-content-wrapper {
3827
+ top: 0;
3828
+ margin: 0;
3829
+ padding: 15px; }
3830
+ .premium-blog-skin-side {
3831
+ -webkit-box-orient: vertical;
3832
+ -webkit-box-direction: normal;
3833
+ -webkit-flex-direction: column;
3834
+ -moz-box-orient: vertical;
3835
+ -moz-box-direction: normal;
3836
+ -ms-flex-direction: column;
3837
+ flex-direction: column; } }
3838
+
3839
+ /************ Premium Team Members ************/
3840
+ /**********************************************/
3841
+ .premium-person-container {
3842
+ position: relative; }
3843
+
3844
+ .premium-person-image-container {
3845
+ position: relative;
3846
+ text-align: center; }
3847
+ .premium-person-image-container .premium-person-image-wrap {
3848
+ overflow: hidden; }
3849
+
3850
+ .premium-person-zoomout-effect .premium-person-image-container img,
3851
+ .premium-person-scale-effect .premium-person-image-container img {
3852
+ -webkit-transform: scale(1.2);
3853
+ -ms-transform: scale(1.2);
3854
+ transform: scale(1.2); }
3855
+
3856
+ .premium-person-sepia-effect .premium-person-image-container img {
3857
+ -webkit-filter: sepia(30%);
3858
+ filter: sepia(30%); }
3859
+
3860
+ .premium-person-bright-effect .premium-person-image-container img {
3861
+ -webkit-filter: brightness(1);
3862
+ filter: brightness(1); }
3863
+
3864
+ .premium-person-trans-effect .premium-person-image-container img {
3865
+ -webkit-transform: translateX(-15px) scale(1.1);
3866
+ -ms-transform: translateX(-15px) scale(1.1);
3867
+ transform: translateX(-15px) scale(1.1); }
3868
+
3869
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
3870
+ -webkit-transform: scale(1.2);
3871
+ -ms-transform: scale(1.2);
3872
+ transform: scale(1.2); }
3873
+
3874
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
3875
+ -webkit-transform: scale(1.1);
3876
+ -ms-transform: scale(1.1);
3877
+ transform: scale(1.1); }
3878
+
3879
+ .premium-person-scale-effect:hover .premium-person-image-container img {
3880
+ -webkit-transform: scale(1.3) rotate(5deg);
3881
+ -ms-transform: scale(1.3) rotate(5deg);
3882
+ transform: scale(1.3) rotate(5deg); }
3883
+
3884
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
3885
+ -webkit-filter: grayscale(100%);
3886
+ filter: grayscale(100%); }
3887
+
3888
+ .premium-person-blur-effect:hover .premium-person-image-container img {
3889
+ -webkit-filter: blur(3px);
3890
+ filter: blur(3px); }
3891
+
3892
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
3893
+ -webkit-filter: sepia(0%);
3894
+ filter: sepia(0%); }
3895
+
3896
+ .premium-person-bright-effect:hover .premium-person-image-container img {
3897
+ -webkit-filter: brightness(1.2);
3898
+ filter: brightness(1.2); }
3899
+
3900
+ .premium-person-trans-effect:hover .premium-person-image-container img {
3901
+ -webkit-transform: translateX(0px) scale(1.1);
3902
+ -ms-transform: translateX(0px) scale(1.1);
3903
+ transform: translateX(0px) scale(1.1); }
3904
+
3905
+ .premium-person-container .premium-person-image-container img {
3906
+ width: 100%;
3907
+ height: 100%;
3908
+ -o-object-fit: cover;
3909
+ object-fit: cover;
3910
+ -webkit-transition: all 0.5s ease-in-out;
3911
+ transition: all 0.5s ease-in-out; }
3912
+
3913
+ .premium-person-style2 .premium-person-social {
3914
+ position: absolute;
3915
+ top: 0;
3916
+ left: 0;
3917
+ width: 100%;
3918
+ height: 100%;
3919
+ z-index: 2;
3920
+ -js-display: flex;
3921
+ display: -webkit-box;
3922
+ display: -webkit-flex;
3923
+ display: -moz-box;
3924
+ display: -ms-flexbox;
3925
+ display: flex;
3926
+ -webkit-box-pack: center;
3927
+ -webkit-justify-content: center;
3928
+ -moz-box-pack: center;
3929
+ -ms-flex-pack: center;
3930
+ justify-content: center;
3931
+ -webkit-box-align: center;
3932
+ -webkit-align-items: center;
3933
+ -moz-box-align: center;
3934
+ -ms-flex-align: center;
3935
+ align-items: center;
3936
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3937
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3938
+ -webkit-transition: all 0.5s linear 0s;
3939
+ transition: all 0.5s linear 0s;
3940
+ opacity: 0; }
3941
+
3942
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
3943
+ opacity: 1; }
3944
+
3945
+ .premium-person-list-item a {
3946
+ display: inline-block; }
3947
+
3948
+ .premium-person-style2 .premium-person-list-item a {
3949
+ opacity: 0;
3950
+ -webkit-transform: scale(0);
3951
+ -ms-transform: scale(0);
3952
+ transform: scale(0);
3953
+ -webkit-transition: all 0.5s ease-in-out 0s;
3954
+ transition: all 0.5s ease-in-out 0s; }
3955
+
3956
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
3957
+ opacity: 1;
3958
+ -webkit-transform: scale(1);
3959
+ -ms-transform: scale(1);
3960
+ transform: scale(1); }
3961
+
3962
+ .premium-person-info-container {
3963
+ padding: 30px 15px; }
3964
+
3965
+ .premium-person-name {
3966
+ margin: 0 0 5px;
3967
+ font-weight: 700; }
3968
+
3969
+ .premium-person-title {
3970
+ margin: 0 0 20px;
3971
+ padding: 0; }
3972
+
3973
+ .premium-person-content {
3974
+ margin: 0 0 30px; }
3975
+
3976
+ /*Override Theme List Margin*/
3977
+ ul.premium-person-social-list {
3978
+ margin: 0px !important;
3979
+ padding: 0; }
3980
+
3981
+ .premium-person-social-list .premium-person-list-item {
3982
+ display: inline;
3983
+ list-style: none; }
3984
+
3985
+ .premium-person-social-list li {
3986
+ position: relative;
3987
+ bottom: 0px;
3988
+ -webkit-transition: all 0.2s ease-in-out;
3989
+ transition: all 0.2s ease-in-out; }
3990
+ .premium-person-social-list li i {
3991
+ position: relative;
3992
+ bottom: 0px;
3993
+ -webkit-transition: all 0.2s ease-in-out;
3994
+ transition: all 0.2s ease-in-out; }
3995
+
3996
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
3997
+ background-color: #3b5998 !important; }
3998
+
3999
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
4000
+ background-color: #55acee !important; }
4001
+
4002
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4003
+ background-color: #0077b5 !important; }
4004
+
4005
+ .premium-person-defaults-yes li.premium-person-google:hover a {
4006
+ background-color: #dc4e41 !important; }
4007
+
4008
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
4009
+ background-color: #b31217 !important; }
4010
+
4011
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
4012
+ background-color: #e4405f !important; }
4013
+
4014
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
4015
+ background-color: #00aff0 !important; }
4016
+
4017
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4018
+ background-color: #bd081c !important; }
4019
+
4020
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4021
+ background-color: #ea4c89 !important; }
4022
+
4023
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
4024
+ background-color: #b23121 !important; }
4025
+
4026
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
4027
+ background-color: #1769ff !important; }
4028
+
4029
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4030
+ background-color: #25d366 !important; }
4031
+
4032
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
4033
+ background-color: #0088cc !important; }
4034
+
4035
+ .premium-person-defaults-yes li.premium-person-site:hover a {
4036
+ background-color: #0055a5 !important; }
4037
+
4038
+ .premium-person-social-list li:hover a {
4039
+ -webkit-box-shadow: none;
4040
+ box-shadow: none; }
4041
+
4042
+ .premium-person-social-list li a:focus {
4043
+ -webkit-box-shadow: none;
4044
+ box-shadow: none;
4045
+ outline: none; }
4046
+
4047
+ .premium-person-social-list li i {
4048
+ font-size: 18px; }
4049
+
4050
+ .elementor-widget-premium-addon-person .elementor-widget-container {
4051
+ -js-display: flex;
4052
+ display: -webkit-box;
4053
+ display: -webkit-flex;
4054
+ display: -moz-box;
4055
+ display: -ms-flexbox;
4056
+ display: flex;
4057
+ -webkit-box-pack: center;
4058
+ -webkit-justify-content: center;
4059
+ -moz-box-pack: center;
4060
+ -ms-flex-pack: center;
4061
+ justify-content: center; }
4062
+
4063
+ .premium-persons-container.multiple-persons {
4064
+ -js-display: flex;
4065
+ display: -webkit-box;
4066
+ display: -webkit-flex;
4067
+ display: -moz-box;
4068
+ display: -ms-flexbox;
4069
+ display: flex;
4070
+ -webkit-flex-wrap: wrap;
4071
+ -ms-flex-wrap: wrap;
4072
+ flex-wrap: wrap;
4073
+ width: 100%; }
4074
+
4075
+ .premium-person-style1 .premium-person-container {
4076
+ overflow: hidden; }
4077
+ .premium-person-style1 .premium-person-container .premium-person-info {
4078
+ position: absolute;
4079
+ top: auto;
4080
+ right: 0;
4081
+ left: 0;
4082
+ -webkit-transition: all 500ms ease 0s;
4083
+ transition: all 500ms ease 0s;
4084
+ -webkit-transform: translate3d(0, 100%, 0);
4085
+ transform: translate3d(0, 100%, 0); }
4086
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
4087
+ -webkit-transform: translate3d(0, 0, 0);
4088
+ transform: translate3d(0, 0, 0);
4089
+ bottom: -1px !important; }
4090
+
4091
+ .premium-person-style1 .premium-person-social-list li:hover {
4092
+ bottom: 5px; }
4093
+
4094
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4095
+ -webkit-box-align: start;
4096
+ -webkit-align-items: flex-start;
4097
+ -moz-box-align: start;
4098
+ -ms-flex-align: start;
4099
+ align-items: flex-start; }
4100
+
4101
+ .premium-person-style1 .slick-track {
4102
+ -js-display: flex;
4103
+ display: -webkit-box;
4104
+ display: -webkit-flex;
4105
+ display: -moz-box;
4106
+ display: -ms-flexbox;
4107
+ display: flex; }
4108
+
4109
+ .premium-person-style1 .slick-slide {
4110
+ height: inherit !important; }
4111
+
4112
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
4113
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
4114
+ height: 100%; }
4115
+
4116
+ .premium-person-style3 .premium-person-info-container {
4117
+ position: absolute;
4118
+ top: 0;
4119
+ left: 0;
4120
+ width: 100%;
4121
+ height: 100%;
4122
+ -js-display: flex;
4123
+ display: -webkit-box;
4124
+ display: -webkit-flex;
4125
+ display: -moz-box;
4126
+ display: -ms-flexbox;
4127
+ display: flex;
4128
+ -webkit-box-orient: vertical;
4129
+ -webkit-box-direction: normal;
4130
+ -webkit-flex-direction: column;
4131
+ -moz-box-orient: vertical;
4132
+ -moz-box-direction: normal;
4133
+ -ms-flex-direction: column;
4134
+ flex-direction: column;
4135
+ -webkit-box-pack: justify;
4136
+ -webkit-justify-content: space-between;
4137
+ -moz-box-pack: justify;
4138
+ -ms-flex-pack: justify;
4139
+ justify-content: space-between; }
4140
+
4141
+ .premium-person-style3 .premium-person-title-desc-wrap {
4142
+ -js-display: flex;
4143
+ display: -webkit-box;
4144
+ display: -webkit-flex;
4145
+ display: -moz-box;
4146
+ display: -ms-flexbox;
4147
+ display: flex;
4148
+ -webkit-box-orient: horizontal;
4149
+ -webkit-box-direction: reverse;
4150
+ -webkit-flex-direction: row-reverse;
4151
+ -moz-box-orient: horizontal;
4152
+ -moz-box-direction: reverse;
4153
+ -ms-flex-direction: row-reverse;
4154
+ flex-direction: row-reverse;
4155
+ -webkit-box-pack: justify;
4156
+ -webkit-justify-content: space-between;
4157
+ -moz-box-pack: justify;
4158
+ -ms-flex-pack: justify;
4159
+ justify-content: space-between;
4160
+ -webkit-box-align: start;
4161
+ -webkit-align-items: flex-start;
4162
+ -moz-box-align: start;
4163
+ -ms-flex-align: start;
4164
+ align-items: flex-start; }
4165
+
4166
+ .premium-person-style3 .premium-person-name-icons-wrap {
4167
+ -js-display: flex;
4168
+ display: -webkit-box;
4169
+ display: -webkit-flex;
4170
+ display: -moz-box;
4171
+ display: -ms-flexbox;
4172
+ display: flex;
4173
+ -webkit-box-pack: justify;
4174
+ -webkit-justify-content: space-between;
4175
+ -moz-box-pack: justify;
4176
+ -ms-flex-pack: justify;
4177
+ justify-content: space-between;
4178
+ -webkit-box-align: end;
4179
+ -webkit-align-items: flex-end;
4180
+ -moz-box-align: end;
4181
+ -ms-flex-align: end;
4182
+ align-items: flex-end; }
4183
+
4184
+ .premium-person-style3 .premium-person-title {
4185
+ opacity: 0;
4186
+ -webkit-transition: all 0.3s ease;
4187
+ transition: all 0.3s ease;
4188
+ width: 0; }
4189
+ .premium-person-style3 .premium-person-title span {
4190
+ display: inline-block; }
4191
+
4192
+ .premium-person-style3 .premium-person-name {
4193
+ padding-left: 10px; }
4194
+
4195
+ .premium-person-style3 .premium-person-social-list {
4196
+ -js-display: flex;
4197
+ display: -webkit-box;
4198
+ display: -webkit-flex;
4199
+ display: -moz-box;
4200
+ display: -ms-flexbox;
4201
+ display: flex;
4202
+ -webkit-box-orient: vertical;
4203
+ -webkit-box-direction: normal;
4204
+ -webkit-flex-direction: column;
4205
+ -moz-box-orient: vertical;
4206
+ -moz-box-direction: normal;
4207
+ -ms-flex-direction: column;
4208
+ flex-direction: column;
4209
+ -webkit-transform: translateY(20px);
4210
+ -ms-transform: translateY(20px);
4211
+ transform: translateY(20px);
4212
+ opacity: 0;
4213
+ -webkit-transition: all 0.3s ease;
4214
+ transition: all 0.3s ease; }
4215
+
4216
+ .premium-person-style3 .premium-person-list-item {
4217
+ line-height: 0; }
4218
+ .premium-person-style3 .premium-person-list-item a {
4219
+ padding: 5px 10px 0 0;
4220
+ margin: 5px 0; }
4221
+
4222
+ .premium-person-style3 .premium-person-container:hover .premium-person-title {
4223
+ opacity: 1; }
4224
+
4225
+ .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
4226
+ opacity: 1;
4227
+ -webkit-transform: translateY(0);
4228
+ -ms-transform: translateY(0);
4229
+ transform: translateY(0); }
4230
+
4231
+ .premium-persons-title-cw .premium-person-title {
4232
+ -webkit-transform: translateX(15px) rotate(90deg);
4233
+ -ms-transform: translateX(15px) rotate(90deg);
4234
+ transform: translateX(15px) rotate(90deg);
4235
+ -webkit-transform-origin: top;
4236
+ -ms-transform-origin: top;
4237
+ transform-origin: top; }
4238
+
4239
+ .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
4240
+ -webkit-transform: translateX(0) rotate(90deg);
4241
+ -ms-transform: translateX(0) rotate(90deg);
4242
+ transform: translateX(0) rotate(90deg); }
4243
+
4244
+ .premium-persons-title-ccw .premium-person-title {
4245
+ width: auto;
4246
+ margin-right: 20px;
4247
+ -webkit-transform: translateX(15px) rotate(-90deg);
4248
+ -ms-transform: translateX(15px) rotate(-90deg);
4249
+ transform: translateX(15px) rotate(-90deg);
4250
+ -webkit-transform-origin: center right;
4251
+ -ms-transform-origin: center right;
4252
+ transform-origin: center right; }
4253
+
4254
+ .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
4255
+ -webkit-transform: translateX(0) rotate(-90deg);
4256
+ -ms-transform: translateX(0) rotate(-90deg);
4257
+ transform: translateX(0) rotate(-90deg); }
4258
+
4259
+ /**************** Premium Fancy Text *******************/
4260
+ /*******************************************************/
4261
+ .premium-suffix-text,
4262
+ .premium-fancy-text,
4263
+ .premium-prefix-text {
4264
+ font-size: 40px; }
4265
+
4266
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
4267
+ list-style: none; }
4268
+
4269
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
4270
+ vertical-align: top; }
4271
+
4272
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
4273
+ margin: 0;
4274
+ padding: 0;
4275
+ border: none;
4276
+ position: relative; }
4277
+
4278
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
4279
+ position: absolute;
4280
+ top: 0;
4281
+ left: 0;
4282
+ display: inline-block; }
4283
+
4284
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
4285
+ opacity: 0;
4286
+ -webkit-animation: pa-zoom-out 0.8s;
4287
+ animation: pa-zoom-out 0.8s; }
4288
+
4289
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
4290
+ position: relative !important;
4291
+ -webkit-animation: pa-zoom-in 0.8s;
4292
+ animation: pa-zoom-in 0.8s; }
4293
+
4294
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
4295
+ -webkit-perspective: 300px;
4296
+ perspective: 300px; }
4297
+
4298
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
4299
+ -webkit-transform-origin: 50% 100%;
4300
+ -ms-transform-origin: 50% 100%;
4301
+ transform-origin: 50% 100%; }
4302
+
4303
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
4304
+ opacity: 0;
4305
+ -webkit-transform: rotateX(180deg);
4306
+ transform: rotateX(180deg);
4307
+ -webkit-animation: pa-rotate-out 1.2s;
4308
+ animation: pa-rotate-out 1.2s; }
4309
+
4310
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
4311
+ position: relative !important;
4312
+ -webkit-transform: rotateX(0deg);
4313
+ transform: rotateX(0deg);
4314
+ -webkit-animation: pa-rotate-in 1.2s;
4315
+ animation: pa-rotate-in 1.2s; }
4316
+
4317
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
4318
+ opacity: 0; }
4319
+
4320
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
4321
+ position: relative !important; }
4322
+
4323
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
4324
+ display: inline-block;
4325
+ width: 200px;
4326
+ font-weight: 400; }
4327
+
4328
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
4329
+ position: relative;
4330
+ vertical-align: sub; }
4331
+
4332
+ .premium-fancy-text-wrapper.auto-fade g > text {
4333
+ text-anchor: start;
4334
+ shape-rendering: crispEdges;
4335
+ opacity: 0;
4336
+ font-size: 300px;
4337
+ -webkit-animation-name: pa-auto-fade;
4338
+ animation-name: pa-auto-fade;
4339
+ -moz-animation-name: pa-auto-fade;
4340
+ -webkit-animation-duration: 9s;
4341
+ animation-duration: 9s;
4342
+ -webkit-animation-timing-function: linear;
4343
+ animation-timing-function: linear;
4344
+ -webkit-animation-iteration-count: infinite;
4345
+ animation-iteration-count: infinite; }
4346
+
4347
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
4348
+ -webkit-animation-delay: 0s;
4349
+ animation-delay: 0s; }
4350
+
4351
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
4352
+ -webkit-animation-delay: 3s;
4353
+ animation-delay: 3s; }
4354
+
4355
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
4356
+ -webkit-animation-delay: 6s;
4357
+ animation-delay: 6s; }
4358
+
4359
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
4360
+ position: relative; }
4361
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
4362
+ position: absolute;
4363
+ width: 100%;
4364
+ height: 3px;
4365
+ bottom: 0;
4366
+ left: 0;
4367
+ animation: pa-loading-bar 2.5s ease-out infinite;
4368
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
4369
+
4370
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
4371
+ -webkit-animation-play-state: paused;
4372
+ animation-play-state: paused; }
4373
+
4374
+ @-webkit-keyframes pa-auto-fade {
4375
+ 0% {
4376
+ opacity: 0; }
4377
+ 20% {
4378
+ opacity: 1; }
4379
+ 35% {
4380
+ opacity: 0; }
4381
+ 100% {
4382
+ opacity: 0; } }
4383
+
4384
+ @keyframes pa-auto-fade {
4385
+ 0% {
4386
+ opacity: 0; }
4387
+ 20% {
4388
+ opacity: 1; }
4389
+ 35% {
4390
+ opacity: 0; }
4391
+ 100% {
4392
+ opacity: 0; } }
4393
+
4394
+ @-webkit-keyframes pa-loading-bar {
4395
+ 0% {
4396
+ width: 0; }
4397
+ 100% {
4398
+ width: 100; } }
4399
+
4400
+ @keyframes pa-loading-bar {
4401
+ 0% {
4402
+ width: 0; }
4403
+ 100% {
4404
+ width: 100; } }
4405
+
4406
+ @-webkit-keyframes pa-zoom-in {
4407
+ 0% {
4408
+ opacity: 0;
4409
+ -webkit-transform: translateZ(100px);
4410
+ transform: translateZ(100px); }
4411
+ 100% {
4412
+ opacity: 1;
4413
+ -webkit-transform: translateZ(0);
4414
+ transform: translateZ(0); } }
4415
+
4416
+ @keyframes pa-zoom-in {
4417
+ 0% {
4418
+ opacity: 0;
4419
+ -webkit-transform: translateZ(100px);
4420
+ transform: translateZ(100px); }
4421
+ 100% {
4422
+ opacity: 1;
4423
+ -webkit-transform: translateZ(0);
4424
+ transform: translateZ(0); } }
4425
+
4426
+ @-webkit-keyframes pa-zoom-out {
4427
+ 0% {
4428
+ opacity: 1;
4429
+ -webkit-transform: translateZ(0);
4430
+ transform: translateZ(0); }
4431
+ 100% {
4432
+ opacity: 0;
4433
+ -webkit-transform: translateZ(-100px);
4434
+ transform: translateZ(-100px); } }
4435
+
4436
+ @keyframes pa-zoom-out {
4437
+ 0% {
4438
+ opacity: 1;
4439
+ -webkit-transform: translateZ(0);
4440
+ transform: translateZ(0); }
4441
+ 100% {
4442
+ opacity: 0;
4443
+ -webkit-transform: translateZ(-100px);
4444
+ transform: translateZ(-100px); } }
4445
+
4446
+ @-webkit-keyframes pa-rotate-in {
4447
+ 0% {
4448
+ opacity: 0;
4449
+ -webkit-transform: rotateX(180deg);
4450
+ transform: rotateX(180deg); }
4451
+ 35% {
4452
+ opacity: 0;
4453
+ -webkit-transform: rotateX(120deg);
4454
+ transform: rotateX(120deg); }
4455
+ 65% {
4456
+ opacity: 0; }
4457
+ 100% {
4458
+ opacity: 1;
4459
+ -webkit-transform: rotateX(360deg);
4460
+ transform: rotateX(360deg); } }
4461
+
4462
+ @keyframes pa-rotate-in {
4463
+ 0% {
4464
+ opacity: 0;
4465
+ -webkit-transform: rotateX(180deg);
4466
+ transform: rotateX(180deg); }
4467
+ 35% {
4468
+ opacity: 0;
4469
+ -webkit-transform: rotateX(120deg);
4470
+ transform: rotateX(120deg); }
4471
+ 65% {
4472
+ opacity: 0; }
4473
+ 100% {
4474
+ opacity: 1;
4475
+ -webkit-transform: rotateX(360deg);
4476
+ transform: rotateX(360deg); } }
4477
+
4478
+ @-webkit-keyframes pa-rotate-out {
4479
+ 0% {
4480
+ opacity: 1;
4481
+ -webkit-transform: rotateX(0deg);
4482
+ transform: rotateX(0deg); }
4483
+ 35% {
4484
+ opacity: 1;
4485
+ -webkit-transform: rotateX(-40deg);
4486
+ transform: rotateX(-40deg); }
4487
+ 65% {
4488
+ opacity: 0; }
4489
+ 100% {
4490
+ opacity: 0;
4491
+ -webkit-transform: rotateX(180deg);
4492
+ transform: rotateX(180deg); } }
4493
+
4494
+ @keyframes pa-rotate-out {
4495
+ 0% {
4496
+ opacity: 1;
4497
+ -webkit-transform: rotateX(0deg);
4498
+ transform: rotateX(0deg); }
4499
+ 35% {
4500
+ opacity: 1;
4501
+ -webkit-transform: rotateX(-40deg);
4502
+ transform: rotateX(-40deg); }
4503
+ 65% {
4504
+ opacity: 0; }
4505
+ 100% {
4506
+ opacity: 0;
4507
+ -webkit-transform: rotateX(180deg);
4508
+ transform: rotateX(180deg); } }
4509
+
4510
+ /**************** Premium Pricing Table ****************/
4511
+ /*******************************************************/
4512
+ .premium-pricing-table-container {
4513
+ position: relative;
4514
+ overflow: hidden;
4515
+ text-align: center;
4516
+ -webkit-transition: all 0.3s ease-in-out;
4517
+ transition: all 0.3s ease-in-out; }
4518
+
4519
+ .premium-pricing-icon-container {
4520
+ -js-display: flex;
4521
+ display: -webkit-box;
4522
+ display: -webkit-flex;
4523
+ display: -moz-box;
4524
+ display: -ms-flexbox;
4525
+ display: flex;
4526
+ -webkit-box-pack: center;
4527
+ -webkit-justify-content: center;
4528
+ -moz-box-pack: center;
4529
+ -ms-flex-pack: center;
4530
+ justify-content: center;
4531
+ line-height: 0; }
4532
+ .premium-pricing-icon-container .premium-pricing-icon {
4533
+ display: inline-block; }
4534
+ .premium-pricing-icon-container .premium-pricing-image {
4535
+ overflow: hidden; }
4536
+ .premium-pricing-icon-container .premium-pricing-image img {
4537
+ width: 25px;
4538
+ height: 25px;
4539
+ -o-object-fit: cover;
4540
+ object-fit: cover; }
4541
+
4542
+ .premium-badge-left {
4543
+ position: absolute;
4544
+ top: 0; }
4545
+
4546
+ .premium-badge-right {
4547
+ position: absolute;
4548
+ top: 0;
4549
+ right: 0; }
4550
+
4551
+ .premium-badge-left {
4552
+ left: 0; }
4553
+
4554
+ .premium-badge-triangle.premium-badge-left .corner {
4555
+ width: 0;
4556
+ height: 0;
4557
+ border-top: 150px solid;
4558
+ border-bottom: 150px solid transparent;
4559
+ border-right: 150px solid transparent; }
4560
+
4561
+ .premium-badge-triangle.premium-badge-right .corner {
4562
+ width: 0;
4563
+ height: 0;
4564
+ border-bottom: 150px solid transparent;
4565
+ border-right: 150px solid;
4566
+ border-left: 150px solid transparent; }
4567
+
4568
+ .premium-badge-triangle span {
4569
+ position: absolute;
4570
+ top: 35px;
4571
+ width: 100px;
4572
+ text-align: center;
4573
+ -webkit-transform: rotate(-45deg);
4574
+ -ms-transform: rotate(-45deg);
4575
+ transform: rotate(-45deg);
4576
+ display: block;
4577
+ text-transform: uppercase; }
4578
+
4579
+ .premium-badge-triangle.premium-badge-right span {
4580
+ -webkit-transform: rotate(45deg);
4581
+ -ms-transform: rotate(45deg);
4582
+ transform: rotate(45deg);
4583
+ right: 0; }
4584
+
4585
+ .premium-badge-circle {
4586
+ min-width: 4em;
4587
+ min-height: 4em;
4588
+ line-height: 4em;
4589
+ text-align: center;
4590
+ -webkit-border-radius: 100%;
4591
+ border-radius: 100%;
4592
+ position: absolute;
4593
+ z-index: 1; }
4594
+
4595
+ .premium-badge-stripe {
4596
+ position: absolute;
4597
+ -webkit-transform: rotate(90deg);
4598
+ -ms-transform: rotate(90deg);
4599
+ transform: rotate(90deg);
4600
+ width: 15em;
4601
+ overflow: hidden;
4602
+ height: 15em; }
4603
+ .premium-badge-stripe.premium-badge-left {
4604
+ -webkit-transform: rotate(0);
4605
+ -ms-transform: rotate(0);
4606
+ transform: rotate(0); }
4607
+ .premium-badge-stripe .corner {
4608
+ text-align: center;
4609
+ left: 0;
4610
+ width: 150%;
4611
+ -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4612
+ -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4613
+ transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4614
+ margin-top: 35px;
4615
+ font-size: 13px;
4616
+ line-height: 2;
4617
+ font-weight: 800;
4618
+ text-transform: uppercase; }
4619
+
4620
+ .premium-badge-flag .corner {
4621
+ text-align: center;
4622
+ -webkit-border-radius: 4px 4px 0 4px;
4623
+ border-radius: 4px 4px 0 4px;
4624
+ padding: 3px 15px;
4625
+ position: absolute;
4626
+ top: 10%;
4627
+ right: -8px; }
4628
+ .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
4629
+ content: "";
4630
+ display: block;
4631
+ position: absolute;
4632
+ width: 0;
4633
+ height: 0;
4634
+ top: 100%;
4635
+ right: 0;
4636
+ border-bottom: 8px solid transparent; }
4637
+
4638
+ .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
4639
+ overflow: visible !important; }
4640
+
4641
+ .premium-badge-flag .corner::after {
4642
+ border-left: 8px solid rgba(0, 0, 0, 0.2); }
4643
+
4644
+ .premium-pricing-price-currency {
4645
+ position: relative; }
4646
+
4647
+ .premium-pricing-button-container {
4648
+ display: block; }
4649
+
4650
+ .premium-pricing-list {
4651
+ -js-display: flex;
4652
+ display: -webkit-box;
4653
+ display: -webkit-flex;
4654
+ display: -moz-box;
4655
+ display: -ms-flexbox;
4656
+ display: flex;
4657
+ -webkit-box-orient: vertical;
4658
+ -webkit-box-direction: normal;
4659
+ -webkit-flex-direction: column;
4660
+ -moz-box-orient: vertical;
4661
+ -moz-box-direction: normal;
4662
+ -ms-flex-direction: column;
4663
+ flex-direction: column;
4664
+ list-style-type: none;
4665
+ margin: 0; }
4666
+ .premium-pricing-list .premium-pricing-list-item {
4667
+ -js-display: flex;
4668
+ display: -webkit-box;
4669
+ display: -webkit-flex;
4670
+ display: -moz-box;
4671
+ display: -ms-flexbox;
4672
+ display: flex;
4673
+ -webkit-box-align: center;
4674
+ -webkit-align-items: center;
4675
+ -moz-box-align: center;
4676
+ -ms-flex-align: center;
4677
+ align-items: center; }
4678
+ .premium-pricing-list .premium-pricing-list-item svg {
4679
+ width: 50px;
4680
+ height: 50px; }
4681
+ .premium-pricing-list .premium-pricing-list-item img {
4682
+ width: 30px;
4683
+ height: 30px;
4684
+ -o-object-fit: cover;
4685
+ object-fit: cover; }
4686
+ .premium-pricing-list .premium-pricing-list-span {
4687
+ position: relative; }
4688
+ .premium-pricing-list .list-item-tooltip {
4689
+ border-bottom: 1px dotted; }
4690
+ .premium-pricing-list .premium-pricing-list-tooltip {
4691
+ position: absolute;
4692
+ top: -webkit-calc(100% + 1px);
4693
+ top: calc(100% + 1px);
4694
+ left: 0;
4695
+ visibility: hidden;
4696
+ padding: 15px 20px;
4697
+ -webkit-border-radius: 5px;
4698
+ border-radius: 5px;
4699
+ min-width: 200px;
4700
+ overflow: hidden;
4701
+ text-align: left;
4702
+ font-size: 0.8rem;
4703
+ color: #fff;
4704
+ background-color: #aaa; }
4705
+
4706
+ .premium-pricing-features-left .premium-pricing-list-span {
4707
+ text-align: left; }
4708
+
4709
+ .premium-pricing-features-center .premium-pricing-list-span {
4710
+ text-align: center; }
4711
+
4712
+ .premium-pricing-features-right .premium-pricing-list-span {
4713
+ text-align: right; }
4714
+
4715
+ .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
4716
+ z-index: 99;
4717
+ visibility: visible;
4718
+ opacity: 1; }
4719
+
4720
+ .premium-pricing-slashed-price-value {
4721
+ display: inline-block;
4722
+ font-size: 20px;
4723
+ font-weight: 400;
4724
+ margin-right: 5px; }
4725
+
4726
+ .premium-pricing-price-value {
4727
+ font-size: 70px; }
4728
+
4729
+ .premium-pricing-description-container li {
4730
+ list-style-position: inside;
4731
+ text-indent: -40px; }
4732
+
4733
+ @-moz-document url-prefix() {
4734
+ .premium-pricing-description-container li {
4735
+ text-indent: 0px; } }
4736
+
4737
+ .premium-pricing-price-button {
4738
+ display: block;
4739
+ padding: 6px 12px;
4740
+ line-height: 1.42857143;
4741
+ text-align: center;
4742
+ color: #fff;
4743
+ background: #6ec1e4;
4744
+ margin-bottom: 0;
4745
+ -webkit-transition: all 0.3s ease-in-out;
4746
+ transition: all 0.3s ease-in-out; }
4747
+
4748
+ /**************** Premium Google Maps ******************/
4749
+ /*******************************************************/
4750
+ .premium-maps-info-container {
4751
+ margin-top: 10px;
4752
+ margin-bottom: 10px; }
4753
+
4754
+ .premium-maps-info-title,
4755
+ .premium-maps-info-desc {
4756
+ margin: 0;
4757
+ padding: 0; }
4758
+
4759
+ .premium-maps-container .gm-style-iw {
4760
+ text-align: center; }
4761
+
4762
+ .premium-maps-container .gm-style img {
4763
+ max-width: none !important; }
4764
+
4765
+ /**************** Premium Button ***********************/
4766
+ /*******************************************************/
4767
+ .premium-button {
4768
+ display: inline-block;
4769
+ position: relative;
4770
+ overflow: hidden;
4771
+ -webkit-backface-visibility: hidden;
4772
+ backface-visibility: hidden;
4773
+ -webkit-transform: translate3d(0, 0, 0);
4774
+ transform: translate3d(0, 0, 0);
4775
+ cursor: pointer;
4776
+ -webkit-transition: all 0.2s ease-in-out !important;
4777
+ transition: all 0.2s ease-in-out !important; }
4778
+
4779
+ .premium-button-sm {
4780
+ padding: 12px 24px;
4781
+ font-size: 14px;
4782
+ line-height: 1; }
4783
+
4784
+ .premium-button .premium-lottie-animation,
4785
+ .premium-image-button .premium-lottie-animation {
4786
+ -js-display: flex;
4787
+ display: -webkit-box;
4788
+ display: -webkit-flex;
4789
+ display: -moz-box;
4790
+ display: -ms-flexbox;
4791
+ display: flex; }
4792
+ .premium-button .premium-lottie-animation svg,
4793
+ .premium-image-button .premium-lottie-animation svg {
4794
+ width: 50px;
4795
+ height: 50px; }
4796
+
4797
+ .premium-button-md {
4798
+ padding: 14px 26px;
4799
+ font-size: 16px;
4800
+ line-height: 1.2; }
4801
+
4802
+ .premium-button-lg {
4803
+ padding: 16px 28px;
4804
+ font-size: 18px;
4805
+ line-height: 1.3333; }
4806
+
4807
+ .premium-button-block {
4808
+ font-size: 15px;
4809
+ line-height: 1;
4810
+ padding: 12px 24px;
4811
+ width: 100%;
4812
+ text-align: center; }
4813
+
4814
+ .premium-button-text {
4815
+ display: inline-block;
4816
+ width: 100%; }
4817
+
4818
+ .premium-button-style1,
4819
+ .premium-button-style2,
4820
+ .premium-button-style5,
4821
+ .premium-button-style7 {
4822
+ display: inline-block;
4823
+ vertical-align: middle;
4824
+ -webkit-transform: perspective(1px) translateZ(0);
4825
+ transform: perspective(1px) translateZ(0);
4826
+ -webkit-box-shadow: 0 0 1px transparent;
4827
+ box-shadow: 0 0 1px transparent;
4828
+ position: relative;
4829
+ -webkit-transition-property: color;
4830
+ transition-property: color;
4831
+ -webkit-transition-duration: 0.15s;
4832
+ transition-duration: 0.15s; }
4833
+
4834
+ .premium-button-style1:before,
4835
+ .premium-button-style2:before,
4836
+ .premium-button-style5:before {
4837
+ content: "";
4838
+ position: absolute;
4839
+ z-index: -1;
4840
+ top: 0;
4841
+ left: 0;
4842
+ right: 0;
4843
+ bottom: 0;
4844
+ -webkit-transform: scaleY(0);
4845
+ -ms-transform: scaleY(0);
4846
+ transform: scaleY(0);
4847
+ -webkit-transform-origin: 50% 0;
4848
+ -ms-transform-origin: 50% 0;
4849
+ transform-origin: 50% 0;
4850
+ -webkit-transition-property: -webkit-transform;
4851
+ transition-property: -webkit-transform;
4852
+ transition-property: transform;
4853
+ transition-property: transform, -webkit-transform;
4854
+ -webkit-transition-duration: 0.15s;
4855
+ transition-duration: 0.15s;
4856
+ -webkit-transition-timing-function: ease-out;
4857
+ transition-timing-function: ease-out; }
4858
+
4859
+ .premium-button-style5-radialin:before,
4860
+ .premium-button-style5-radialout:before {
4861
+ -webkit-transform-origin: 50%;
4862
+ -ms-transform-origin: 50%;
4863
+ transform-origin: 50%;
4864
+ -webkit-border-radius: 100%;
4865
+ border-radius: 100%;
4866
+ -webkit-transform: scale(0);
4867
+ -ms-transform: scale(0);
4868
+ transform: scale(0); }
4869
+
4870
+ .premium-button-style5-radialin:before {
4871
+ -webkit-transform: scale(2);
4872
+ -ms-transform: scale(2);
4873
+ transform: scale(2); }
4874
+
4875
+ .premium-button-style5-rectin:before {
4876
+ -webkit-transform-origin: 50%;
4877
+ -ms-transform-origin: 50%;
4878
+ transform-origin: 50%;
4879
+ -webkit-transform: scale(1);
4880
+ -ms-transform: scale(1);
4881
+ transform: scale(1); }
4882
+
4883
+ .premium-button-style5-rectout:before {
4884
+ -webkit-transform-origin: 50%;
4885
+ -ms-transform-origin: 50%;
4886
+ transform-origin: 50%;
4887
+ -webkit-transform: scale(0);
4888
+ -ms-transform: scale(0);
4889
+ transform: scale(0); }
4890
+
4891
+ .premium-button-style5-rectout:hover:before {
4892
+ -webkit-transform: scale(1);
4893
+ -ms-transform: scale(1);
4894
+ transform: scale(1); }
4895
+
4896
+ .premium-button-style5-rectin:hover:before {
4897
+ -webkit-transform: scale(0);
4898
+ -ms-transform: scale(0);
4899
+ transform: scale(0); }
4900
+
4901
+ .premium-button-style5-radialout:hover:before {
4902
+ -webkit-transform: scale(2);
4903
+ -ms-transform: scale(2);
4904
+ transform: scale(2); }
4905
+
4906
+ .premium-button-style5-radialin:hover:before {
4907
+ -webkit-transform: scale(0);
4908
+ -ms-transform: scale(0);
4909
+ transform: scale(0); }
4910
+
4911
+ .premium-button-style1-top:before {
4912
+ -webkit-transform-origin: 50% 100%;
4913
+ -ms-transform-origin: 50% 100%;
4914
+ transform-origin: 50% 100%; }
4915
+
4916
+ .premium-button-style1-right:before {
4917
+ -webkit-transform: scaleX(0);
4918
+ -ms-transform: scaleX(0);
4919
+ transform: scaleX(0);
4920
+ -webkit-transform-origin: 0% 50%;
4921
+ -ms-transform-origin: 0% 50%;
4922
+ transform-origin: 0% 50%; }
4923
+
4924
+ .premium-button-style1-left:before {
4925
+ -webkit-transform: scaleX(0);
4926
+ -ms-transform: scaleX(0);
4927
+ transform: scaleX(0);
4928
+ -webkit-transform-origin: 100% 50%;
4929
+ -ms-transform-origin: 100% 50%;
4930
+ transform-origin: 100% 50%; }
4931
+
4932
+ .premium-button-style2-shutouthor:before,
4933
+ .premium-button-style2-scshutoutver:before {
4934
+ -webkit-transform: scaleY(0);
4935
+ -ms-transform: scaleY(0);
4936
+ transform: scaleY(0);
4937
+ -webkit-transform-origin: 100% 50%;
4938
+ -ms-transform-origin: 100% 50%;
4939
+ transform-origin: 100% 50%; }
4940
+
4941
+ .premium-button-style2-shutoutver:before,
4942
+ .premium-button-style2-scshutouthor:before {
4943
+ -webkit-transform: scaleX(0);
4944
+ -ms-transform: scaleX(0);
4945
+ transform: scaleX(0);
4946
+ -webkit-transform-origin: 50% 50%;
4947
+ -ms-transform-origin: 50% 50%;
4948
+ transform-origin: 50% 50%; }
4949
+
4950
+ .premium-button-style2-shutinhor:before {
4951
+ -webkit-transform: scaleX(1);
4952
+ -ms-transform: scaleX(1);
4953
+ transform: scaleX(1);
4954
+ -webkit-transform-origin: 50%;
4955
+ -ms-transform-origin: 50%;
4956
+ transform-origin: 50%; }
4957
+
4958
+ .premium-button-style2-shutinver:before {
4959
+ -webkit-transform: scaleY(1);
4960
+ -ms-transform: scaleY(1);
4961
+ transform: scaleY(1);
4962
+ -webkit-transform-origin: 50%;
4963
+ -ms-transform-origin: 50%;
4964
+ transform-origin: 50%; }
4965
+
4966
+ .premium-button-style1-bottom:hover:before,
4967
+ .premium-button-style1-top:hover:before {
4968
+ -webkit-transform: scaleY(1);
4969
+ -ms-transform: scaleY(1);
4970
+ transform: scaleY(1); }
4971
+
4972
+ .premium-button-style1-left:hover:before,
4973
+ .premium-button-style1-right:hover:before,
4974
+ .premium-button-style2-shutouthor:hover:before,
4975
+ .premium-button-style2-shutoutver:hover:before {
4976
+ -webkit-transform: scaleX(1);
4977
+ -ms-transform: scaleX(1);
4978
+ transform: scaleX(1); }
4979
+
4980
+ .premium-button-style2-shutinhor:hover:before {
4981
+ -webkit-transform: scaleX(0);
4982
+ -ms-transform: scaleX(0);
4983
+ transform: scaleX(0); }
4984
+
4985
+ .premium-button-style2-shutinver:hover:before {
4986
+ -webkit-transform: scaleY(0);
4987
+ -ms-transform: scaleY(0);
4988
+ transform: scaleY(0); }
4989
+
4990
+ .premium-button-style2-scshutouthor:hover:before {
4991
+ -webkit-transform: scaleX(0.9);
4992
+ -ms-transform: scaleX(0.9);
4993
+ transform: scaleX(0.9); }
4994
+
4995
+ .premium-button-style2-scshutoutver:hover:before {
4996
+ -webkit-transform: scaleY(0.8);
4997
+ -ms-transform: scaleY(0.8);
4998
+ transform: scaleY(0.8); }
4999
+
5000
+ /*Diagonal*/
5001
+ .premium-button-style2-dshutinhor:before {
5002
+ top: 50%;
5003
+ left: 50%;
5004
+ width: 120%;
5005
+ height: 0%;
5006
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5007
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5008
+ transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5009
+ -webkit-transform-origin: 50%;
5010
+ -ms-transform-origin: 50%;
5011
+ transform-origin: 50%;
5012
+ -webkit-transition-property: all;
5013
+ transition-property: all; }
5014
+
5015
+ .premium-button-style2-dshutinver:before {
5016
+ top: 50%;
5017
+ left: 50%;
5018
+ width: 120%;
5019
+ height: 0%;
5020
+ -webkit-transform-origin: 50%;
5021
+ -ms-transform-origin: 50%;
5022
+ transform-origin: 50%;
5023
+ -webkit-transition-property: all;
5024
+ transition-property: all;
5025
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5026
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5027
+ transform: translateX(-50%) translateY(-50%) rotate(45deg); }
5028
+
5029
+ .premium-button-style2-dshutinhor:hover:before,
5030
+ .premium-button-style2-dshutinver:hover:before {
5031
+ height: 220%; }
5032
+
5033
+ .premium-button-style3-before i,
5034
+ .premium-button-style3-before svg {
5035
+ opacity: 0;
5036
+ -webkit-transform: translateX(-5px);
5037
+ -ms-transform: translateX(-5px);
5038
+ transform: translateX(-5px);
5039
+ -webkit-transition: all 0.5s ease-in-out;
5040
+ transition: all 0.5s ease-in-out; }
5041
+
5042
+ .premium-button-style3-after i,
5043
+ .premium-button-style3-after svg {
5044
+ opacity: 0;
5045
+ -webkit-transform: translateX(-5px);
5046
+ -ms-transform: translateX(-5px);
5047
+ transform: translateX(-5px);
5048
+ -webkit-transition: all 0.5s ease-in-out;
5049
+ transition: all 0.5s ease-in-out;
5050
+ -webkit-transform: translateX(5px);
5051
+ -ms-transform: translateX(5px);
5052
+ transform: translateX(5px); }
5053
+
5054
+ .premium-button-style3-after:hover i,
5055
+ .premium-button-style3-after:hover svg {
5056
+ opacity: 1; }
5057
+
5058
+ .premium-button-style3-before:hover i,
5059
+ .premium-button-style3-before:hover svg {
5060
+ opacity: 1; }
5061
+
5062
+ .premium-button-text-icon-wrapper {
5063
+ -js-display: flex;
5064
+ display: -webkit-box;
5065
+ display: -webkit-flex;
5066
+ display: -moz-box;
5067
+ display: -ms-flexbox;
5068
+ display: flex;
5069
+ -webkit-box-pack: center;
5070
+ -webkit-justify-content: center;
5071
+ -moz-box-pack: center;
5072
+ -ms-flex-pack: center;
5073
+ justify-content: center;
5074
+ -webkit-box-align: center;
5075
+ -webkit-align-items: center;
5076
+ -moz-box-align: center;
5077
+ -ms-flex-align: center;
5078
+ align-items: center;
5079
+ -webkit-transition: all 0.2s ease-in-out;
5080
+ transition: all 0.2s ease-in-out; }
5081
+ .premium-button-text-icon-wrapper span,
5082
+ .premium-button-text-icon-wrapper i,
5083
+ .premium-button-text-icon-wrapper svg {
5084
+ -webkit-transition: all 0.2s ease-in-out;
5085
+ transition: all 0.2s ease-in-out; }
5086
+
5087
+ .premium-button-style4-icon-wrapper {
5088
+ position: absolute;
5089
+ z-index: 2;
5090
+ width: 100%;
5091
+ text-align: center;
5092
+ -js-display: flex;
5093
+ display: -webkit-box;
5094
+ display: -webkit-flex;
5095
+ display: -moz-box;
5096
+ display: -ms-flexbox;
5097
+ display: flex;
5098
+ -webkit-box-align: center;
5099
+ -webkit-align-items: center;
5100
+ -moz-box-align: center;
5101
+ -ms-flex-align: center;
5102
+ align-items: center;
5103
+ -webkit-box-pack: center;
5104
+ -webkit-justify-content: center;
5105
+ -moz-box-pack: center;
5106
+ -ms-flex-pack: center;
5107
+ justify-content: center;
5108
+ height: 100%;
5109
+ opacity: 0;
5110
+ -webkit-transition: all 0.3s ease-in-out;
5111
+ transition: all 0.3s ease-in-out; }
5112
+ .premium-button-style4-icon-wrapper.top {
5113
+ bottom: -100%;
5114
+ left: 0; }
5115
+ .premium-button-style4-icon-wrapper.bottom {
5116
+ top: -100%;
5117
+ left: 0; }
5118
+ .premium-button-style4-icon-wrapper.left {
5119
+ top: 0;
5120
+ left: -100%; }
5121
+ .premium-button-style4-icon-wrapper.right {
5122
+ top: 0;
5123
+ right: -100%; }
5124
+
5125
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
5126
+ top: 0;
5127
+ opacity: 1; }
5128
+
5129
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
5130
+ bottom: 0;
5131
+ opacity: 1; }
5132
+
5133
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
5134
+ left: 0;
5135
+ opacity: 1; }
5136
+
5137
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
5138
+ right: 0;
5139
+ opacity: 1; }
5140
+
5141
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
5142
+ -webkit-transform: translateY(100%);
5143
+ -ms-transform: translateY(100%);
5144
+ transform: translateY(100%);
5145
+ opacity: 0; }
5146
+
5147
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
5148
+ -webkit-transform: translateY(-100%);
5149
+ -ms-transform: translateY(-100%);
5150
+ transform: translateY(-100%);
5151
+ opacity: 0; }
5152
+
5153
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
5154
+ -webkit-transform: translateX(100%);
5155
+ -ms-transform: translateX(100%);
5156
+ transform: translateX(100%);
5157
+ opacity: 0; }
5158
+
5159
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
5160
+ -webkit-transform: translateX(-100%);
5161
+ -ms-transform: translateX(-100%);
5162
+ transform: translateX(-100%);
5163
+ opacity: 0; }
5164
+
5165
+ .premium-button-style6:before {
5166
+ content: "";
5167
+ position: absolute;
5168
+ left: 50%;
5169
+ top: 50%;
5170
+ width: 100px;
5171
+ height: 100px;
5172
+ -webkit-border-radius: 100%;
5173
+ border-radius: 100%;
5174
+ -webkit-transform: translate(-50%, -50%) scale(0);
5175
+ -ms-transform: translate(-50%, -50%) scale(0);
5176
+ transform: translate(-50%, -50%) scale(0);
5177
+ -webkit-transition: all 0.3s ease-in-out;
5178
+ transition: all 0.3s ease-in-out; }
5179
+
5180
+ .premium-button-style6:hover:before {
5181
+ -webkit-transform: translate(-50%, -50%) scale(3);
5182
+ -ms-transform: translate(-50%, -50%) scale(3);
5183
+ transform: translate(-50%, -50%) scale(3); }
5184
+
5185
+ .premium-button-style6 .premium-button-text-icon-wrapper {
5186
+ position: relative;
5187
+ z-index: 1; }
5188
+
5189
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
5190
+ position: absolute;
5191
+ z-index: 0;
5192
+ top: 0;
5193
+ left: 0;
5194
+ width: 0px;
5195
+ height: 0px;
5196
+ -webkit-border-radius: 50%;
5197
+ border-radius: 50%;
5198
+ display: block;
5199
+ -webkit-transform: translate(-50%, -50%);
5200
+ -ms-transform: translate(-50%, -50%);
5201
+ transform: translate(-50%, -50%);
5202
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
5203
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
5204
+
5205
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
5206
+ width: 225%;
5207
+ height: 560px; }
5208
+
5209
+ .premium-mouse-detect-yes .premium-button-style6:before {
5210
+ width: 0;
5211
+ height: 0; }
5212
+
5213
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
5214
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5215
+ -webkit-transition: width 0.3s ease-out 0.15s;
5216
+ transition: width 0.3s ease-out 0.15s; }
5217
+
5218
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5219
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
5220
+ -webkit-transition: width 0.3s ease-out 0s;
5221
+ transition: width 0.3s ease-out 0s; }
5222
+
5223
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5224
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5225
+ -webkit-transition: height 0.3s ease-out 0.15s;
5226
+ transition: height 0.3s ease-out 0.15s; }
5227
+
5228
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
5229
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
5230
+ -webkit-transition: height 0.3s ease-out 0s;
5231
+ transition: height 0.3s ease-out 0s; }
5232
+
5233
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
5234
+ -webkit-transition-delay: 0s;
5235
+ transition-delay: 0s; }
5236
+
5237
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
5238
+ -webkit-transition-delay: 0.15s;
5239
+ transition-delay: 0.15s; }
5240
+
5241
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5242
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
5243
+ content: "";
5244
+ position: absolute;
5245
+ right: 0;
5246
+ top: 0;
5247
+ left: 0;
5248
+ height: 0;
5249
+ z-index: -1; }
5250
+
5251
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
5252
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5253
+ content: "";
5254
+ position: absolute;
5255
+ right: 0;
5256
+ bottom: 0;
5257
+ left: 0;
5258
+ height: 0;
5259
+ z-index: -1; }
5260
+
5261
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5262
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
5263
+ content: "";
5264
+ position: absolute;
5265
+ right: 0;
5266
+ top: 0;
5267
+ bottom: 0;
5268
+ width: 0;
5269
+ z-index: -1; }
5270
+
5271
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
5272
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5273
+ content: "";
5274
+ position: absolute;
5275
+ left: 0;
5276
+ top: 0;
5277
+ bottom: 0;
5278
+ width: 0;
5279
+ z-index: -1; }
5280
+
5281
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
5282
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
5283
+ height: 100%;
5284
+ top: 0; }
5285
+
5286
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
5287
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
5288
+ height: 100%;
5289
+ bottom: 0; }
5290
+
5291
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
5292
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
5293
+ width: 100%;
5294
+ left: 0; }
5295
+
5296
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
5297
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
5298
+ width: 100%;
5299
+ right: 0; }
5300
+
5301
+ /**************** Premium Contact Form7 **********/
5302
+ /*************************************************/
5303
+ .premium-contact-form-anim-yes .wpcf7-span::after {
5304
+ display: block;
5305
+ height: 2px;
5306
+ content: "";
5307
+ top: -2px;
5308
+ position: relative;
5309
+ width: 0px;
5310
+ -webkit-transition: all ease-in-out 0.3s;
5311
+ transition: all ease-in-out 0.3s; }
5312
+
5313
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
5314
+ width: 100%; }
5315
+
5316
+ /**************** Premium Image Button ***********/
5317
+ /*************************************************/
5318
+ .premium-image-button {
5319
+ display: inline-block;
5320
+ position: relative;
5321
+ overflow: hidden;
5322
+ background: #6ec1e4;
5323
+ cursor: pointer;
5324
+ -webkit-transition: all 0.2s ease-in-out !important;
5325
+ transition: all 0.2s ease-in-out !important; }
5326
+ .premium-image-button:hover {
5327
+ background-color: #54595f; }
5328
+
5329
+ /*Default background for slide styles*/
5330
+ .premium-image-button-style4-icon-wrapper,
5331
+ .premium-image-button-style1:before {
5332
+ background-color: #54595f; }
5333
+
5334
+ .premium-image-button.premium-image-button-sm {
5335
+ padding: 12px 24px;
5336
+ font-size: 14px;
5337
+ line-height: 1; }
5338
+
5339
+ .premium-image-button.premium-image-button-md {
5340
+ padding: 14px 26px;
5341
+ font-size: 16px;
5342
+ line-height: 1.2; }
5343
+
5344
+ .premium-image-button.premium-image-button-lg {
5345
+ padding: 16px 28px;
5346
+ font-size: 18px;
5347
+ line-height: 1.3333; }
5348
+
5349
+ .premium-image-button.premium-image-button-block {
5350
+ font-size: 15px;
5351
+ line-height: 1;
5352
+ padding: 12px 24px;
5353
+ width: 100%;
5354
+ text-align: center; }
5355
+
5356
+ .premium-image-button-text-icon-wrapper {
5357
+ -js-display: flex;
5358
+ display: -webkit-box;
5359
+ display: -webkit-flex;
5360
+ display: -moz-box;
5361
+ display: -ms-flexbox;
5362
+ display: flex;
5363
+ -webkit-box-pack: center;
5364
+ -webkit-justify-content: center;
5365
+ -moz-box-pack: center;
5366
+ -ms-flex-pack: center;
5367
+ justify-content: center;
5368
+ -webkit-box-align: center;
5369
+ -webkit-align-items: center;
5370
+ -moz-box-align: center;
5371
+ -ms-flex-align: center;
5372
+ align-items: center;
5373
+ position: relative;
5374
+ z-index: 3;
5375
+ -webkit-transition: all 0.2s ease-in-out;
5376
+ transition: all 0.2s ease-in-out; }
5377
+ .premium-image-button-text-icon-wrapper span,
5378
+ .premium-image-button-text-icon-wrapper i,
5379
+ .premium-image-button-text-icon-wrapper svg {
5380
+ -webkit-transition: all 0.2s ease-in-out;
5381
+ transition: all 0.2s ease-in-out; }
5382
+
5383
+ .premium-image-button-style1:before {
5384
+ position: absolute;
5385
+ content: "";
5386
+ -webkit-transition: all 0.2s ease-in-out;
5387
+ transition: all 0.2s ease-in-out; }
5388
+
5389
+ .premium-image-button-style1-bottom:before {
5390
+ width: 100%;
5391
+ height: 0;
5392
+ top: 0;
5393
+ left: 0; }
5394
+
5395
+ .premium-image-button-style1-top:before {
5396
+ width: 100%;
5397
+ height: 0;
5398
+ bottom: 0;
5399
+ left: 0; }
5400
+
5401
+ .premium-image-button-style1-right:before {
5402
+ width: 0;
5403
+ height: 100%;
5404
+ bottom: 0;
5405
+ left: 0; }
5406
+
5407
+ .premium-image-button-style1-left:before {
5408
+ width: 0;
5409
+ height: 100%;
5410
+ top: 0;
5411
+ right: 0; }
5412
+
5413
+ .premium-image-button-style1-bottom:hover:before,
5414
+ .premium-image-button-style1-top:hover:before {
5415
+ height: 100%; }
5416
+
5417
+ .premium-image-button-style1-right:hover:before,
5418
+ .premium-image-button-style1-left:hover:before {
5419
+ width: 100%; }
5420
+
5421
+ .premium-image-button-style3 {
5422
+ z-index: 10; }
5423
+ .premium-image-button-style3:before {
5424
+ position: absolute;
5425
+ top: 0px;
5426
+ left: 0px;
5427
+ width: 100%;
5428
+ height: 100%;
5429
+ content: "";
5430
+ z-index: 1;
5431
+ background: rgba(255, 255, 255, 0.2);
5432
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5433
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5434
+ -webkit-transition: all 0.8s ease-out;
5435
+ transition: all 0.8s ease-out; }
5436
+
5437
+ .premium-image-button-diagonal-right:before {
5438
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5439
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5440
+
5441
+ .premium-image-button-diagonal-right:hover:before {
5442
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5443
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5444
+
5445
+ .premium-image-button-diagonal-left:before {
5446
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5447
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5448
+
5449
+ .premium-image-button-diagonal-left:hover:before {
5450
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5451
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5452
+
5453
+ .premium-image-button-diagonal-bottom:before {
5454
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5455
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5456
+
5457
+ .premium-image-button-diagonal-bottom:hover:before {
5458
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5459
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5460
+
5461
+ .premium-image-button-diagonal-top:before {
5462
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5463
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5464
+
5465
+ .premium-image-button-diagonal-top:hover:before {
5466
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5467
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5468
+
5469
+ .premium-image-button-style4-icon-wrapper {
5470
+ position: absolute;
5471
+ z-index: 2;
5472
+ width: 100%;
5473
+ text-align: center;
5474
+ -js-display: flex;
5475
+ display: -webkit-box;
5476
+ display: -webkit-flex;
5477
+ display: -moz-box;
5478
+ display: -ms-flexbox;
5479
+ display: flex;
5480
+ -webkit-box-align: center;
5481
+ -webkit-align-items: center;
5482
+ -moz-box-align: center;
5483
+ -ms-flex-align: center;
5484
+ align-items: center;
5485
+ -webkit-box-pack: center;
5486
+ -webkit-justify-content: center;
5487
+ -moz-box-pack: center;
5488
+ -ms-flex-pack: center;
5489
+ justify-content: center;
5490
+ height: 100%;
5491
+ opacity: 0;
5492
+ -webkit-transition: all 0.3s ease-in-out;
5493
+ transition: all 0.3s ease-in-out; }
5494
+ .premium-image-button-style4-icon-wrapper.top {
5495
+ bottom: -100%;
5496
+ left: 0; }
5497
+ .premium-image-button-style4-icon-wrapper.bottom {
5498
+ top: -100%;
5499
+ left: 0; }
5500
+ .premium-image-button-style4-icon-wrapper.left {
5501
+ top: 0;
5502
+ left: -100%; }
5503
+ .premium-image-button-style4-icon-wrapper.right {
5504
+ top: 0;
5505
+ right: -100%; }
5506
+
5507
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
5508
+ top: 0;
5509
+ opacity: 1; }
5510
+
5511
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
5512
+ -webkit-transform: translateY(100%);
5513
+ -ms-transform: translateY(100%);
5514
+ transform: translateY(100%);
5515
+ opacity: 0; }
5516
+
5517
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
5518
+ bottom: 0;
5519
+ opacity: 1; }
5520
+
5521
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
5522
+ -webkit-transform: translateY(-100%);
5523
+ -ms-transform: translateY(-100%);
5524
+ transform: translateY(-100%);
5525
+ opacity: 0; }
5526
+
5527
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
5528
+ left: 0;
5529
+ opacity: 1; }
5530
+
5531
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
5532
+ -webkit-transform: translateX(100%);
5533
+ -ms-transform: translateX(100%);
5534
+ transform: translateX(100%);
5535
+ opacity: 0; }
5536
+
5537
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
5538
+ right: 0;
5539
+ opacity: 1; }
5540
+
5541
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
5542
+ -webkit-transform: translateX(-100%);
5543
+ -ms-transform: translateX(-100%);
5544
+ transform: translateX(-100%);
5545
+ opacity: 0; }
5546
+
5547
+ .premium-image-button-style5:before {
5548
+ position: absolute;
5549
+ content: "";
5550
+ top: 0;
5551
+ left: 0;
5552
+ width: 100%;
5553
+ height: 100%;
5554
+ opacity: 0;
5555
+ -webkit-transition: all 1s ease-in-out;
5556
+ transition: all 1s ease-in-out;
5557
+ background: rgba(255, 255, 255, 0.2);
5558
+ -webkit-animation-name: premium-overlap-effect-done;
5559
+ animation-name: premium-overlap-effect-done;
5560
+ -webkit-animation-duration: 1s;
5561
+ animation-duration: 1s; }
5562
+
5563
+ .premium-image-button-overlap-effect-vertical:before {
5564
+ -webkit-animation-name: premium-overlap-ver-effect-done;
5565
+ animation-name: premium-overlap-ver-effect-done; }
5566
+
5567
+ .premium-image-button-overlap-effect-horizontal:hover:before {
5568
+ -webkit-animation-name: premium-overlap-effect;
5569
+ animation-name: premium-overlap-effect; }
5570
+
5571
+ .premium-image-button-overlap-effect-vertical:hover:before {
5572
+ -webkit-animation-name: premium-overlap-ver-effect;
5573
+ animation-name: premium-overlap-ver-effect; }
5574
+
5575
+ @-webkit-keyframes premium-overlap-effect {
5576
+ 0% {
5577
+ opacity: 0;
5578
+ -webkit-transform: rotateY(0deg);
5579
+ transform: rotateY(0deg); }
5580
+ 50% {
5581
+ opacity: 1;
5582
+ -webkit-transform: rotateY(180deg);
5583
+ transform: rotateY(180deg); }
5584
+ 100% {
5585
+ opacity: 0;
5586
+ -webkit-transform: rotateY(360deg);
5587
+ transform: rotateY(360deg); } }
5588
+
5589
+ @keyframes premium-overlap-effect {
5590
+ 0% {
5591
+ opacity: 0;
5592
+ -webkit-transform: rotateY(0deg);
5593
+ transform: rotateY(0deg); }
5594
+ 50% {
5595
+ opacity: 1;
5596
+ -webkit-transform: rotateY(180deg);
5597
+ transform: rotateY(180deg); }
5598
+ 100% {
5599
+ opacity: 0;
5600
+ -webkit-transform: rotateY(360deg);
5601
+ transform: rotateY(360deg); } }
5602
+
5603
+ @-webkit-keyframes premium-overlap-effect-done {
5604
+ 0% {
5605
+ opacity: 0;
5606
+ -webkit-transform: rotateY(0deg);
5607
+ transform: rotateY(0deg); }
5608
+ 50% {
5609
+ opacity: 1;
5610
+ -webkit-transform: rotateY(180deg);
5611
+ transform: rotateY(180deg); }
5612
+ 100% {
5613
+ opacity: 0;
5614
+ -webkit-transform: rotateY(360deg);
5615
+ transform: rotateY(360deg); } }
5616
+
5617
+ @keyframes premium-overlap-effect-done {
5618
+ 0% {
5619
+ opacity: 0;
5620
+ -webkit-transform: rotateY(0deg);
5621
+ transform: rotateY(0deg); }
5622
+ 50% {
5623
+ opacity: 1;
5624
+ -webkit-transform: rotateY(180deg);
5625
+ transform: rotateY(180deg); }
5626
+ 100% {
5627
+ opacity: 0;
5628
+ -webkit-transform: rotateY(360deg);
5629
+ transform: rotateY(360deg); } }
5630
+
5631
+ @-webkit-keyframes premium-overlap-ver-effect {
5632
+ 0% {
5633
+ opacity: 0;
5634
+ -webkit-transform: rotateX(0deg);
5635
+ transform: rotateX(0deg); }
5636
+ 50% {
5637
+ opacity: 1;
5638
+ -webkit-transform: rotateX(180deg);
5639
+ transform: rotateX(180deg); }
5640
+ 100% {
5641
+ opacity: 0;
5642
+ -webkit-transform: rotateX(360deg);
5643
+ transform: rotateX(360deg); } }
5644
+
5645
+ @keyframes premium-overlap-ver-effect {
5646
+ 0% {
5647
+ opacity: 0;
5648
+ -webkit-transform: rotateX(0deg);
5649
+ transform: rotateX(0deg); }
5650
+ 50% {
5651
+ opacity: 1;
5652
+ -webkit-transform: rotateX(180deg);
5653
+ transform: rotateX(180deg); }
5654
+ 100% {
5655
+ opacity: 0;
5656
+ -webkit-transform: rotateX(360deg);
5657
+ transform: rotateX(360deg); } }
5658
+
5659
+ @-webkit-keyframes premium-overlap-ver-effect-done {
5660
+ 0% {
5661
+ opacity: 0;
5662
+ -webkit-transform: rotateX(0deg);
5663
+ transform: rotateX(0deg); }
5664
+ 50% {
5665
+ opacity: 1;
5666
+ -webkit-transform: rotateX(180deg);
5667
+ transform: rotateX(180deg); }
5668
+ 100% {
5669
+ opacity: 0;
5670
+ -webkit-transform: rotateX(360deg);
5671
+ transform: rotateX(360deg); } }
5672
+
5673
+ @keyframes premium-overlap-ver-effect-done {
5674
+ 0% {
5675
+ opacity: 0;
5676
+ -webkit-transform: rotateX(0deg);
5677
+ transform: rotateX(0deg); }
5678
+ 50% {
5679
+ opacity: 1;
5680
+ -webkit-transform: rotateX(180deg);
5681
+ transform: rotateX(180deg); }
5682
+ 100% {
5683
+ opacity: 0;
5684
+ -webkit-transform: rotateX(360deg);
5685
+ transform: rotateX(360deg); } }
5686
+
5687
+ /**************** Premium Grid /****************/
5688
+ /***********************************************/
5689
+ .premium-img-gallery-filter,
5690
+ .premium-blog-filter {
5691
+ -js-display: flex;
5692
+ display: -webkit-box;
5693
+ display: -webkit-flex;
5694
+ display: -moz-box;
5695
+ display: -ms-flexbox;
5696
+ display: flex;
5697
+ -webkit-box-align: center;
5698
+ -webkit-align-items: center;
5699
+ -moz-box-align: center;
5700
+ -ms-flex-align: center;
5701
+ align-items: center;
5702
+ -webkit-box-pack: center;
5703
+ -webkit-justify-content: center;
5704
+ -moz-box-pack: center;
5705
+ -ms-flex-pack: center;
5706
+ justify-content: center; }
5707
+
5708
+ .premium-img-gallery {
5709
+ clear: both;
5710
+ overflow: hidden; }
5711
+
5712
+ .premium-gallery-container .premium-gallery-item {
5713
+ padding: 10px;
5714
+ float: left; }
5715
+
5716
+ .premium-gallery-container .grid-sizer {
5717
+ width: 33.33%; }
5718
+
5719
+ .premium-gallery-container .pa-gallery-item {
5720
+ padding: 10px; }
5721
+
5722
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
5723
+ .premium-blog-filter .premium-blog-filters-container li a.category {
5724
+ outline: none;
5725
+ text-decoration: none;
5726
+ -webkit-border-radius: 75px;
5727
+ border-radius: 75px;
5728
+ margin: 15px 5px 20px;
5729
+ padding: 7px 20px;
5730
+ -webkit-transition: all 0.3s ease-in-out;
5731
+ transition: all 0.3s ease-in-out; }
5732
+
5733
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
5734
+ -webkit-transition: all 0.3s ease-in-out;
5735
+ transition: all 0.3s ease-in-out; }
5736
+
5737
+ .pa-gallery-img {
5738
+ position: relative; }
5739
+ .pa-gallery-img .pa-gallery-whole-link {
5740
+ position: absolute;
5741
+ top: 0;
5742
+ left: 0;
5743
+ width: 100%;
5744
+ height: 100%; }
5745
+ .pa-gallery-img.style2 .pa-gallery-whole-link {
5746
+ z-index: 99; }
5747
+
5748
+ .pa-gallery-img-container {
5749
+ overflow: hidden;
5750
+ -webkit-backface-visibility: hidden;
5751
+ backface-visibility: hidden;
5752
+ -webkit-transform: translate3d(0, 0, 0);
5753
+ transform: translate3d(0, 0, 0); }
5754
+ .pa-gallery-img-container img {
5755
+ display: block;
5756
+ width: 100%;
5757
+ -webkit-transition: all 0.3s ease-in-out;
5758
+ transition: all 0.3s ease-in-out; }
5759
+
5760
+ .premium-img-gallery.gray img {
5761
+ -webkit-filter: grayscale(100%);
5762
+ filter: grayscale(100%); }
5763
+
5764
+ .premium-img-gallery.zoomout img,
5765
+ .premium-img-gallery.scale img {
5766
+ -webkit-transform: scale(1.2);
5767
+ -ms-transform: scale(1.2);
5768
+ transform: scale(1.2); }
5769
+
5770
+ .premium-img-gallery.sepia img {
5771
+ -webkit-filter: sepia(30%);
5772
+ filter: sepia(30%); }
5773
+
5774
+ .premium-img-gallery.bright img {
5775
+ -webkit-filter: brightness(1);
5776
+ filter: brightness(1); }
5777
+
5778
+ .premium-img-gallery.trans img {
5779
+ -webkit-transform: translateX(-15px) scale(1.1);
5780
+ -ms-transform: translateX(-15px) scale(1.1);
5781
+ transform: translateX(-15px) scale(1.1); }
5782
+
5783
+ .pa-gallery-img .pa-gallery-magnific-image,
5784
+ .pa-gallery-img .pa-gallery-img-link {
5785
+ outline: none; }
5786
+
5787
+ .pa-gallery-img .pa-gallery-magnific-image span,
5788
+ .pa-gallery-img .pa-gallery-img-link span {
5789
+ line-height: 1;
5790
+ display: inline-block;
5791
+ opacity: 0;
5792
+ margin: 0 5px;
5793
+ padding: 15px;
5794
+ -webkit-border-radius: 50%;
5795
+ border-radius: 50%; }
5796
+
5797
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
5798
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
5799
+ margin: 0 5px 20px; }
5800
+
5801
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
5802
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
5803
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
5804
+
5805
+ .pa-gallery-img:hover .pa-gallery-img-link span {
5806
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
5807
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
5808
+
5809
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
5810
+ .pa-gallery-img:hover .pa-gallery-img-link span {
5811
+ opacity: 1; }
5812
+
5813
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
5814
+ opacity: 1; }
5815
+
5816
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
5817
+ .premium-blog-filter ul.premium-blog-filters-container {
5818
+ text-align: center;
5819
+ margin: 0;
5820
+ padding: 0; }
5821
+
5822
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
5823
+ .premium-blog-filter .premium-blog-filters-container li {
5824
+ list-style: none;
5825
+ -js-display: inline-flex;
5826
+ display: -webkit-inline-box;
5827
+ display: -webkit-inline-flex;
5828
+ display: -moz-inline-box;
5829
+ display: -ms-inline-flexbox;
5830
+ display: inline-flex; }
5831
+
5832
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
5833
+ -webkit-transform: scale(1.1);
5834
+ -ms-transform: scale(1.1);
5835
+ transform: scale(1.1); }
5836
+
5837
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
5838
+ -webkit-transform: scale(1);
5839
+ -ms-transform: scale(1);
5840
+ transform: scale(1); }
5841
+
5842
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
5843
+ -webkit-transform: scale(1.3) rotate(5deg);
5844
+ -ms-transform: scale(1.3) rotate(5deg);
5845
+ transform: scale(1.3) rotate(5deg); }
5846
+
5847
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
5848
+ -webkit-filter: grayscale(0%);
5849
+ filter: grayscale(0%); }
5850
+
5851
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
5852
+ -webkit-filter: blur(3px);
5853
+ filter: blur(3px); }
5854
+
5855
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
5856
+ -webkit-filter: sepia(0%);
5857
+ filter: sepia(0%); }
5858
+
5859
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
5860
+ -webkit-transform: translateX(0px) scale(1.1);
5861
+ -ms-transform: translateX(0px) scale(1.1);
5862
+ transform: translateX(0px) scale(1.1); }
5863
+
5864
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
5865
+ -webkit-filter: brightness(1.2);
5866
+ filter: brightness(1.2); }
5867
+
5868
+ .pa-gallery-img .premium-gallery-caption {
5869
+ padding: 10px; }
5870
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
5871
+ margin-bottom: 0; }
5872
+
5873
+ .pa-gallery-img.style1 {
5874
+ overflow: hidden; }
5875
+
5876
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
5877
+ position: absolute;
5878
+ top: 0;
5879
+ left: 0;
5880
+ width: 100%;
5881
+ height: 100%;
5882
+ -webkit-transition: all 0.3s ease-in-out;
5883
+ transition: all 0.3s ease-in-out; }
5884
+
5885
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
5886
+ position: absolute;
5887
+ top: 33.33%;
5888
+ width: 100%;
5889
+ text-align: center;
5890
+ -webkit-transform: translateY(-50%);
5891
+ -ms-transform: translateY(-50%);
5892
+ transform: translateY(-50%);
5893
+ z-index: 999; }
5894
+
5895
+ .pa-gallery-img.style1 .premium-gallery-caption {
5896
+ position: absolute;
5897
+ top: auto;
5898
+ right: 0;
5899
+ bottom: -1px;
5900
+ left: 0;
5901
+ width: 100%;
5902
+ -webkit-transition: all 500ms ease 0s;
5903
+ transition: all 500ms ease 0s;
5904
+ -webkit-transform: translate3d(0, 100%, 0);
5905
+ transform: translate3d(0, 100%, 0); }
5906
+
5907
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
5908
+ -webkit-transform: translate3d(0, 0, 0);
5909
+ transform: translate3d(0, 0, 0);
5910
+ bottom: -1px !important; }
5911
+
5912
+ .pa-gallery-img.default .premium-gallery-caption {
5913
+ position: absolute;
5914
+ top: auto;
5915
+ right: 0;
5916
+ left: 0;
5917
+ width: 100%;
5918
+ bottom: 0; }
5919
+
5920
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
5921
+ position: absolute;
5922
+ top: 0;
5923
+ left: 0;
5924
+ width: 100%;
5925
+ height: 100%;
5926
+ opacity: 0;
5927
+ -webkit-backface-visibility: hidden;
5928
+ backface-visibility: hidden;
5929
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
5930
+ transition: opacity 0.3s, -webkit-transform 0.3s;
5931
+ transition: transform 0.3s, opacity 0.3s;
5932
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
5933
+ z-index: 1;
5934
+ background-color: rgba(108, 191, 226, 0.68);
5935
+ -js-display: flex;
5936
+ display: -webkit-box;
5937
+ display: -webkit-flex;
5938
+ display: -moz-box;
5939
+ display: -ms-flexbox;
5940
+ display: flex;
5941
+ text-align: center;
5942
+ -webkit-box-align: center;
5943
+ -webkit-align-items: center;
5944
+ -moz-box-align: center;
5945
+ -ms-flex-align: center;
5946
+ align-items: center; }
5947
+
5948
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
5949
+ width: 100%; }
5950
+
5951
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
5952
+ opacity: 1;
5953
+ -webkit-transform: translate(15px, 15px);
5954
+ -ms-transform: translate(15px, 15px);
5955
+ transform: translate(15px, 15px); }
5956
+
5957
+ .premium-clearfix {
5958
+ clear: both; }
5959
+
5960
+ /**
5961
+ * Metro Layout
5962
+ */
5963
+ .premium-img-gallery-metro .premium-gallery-item {
5964
+ overflow: hidden; }
5965
+
5966
+ .premium-img-gallery-metro .pa-gallery-img {
5967
+ height: 100%; }
5968
+
5969
+ .premium-img-gallery-metro .pa-gallery-img-container {
5970
+ height: 100%; }
5971
+ .premium-img-gallery-metro .pa-gallery-img-container img {
5972
+ min-height: 100%;
5973
+ width: 100%;
5974
+ -o-object-fit: fill;
5975
+ object-fit: fill; }
5976
+
5977
+ .premium-img-gallery .premium-gallery-item-hidden {
5978
+ visibility: hidden;
5979
+ width: 0 !important;
5980
+ height: 0 !important;
5981
+ margin: 0 !important;
5982
+ padding: 0 !important; }
5983
+
5984
+ .premium-gallery-load-more {
5985
+ position: relative; }
5986
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
5987
+ -webkit-box-shadow: none;
5988
+ box-shadow: none;
5989
+ text-shadow: none;
5990
+ border: none;
5991
+ outline: none;
5992
+ -webkit-box-align: center;
5993
+ -webkit-align-items: center;
5994
+ -moz-box-align: center;
5995
+ -ms-flex-align: center;
5996
+ align-items: center;
5997
+ vertical-align: bottom;
5998
+ cursor: pointer;
5999
+ line-height: 1;
6000
+ font-style: normal;
6001
+ font-weight: normal;
6002
+ background-image: none;
6003
+ color: #fff;
6004
+ -webkit-transition: all 0.3s ease-in-out;
6005
+ transition: all 0.3s ease-in-out; }
6006
+
6007
+ .premium-gallery-load-more-btn {
6008
+ -js-display: inline-flex;
6009
+ display: -webkit-inline-box;
6010
+ display: -webkit-inline-flex;
6011
+ display: -moz-inline-box;
6012
+ display: -ms-inline-flexbox;
6013
+ display: inline-flex;
6014
+ -webkit-box-align: center;
6015
+ -webkit-align-items: center;
6016
+ -moz-box-align: center;
6017
+ -ms-flex-align: center;
6018
+ align-items: center; }
6019
+
6020
+ .premium-loader {
6021
+ border: 3px solid #f3f3f3;
6022
+ border-top-width: 3px;
6023
+ border-top-style: solid;
6024
+ border-top-color: #f3f3f3;
6025
+ -webkit-border-radius: 50%;
6026
+ border-radius: 50%;
6027
+ border-top: 3px solid;
6028
+ border-top-color: #bbb;
6029
+ width: 30px;
6030
+ height: 30px;
6031
+ -webkit-animation: spin 2s linear infinite;
6032
+ animation: spin 2s linear infinite;
6033
+ margin: 0 auto; }
6034
+
6035
+ .premium-gallery-load-more-btn div {
6036
+ margin-left: 3px; }
6037
+
6038
+ .premium-gallery-load-more-btn .premium-loader {
6039
+ display: inline-block;
6040
+ width: 20px;
6041
+ height: 20px; }
6042
+
6043
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
6044
+ display: inline-block; }
6045
+
6046
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
6047
+ .pa-gallery-img .pa-gallery-video-icon {
6048
+ cursor: pointer; }
6049
+
6050
+ .pa-gallery-img-container iframe {
6051
+ position: absolute;
6052
+ visibility: hidden;
6053
+ top: 0;
6054
+ left: 0;
6055
+ max-width: 100%;
6056
+ width: 100%;
6057
+ height: 100%;
6058
+ margin: 0;
6059
+ line-height: 1;
6060
+ border: none; }
6061
+
6062
+ .pa-gallery-img-container video {
6063
+ position: absolute;
6064
+ visibility: hidden;
6065
+ top: 0;
6066
+ left: 0;
6067
+ max-width: 100%;
6068
+ width: 100%;
6069
+ height: 100%;
6070
+ margin: 0;
6071
+ line-height: 1;
6072
+ border: none;
6073
+ -o-object-fit: contain;
6074
+ object-fit: contain; }
6075
+
6076
+ .pa-gallery-icons-inner-container svg,
6077
+ .pa-gallery-icons-caption-cell svg {
6078
+ width: 14px;
6079
+ height: 14px; }
6080
+
6081
+ .premium-gallery-gradient-layer {
6082
+ position: absolute;
6083
+ bottom: 40px;
6084
+ width: 100%;
6085
+ height: 20px;
6086
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
6087
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
6088
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
6089
+
6090
+ @-webkit-keyframes spin {
6091
+ 0% {
6092
+ -webkit-transform: rotate(0deg);
6093
+ transform: rotate(0deg); }
6094
+ 100% {
6095
+ -webkit-transform: rotate(360deg);
6096
+ transform: rotate(360deg); } }
6097
+
6098
+ @keyframes spin {
6099
+ 0% {
6100
+ -webkit-transform: rotate(0deg);
6101
+ transform: rotate(0deg); }
6102
+ 100% {
6103
+ -webkit-transform: rotate(360deg);
6104
+ transform: rotate(360deg); } }
6105
+
6106
+ /************ Premium Vertical Scroll ************/
6107
+ /*************************************************/
6108
+ .premium-vscroll-inner {
6109
+ position: relative;
6110
+ min-height: 100%; }
6111
+ .premium-vscroll-inner .premium-vscroll-dots {
6112
+ position: fixed;
6113
+ z-index: 100;
6114
+ opacity: 1;
6115
+ margin-top: -32px;
6116
+ -webkit-transition: all 0.3s ease-in-out;
6117
+ transition: all 0.3s ease-in-out; }
6118
+
6119
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
6120
+ opacity: 1;
6121
+ -webkit-transition: all 0.3s ease-in-out;
6122
+ transition: all 0.3s ease-in-out; }
6123
+
6124
+ .premium-vscroll-inner .premium-vscroll-dots,
6125
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
6126
+ opacity: 0;
6127
+ visibility: hidden; }
6128
+
6129
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
6130
+ opacity: 1;
6131
+ visibility: visible; }
6132
+
6133
+ .premium-vscroll-dots.middle {
6134
+ top: 50%; }
6135
+
6136
+ .premium-vscroll-dots.top {
6137
+ top: 40px; }
6138
+
6139
+ .premium-vscroll-dots.bottom {
6140
+ bottom: 30px; }
6141
+
6142
+ .premium-vscroll-dots.right {
6143
+ right: 17px; }
6144
+
6145
+ .premium-vscroll-dots.left {
6146
+ left: 17px; }
6147
+
6148
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
6149
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
6150
+ margin: 0 !important;
6151
+ padding: 0; }
6152
+
6153
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
6154
+ width: 14px;
6155
+ height: 13px;
6156
+ margin: 7px;
6157
+ position: relative;
6158
+ -js-display: flex;
6159
+ display: -webkit-box;
6160
+ display: -webkit-flex;
6161
+ display: -moz-box;
6162
+ display: -ms-flexbox;
6163
+ display: flex;
6164
+ -webkit-box-pack: center;
6165
+ -webkit-justify-content: center;
6166
+ -moz-box-pack: center;
6167
+ -ms-flex-pack: center;
6168
+ justify-content: center;
6169
+ -webkit-box-align: center;
6170
+ -webkit-align-items: center;
6171
+ -moz-box-align: center;
6172
+ -ms-flex-align: center;
6173
+ align-items: center;
6174
+ overflow: visible; }
6175
+
6176
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
6177
+ display: block;
6178
+ position: relative;
6179
+ z-index: 1;
6180
+ width: 100%;
6181
+ height: 100%;
6182
+ cursor: pointer;
6183
+ text-decoration: none; }
6184
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
6185
+ top: 2px;
6186
+ left: 2.5px;
6187
+ width: 8px;
6188
+ height: 8px;
6189
+ border: 1px solid #000;
6190
+ -webkit-border-radius: 50%;
6191
+ border-radius: 50%;
6192
+ position: absolute;
6193
+ z-index: 1;
6194
+ -webkit-transition: all 0.3s ease-in-out;
6195
+ transition: all 0.3s ease-in-out; }
6196
+
6197
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
6198
+ -webkit-transform: scale(1.6);
6199
+ -ms-transform: scale(1.6);
6200
+ transform: scale(1.6); }
6201
+
6202
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
6203
+ position: absolute;
6204
+ color: #fff;
6205
+ font-size: 14px;
6206
+ font-family: arial, helvetica, sans-serif;
6207
+ white-space: nowrap;
6208
+ max-width: 220px;
6209
+ padding-left: 0.4em;
6210
+ padding-right: 0.4em; }
6211
+
6212
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
6213
+ right: 27px; }
6214
+
6215
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
6216
+ width: 4px;
6217
+ height: 30px; }
6218
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
6219
+ width: 100%;
6220
+ height: 100%;
6221
+ -webkit-border-radius: 0;
6222
+ border-radius: 0; }
6223
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
6224
+ -webkit-transform: scale(1);
6225
+ -ms-transform: scale(1);
6226
+ transform: scale(1); }
6227
+
6228
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
6229
+ position: absolute;
6230
+ top: 50%;
6231
+ content: "";
6232
+ left: -webkit-calc(100% - 1px);
6233
+ left: calc(100% - 1px);
6234
+ width: 10px;
6235
+ height: 0;
6236
+ border-top: 6px solid transparent;
6237
+ border-bottom: 6px solid transparent;
6238
+ border-left: 6px solid;
6239
+ -webkit-transform: translateY(-50%);
6240
+ -ms-transform: translateY(-50%);
6241
+ transform: translateY(-50%); }
6242
+
6243
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
6244
+ left: 27px; }
6245
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
6246
+ position: absolute;
6247
+ top: 50%;
6248
+ content: "";
6249
+ right: -webkit-calc(100% - 1px);
6250
+ right: calc(100% - 1px);
6251
+ width: 10px;
6252
+ height: 0;
6253
+ border-top: 6px solid transparent;
6254
+ border-bottom: 6px solid transparent;
6255
+ border-right: 6px solid;
6256
+ -webkit-transform: translateY(-50%);
6257
+ -ms-transform: translateY(-50%);
6258
+ transform: translateY(-50%); }
6259
+
6260
+ /* * Lines */
6261
+ @media (max-width: 768px) {
6262
+ .premium-vscroll-dots.right {
6263
+ right: 7px; }
6264
+ .premium-vscroll-dots.left {
6265
+ left: 7px; } }
6266
+
6267
+ .premium-vscroll-nav-menu {
6268
+ position: fixed;
6269
+ top: 20px;
6270
+ height: 40px;
6271
+ z-index: 100;
6272
+ padding: 0;
6273
+ margin: 0; }
6274
+ .premium-vscroll-nav-menu.left {
6275
+ left: 0; }
6276
+ .premium-vscroll-nav-menu.right {
6277
+ right: 0; }
6278
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
6279
+ display: inline-block;
6280
+ margin: 10px;
6281
+ color: #000;
6282
+ background: #fff;
6283
+ background: rgba(255, 255, 255, 0.3); }
6284
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
6285
+ padding: 9px 18px;
6286
+ display: block;
6287
+ cursor: pointer;
6288
+ color: #000; }
6289
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
6290
+ color: #000; }
6291
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
6292
+ outline: none; }
6293
+
6294
+ .multiscroll-nav li a:focus {
6295
+ outline: none; }
6296
+
6297
+ .premium-vscroll-temp .slimScrollBar {
6298
+ visibility: hidden; }
6299
+
6300
+ /************ Premium Image Scroll ************/
6301
+ /**********************************************/
6302
+ .premium-image-scroll-section,
6303
+ .premium-image-scroll-container {
6304
+ -webkit-transition: all 0.3s ease-in-out;
6305
+ transition: all 0.3s ease-in-out; }
6306
+
6307
+ .premium-image-scroll-section {
6308
+ position: relative;
6309
+ overflow: hidden;
6310
+ width: 100%;
6311
+ -webkit-mask-image: -webkit-radial-gradient(white, black); }
6312
+
6313
+ .premium-image-scroll-container {
6314
+ width: 100%; }
6315
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
6316
+ -webkit-mask-repeat: no-repeat;
6317
+ mask-repeat: no-repeat;
6318
+ -webkit-mask-position: center;
6319
+ mask-position: center; }
6320
+
6321
+ .premium-container-scroll {
6322
+ overflow: auto; }
6323
+
6324
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
6325
+ position: relative;
6326
+ width: 100%;
6327
+ height: 100%; }
6328
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
6329
+ max-width: none;
6330
+ height: 100%; }
6331
+
6332
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
6333
+ width: 100%;
6334
+ max-width: 100%;
6335
+ height: auto; }
6336
+
6337
+ .premium-image-scroll-ver {
6338
+ position: relative; }
6339
+
6340
+ .premium-image-scroll-container .premium-image-scroll-overlay {
6341
+ background: rgba(2, 2, 2, 0.3); }
6342
+
6343
+ .premium-image-scroll-container .premium-image-scroll-link,
6344
+ .premium-image-scroll-container .premium-image-scroll-overlay {
6345
+ position: absolute;
6346
+ top: 0;
6347
+ bottom: 0;
6348
+ left: 0;
6349
+ right: 0;
6350
+ z-index: 4; }
6351
+
6352
+ .premium-image-scroll-content {
6353
+ display: inline-block;
6354
+ position: absolute;
6355
+ height: auto;
6356
+ top: 50%;
6357
+ left: 50%;
6358
+ text-align: center;
6359
+ z-index: 5;
6360
+ -webkit-transform: translate(-50%, -50%);
6361
+ -ms-transform: translate(-50%, -50%);
6362
+ transform: translate(-50%, -50%); }
6363
+
6364
+ .premium-container-scroll-instant .premium-image-scroll-image {
6365
+ -webkit-transition: all 0s ease-in-out !important;
6366
+ transition: all 0s ease-in-out !important; }
6367
+
6368
+ .premium-image-scroll-container img {
6369
+ -webkit-transition: -webkit-transform 3s ease-in-out;
6370
+ transition: -webkit-transform 3s ease-in-out;
6371
+ transition: transform 3s ease-in-out;
6372
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
6373
+
6374
+ .premium-image-scroll-container .premium-image-scroll-overlay,
6375
+ .premium-image-scroll-container .premium-image-scroll-content {
6376
+ -webkit-transition: all 0.3s ease-in-out;
6377
+ transition: all 0.3s ease-in-out;
6378
+ opacity: 1; }
6379
+
6380
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
6381
+ opacity: 0; }
6382
+
6383
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
6384
+ opacity: 0;
6385
+ visibility: hidden; }
6386
+
6387
+ .premium-image-scroll-content .premium-image-scroll-icon {
6388
+ display: inline-block;
6389
+ font-family: "pa-elements" !important;
6390
+ speak: none;
6391
+ font-style: normal;
6392
+ font-weight: normal;
6393
+ font-variant: normal;
6394
+ text-transform: none;
6395
+ line-height: 1;
6396
+ -webkit-font-smoothing: antialiased;
6397
+ -moz-osx-font-smoothing: grayscale;
6398
+ -webkit-animation-duration: 0.5s;
6399
+ animation-duration: 0.5s;
6400
+ -webkit-animation-iteration-count: infinite;
6401
+ animation-iteration-count: infinite;
6402
+ -webkit-animation-direction: alternate;
6403
+ animation-direction: alternate;
6404
+ -webkit-animation-timing-function: ease-in-out;
6405
+ animation-timing-function: ease-in-out; }
6406
+
6407
+ .pa-horizontal-mouse-scroll:before {
6408
+ content: "\e917"; }
6409
+
6410
+ .pa-vertical-mouse-scroll:before {
6411
+ content: "\e918"; }
6412
+
6413
+ .pa-horizontal-mouse-scroll {
6414
+ -webkit-animation-name: pa-scroll-horizontal;
6415
+ animation-name: pa-scroll-horizontal; }
6416
+
6417
+ .pa-vertical-mouse-scroll {
6418
+ -webkit-animation-name: pa-scroll-vertical;
6419
+ animation-name: pa-scroll-vertical; }
6420
+
6421
+ @-webkit-keyframes pa-scroll-vertical {
6422
+ 0% {
6423
+ -webkit-transform: translateY(0px);
6424
+ transform: translateY(0px); }
6425
+ 100% {
6426
+ -webkit-transform: translateY(5px);
6427
+ transform: translateY(5px); } }
6428
+
6429
+ @keyframes pa-scroll-vertical {
6430
+ 0% {
6431
+ -webkit-transform: translateY(0px);
6432
+ transform: translateY(0px); }
6433
+ 100% {
6434
+ -webkit-transform: translateY(5px);
6435
+ transform: translateY(5px); } }
6436
+
6437
+ @-webkit-keyframes pa-scroll-horizontal {
6438
+ 0% {
6439
+ -webkit-transform: translateX(0px);
6440
+ transform: translateX(0px); }
6441
+ 100% {
6442
+ -webkit-transform: translateX(5px);
6443
+ transform: translateX(5px); } }
6444
+
6445
+ @keyframes pa-scroll-horizontal {
6446
+ 0% {
6447
+ -webkit-transform: translateX(0px);
6448
+ transform: translateX(0px); }
6449
+ 100% {
6450
+ -webkit-transform: translateX(5px);
6451
+ transform: translateX(5px); } }
6452
+
6453
+ /********* Premium Lottie Animations *********/
6454
+ /*********************************************/
6455
+ .premium-lottie-wrap .premium-lottie-animation {
6456
+ position: relative;
6457
+ -js-display: inline-flex;
6458
+ display: -webkit-inline-box;
6459
+ display: -webkit-inline-flex;
6460
+ display: -moz-inline-box;
6461
+ display: -ms-inline-flexbox;
6462
+ display: inline-flex;
6463
+ -webkit-transition: all 0.3s ease-in-out;
6464
+ transition: all 0.3s ease-in-out; }
6465
+ .premium-lottie-wrap .premium-lottie-animation a {
6466
+ position: absolute;
6467
+ left: 0;
6468
+ top: 0;
6469
+ width: 100%;
6470
+ height: 100%; }
6471
+
6472
+ /**************** Premium Bullet List ****************/
6473
+ /*****************************************************/
6474
+ .premium-icon-list-box {
6475
+ -js-display: flex;
6476
+ display: -webkit-box;
6477
+ display: -webkit-flex;
6478
+ display: -moz-box;
6479
+ display: -ms-flexbox;
6480
+ display: flex;
6481
+ -webkit-flex-wrap: wrap;
6482
+ -ms-flex-wrap: wrap;
6483
+ flex-wrap: wrap;
6484
+ -webkit-box-orient: vertical;
6485
+ -webkit-box-direction: normal;
6486
+ -webkit-flex-direction: column;
6487
+ -moz-box-orient: vertical;
6488
+ -moz-box-direction: normal;
6489
+ -ms-flex-direction: column;
6490
+ flex-direction: column; }
6491
+ .premium-icon-list-box .premium-icon-list-content-grow-lc {
6492
+ -webkit-transform-origin: left center;
6493
+ -ms-transform-origin: left center;
6494
+ transform-origin: left center; }
6495
+ .premium-icon-list-box .premium-icon-list-content-grow-rc {
6496
+ -webkit-transform-origin: right center;
6497
+ -ms-transform-origin: right center;
6498
+ transform-origin: right center; }
6499
+ .premium-icon-list-box .premium-icon-list-content-grow-cc {
6500
+ -webkit-transform-origin: center center;
6501
+ -ms-transform-origin: center center;
6502
+ transform-origin: center center; }
6503
+
6504
+ .premium-icon-list-content {
6505
+ -js-display: flex;
6506
+ display: -webkit-box;
6507
+ display: -webkit-flex;
6508
+ display: -moz-box;
6509
+ display: -ms-flexbox;
6510
+ display: flex;
6511
+ -webkit-transition: all 0.3s ease-in-out;
6512
+ transition: all 0.3s ease-in-out;
6513
+ width: auto;
6514
+ position: relative; }
6515
+ .premium-icon-list-content .premium-icon-list-text span,
6516
+ .premium-icon-list-content .premium-icon-list-wrapper {
6517
+ display: inline-block;
6518
+ -webkit-align-self: center;
6519
+ -ms-flex-item-align: center;
6520
+ align-self: center;
6521
+ -webkit-transition: all 0.3s ease-in-out;
6522
+ transition: all 0.3s ease-in-out; }
6523
+ .premium-icon-list-content .premium-icon-list-text span {
6524
+ margin: 0 5px; }
6525
+ .premium-icon-list-content .premium-icon-list-icon-text p {
6526
+ font-size: 18px;
6527
+ background-color: #eee;
6528
+ padding: 1px 5px;
6529
+ -webkit-border-radius: 2px;
6530
+ border-radius: 2px; }
6531
+ .premium-icon-list-content .premium-icon-list-text span,
6532
+ .premium-icon-list-content .premium-icon-list-icon-text p,
6533
+ .premium-icon-list-content .premium-icon-list-wrapper img,
6534
+ .premium-icon-list-content .premium-icon-list-wrapper svg,
6535
+ .premium-icon-list-content .premium-icon-list-wrapper i {
6536
+ -webkit-transition: all 0.3s ease-in-out;
6537
+ transition: all 0.3s ease-in-out; }
6538
+ .premium-icon-list-content .premium-icon-list-wrapper {
6539
+ position: relative;
6540
+ line-height: 0; }
6541
+ .premium-icon-list-content .premium-icon-list-wrapper img,
6542
+ .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
6543
+ width: 30px !important;
6544
+ height: 30px !important;
6545
+ position: relative;
6546
+ z-index: 500; }
6547
+ .premium-icon-list-content .premium-icon-list-wrapper i,
6548
+ .premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
6549
+ position: relative;
6550
+ z-index: 500; }
6551
+ .premium-icon-list-content .premium-icon-list-link {
6552
+ position: absolute;
6553
+ top: 0;
6554
+ left: 0;
6555
+ width: 100%;
6556
+ height: 100%;
6557
+ z-index: 1000; }
6558
+
6559
+ .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
6560
+ width: 100%;
6561
+ height: 100%;
6562
+ position: absolute;
6563
+ top: 0.5em;
6564
+ z-index: 100;
6565
+ -js-display: flex;
6566
+ display: -webkit-box;
6567
+ display: -webkit-flex;
6568
+ display: -moz-box;
6569
+ display: -ms-flexbox;
6570
+ display: flex;
6571
+ -webkit-box-pack: center;
6572
+ -webkit-justify-content: center;
6573
+ -moz-box-pack: center;
6574
+ -ms-flex-pack: center;
6575
+ justify-content: center; }
6576
+ .premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
6577
+ content: "";
6578
+ border-right-width: 1px;
6579
+ border-right-style: solid;
6580
+ border-color: #333333;
6581
+ display: block;
6582
+ height: 100%; }
6583
+
6584
+ li.premium-icon-list-content.premium-icon-list-content-inline {
6585
+ -webkit-align-self: center;
6586
+ -ms-flex-item-align: center;
6587
+ align-self: center;
6588
+ z-index: 2; }
6589
+
6590
+ li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
6591
+ margin: 0 3px; }
6592
+
6593
+ li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
6594
+ margin: 0 3px 0 0; }
6595
+
6596
+ .premium-icon-list-divider:not(:last-child) {
6597
+ width: 100%;
6598
+ -webkit-box-flex: 0;
6599
+ -webkit-flex: 0 0 100%;
6600
+ -moz-box-flex: 0;
6601
+ -ms-flex: 0 0 100%;
6602
+ flex: 0 0 100%;
6603
+ overflow: hidden; }
6604
+
6605
+ .premium-icon-list-divider:not(:last-child):after {
6606
+ content: "";
6607
+ display: block;
6608
+ border-top-style: solid;
6609
+ border-top-width: 1px; }
6610
+
6611
+ .premium-icon-list-divider-inline:not(:last-child) {
6612
+ float: right;
6613
+ display: inline-block;
6614
+ position: relative;
6615
+ height: 100%;
6616
+ overflow: hidden;
6617
+ -webkit-align-self: center;
6618
+ -ms-flex-item-align: center;
6619
+ align-self: center;
6620
+ margin: 0 3px; }
6621
+
6622
+ .premium-icon-list-divider-inline:not(:last-child):after {
6623
+ content: "";
6624
+ display: block;
6625
+ border-left-width: 1px;
6626
+ height: 33px;
6627
+ border-left-style: solid; }
6628
+
6629
+ .premium-icon-list-icon-text {
6630
+ line-height: 1.5; }
6631
+
6632
+ .premium-icon-list-icon-text p,
6633
+ ul.premium-icon-list-box,
6634
+ li.premium-icon-list-content {
6635
+ margin: 0; }
6636
+
6637
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
6638
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
6639
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
6640
+ color: transparent !important;
6641
+ text-shadow: 0 0 3px #aaa; }
6642
+
6643
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
6644
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
6645
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
6646
+ .premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
6647
+ -webkit-filter: blur(3px);
6648
+ filter: blur(3px); }
6649
+
6650
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
6651
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
6652
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
6653
+ color: #aaa !important;
6654
+ text-shadow: 0 0px 0 transparent; }
6655
+
6656
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
6657
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
6658
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
6659
+ .premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
6660
+ -webkit-filter: none;
6661
+ filter: none; }
6662
+
6663
+ .premium-icon-list-content .premium-icon-list-badge {
6664
+ font-size: 11px;
6665
+ top: auto;
6666
+ min-width: -webkit-max-content;
6667
+ min-width: -moz-max-content;
6668
+ min-width: max-content;
6669
+ height: -webkit-fit-content;
6670
+ height: -moz-fit-content;
6671
+ height: fit-content; }
6672
+
6673
+ .premium-icon-list-content .premium-icon-list-icon-text p {
6674
+ font-size: 13px; }
6675
+
6676
+ .premium-icon-list-gradient-effect[data-text] {
6677
+ display: inline-block;
6678
+ position: relative;
6679
+ text-decoration: none; }
6680
+
6681
+ .premium-icon-list-gradient-effect[data-text]::before {
6682
+ content: attr(data-text);
6683
+ position: absolute;
6684
+ z-index: 1;
6685
+ overflow: hidden;
6686
+ -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6687
+ clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6688
+ -webkit-background-clip: text;
6689
+ background-clip: text;
6690
+ -webkit-text-fill-color: transparent;
6691
+ -webkit-transition: all 0.4s ease;
6692
+ transition: all 0.4s ease; }
6693
+
6694
+ .premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
6695
+ .premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
6696
+ -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
6697
+ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
6698
+
6699
+ ul[data-list-animation*="animated-"] .premium-icon-list-divider,
6700
+ ul[data-list-animation*="animated-"] .premium-icon-list-content,
6701
+ ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
6702
+ opacity: 0; }
6703
+
6704
+ .premium-icon-list-content-grow-effect:hover {
6705
+ -webkit-transform: scale(1.07);
6706
+ -ms-transform: scale(1.07);
6707
+ transform: scale(1.07); }
assets/frontend/js/TweenMax.js CHANGED
@@ -1,10 +1,2417 @@
1
- /*!
2
- * GSAP 3.6.1
3
- * https://greensock.com
4
- *
5
- * @license Copyright 2021, GreenSock. All rights reserved.
6
- * Subject to the terms at https://greensock.com/standard-license or for Club GreenSock members, the agreement issued with that membership.
7
- * @author: Jack Doyle, jack@greensock.com
8
- */
9
-
10
- !function (t, e) { "object" == typeof exports && "undefined" != typeof module ? e(exports) : "function" == typeof define && define.amd ? define(["exports"], e) : e((t = t || self).window = t.window || {}) }(this, function (e) { "use strict"; function _inheritsLoose(t, e) { t.prototype = Object.create(e.prototype), (t.prototype.constructor = t).__proto__ = e } function _assertThisInitialized(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t } function o(t) { return "string" == typeof t } function p(t) { return "function" == typeof t } function q(t) { return "number" == typeof t } function r(t) { return void 0 === t } function s(t) { return "object" == typeof t } function t(t) { return !1 !== t } function u() { return "undefined" != typeof window } function v(t) { return p(t) || o(t) } function M(t) { return (h = mt(t, ot)) && ae } function N(t, e) { return console.warn("Invalid property", t, "set to", e, "Missing plugin? gsap.registerPlugin()") } function O(t, e) { return !e && console.warn(t) } function P(t, e) { return t && (ot[t] = e) && h && (h[t] = e) || ot } function Q() { return 0 } function $(t) { var e, r, i = t[0]; if (s(i) || p(i) || (t = [t]), !(e = (i._gsap || {}).harness)) { for (r = pt.length; r-- && !pt[r].targetTest(i);); e = pt[r] } for (r = t.length; r--;)t[r] && (t[r]._gsap || (t[r]._gsap = new Rt(t[r], e))) || t.splice(r, 1); return t } function _(t) { return t._gsap || $(Tt(t))[0]._gsap } function aa(t, e, i) { return (i = t[e]) && p(i) ? t[e]() : r(i) && t.getAttribute && t.getAttribute(e) || i } function ba(t, e) { return (t = t.split(",")).forEach(e) || t } function ca(t) { return Math.round(1e5 * t) / 1e5 || 0 } function da(t, e) { for (var r = e.length, i = 0; t.indexOf(e[i]) < 0 && ++i < r;); return i < r } function ea(e, r, i) { var n, a = q(e[1]), s = (a ? 2 : 1) + (r < 2 ? 0 : 1), o = e[s]; if (a && (o.duration = e[1]), o.parent = i, r) { for (n = o; i && !("immediateRender" in n);)n = i.vars.defaults || {}, i = t(i.vars.inherit) && i.parent; o.immediateRender = t(n.immediateRender), r < 2 ? o.runBackwards = 1 : o.startAt = e[s - 1] } return o } function fa() { var t, e, r = ht.length, i = ht.slice(0); for (lt = {}, t = ht.length = 0; t < r; t++)(e = i[t]) && e._lazy && (e.render(e._lazy[0], e._lazy[1], !0)._lazy = 0) } function ga(t, e, r, i) { ht.length && fa(), t.render(e, r, i), ht.length && fa() } function ha(t) { var e = parseFloat(t); return (e || 0 === e) && (t + "").match(at).length < 2 ? e : o(t) ? t.trim() : t } function ia(t) { return t } function ja(t, e) { for (var r in e) r in t || (t[r] = e[r]); return t } function ka(t, e) { for (var r in e) r in t || "duration" === r || "ease" === r || (t[r] = e[r]) } function ma(t, e) { for (var r in e) "__proto__" !== r && "constructor" !== r && "prototype" !== r && (t[r] = s(e[r]) ? ma(t[r] || (t[r] = {}), e[r]) : e[r]); return t } function na(t, e) { var r, i = {}; for (r in t) r in e || (i[r] = t[r]); return i } function oa(e) { var r = e.parent || F, i = e.keyframes ? ka : ja; if (t(e.inherit)) for (; r;)i(e, r.vars.defaults), r = r.parent || r._dp; return e } function ra(t, e, r, i) { void 0 === r && (r = "_first"), void 0 === i && (i = "_last"); var n = e._prev, a = e._next; n ? n._next = a : t[r] === e && (t[r] = a), a ? a._prev = n : t[i] === e && (t[i] = n), e._next = e._prev = e.parent = null } function sa(t, e) { !t.parent || e && !t.parent.autoRemoveChildren || t.parent.remove(t), t._act = 0 } function ta(t, e) { if (t && (!e || e._end > t._dur || e._start < 0)) for (var r = t; r;)r._dirty = 1, r = r.parent; return t } function wa(t) { return t._repeat ? gt(t._tTime, t = t.duration() + t._rDelay) * t : 0 } function ya(t, e) { return (t - e._start) * e._ts + (0 <= e._ts ? 0 : e._dirty ? e.totalDuration() : e._tDur) } function za(t) { return t._end = ca(t._start + (t._tDur / Math.abs(t._ts || t._rts || j) || 0)) } function Aa(t, e) { var r = t._dp; return r && r.smoothChildTiming && t._ts && (t._start = ca(r._time - (0 < t._ts ? e / t._ts : ((t._dirty ? t.totalDuration() : t._tDur) - e) / -t._ts)), za(t), r._dirty || ta(r, t)), t } function Ba(t, e) { var r; if ((e._time || e._initted && !e._dur) && (r = ya(t.rawTime(), e), (!e._dur || yt(0, e.totalDuration(), r) - e._tTime > j) && e.render(r, !0)), ta(t, e)._dp && t._initted && t._time >= t._dur && t._ts) { if (t._dur < t.duration()) for (r = t; r._dp;)0 <= r.rawTime() && r.totalTime(r._tTime), r = r._dp; t._zTime = -j } } function Ca(t, e, r, i) { return e.parent && sa(e), e._start = ca(r + e._delay), e._end = ca(e._start + (e.totalDuration() / Math.abs(e.timeScale()) || 0)), function _addLinkedListItem(t, e, r, i, n) { void 0 === r && (r = "_first"), void 0 === i && (i = "_last"); var a, s = t[i]; if (n) for (a = e[n]; s && s[n] > a;)s = s._prev; s ? (e._next = s._next, s._next = e) : (e._next = t[r], t[r] = e), e._next ? e._next._prev = e : t[i] = e, e._prev = s, e.parent = e._dp = t }(t, e, "_first", "_last", t._sort ? "_start" : 0), t._recent = e, i || Ba(t, e), t } function Da(t, e) { return (ot.ScrollTrigger || N("scrollTrigger", e)) && ot.ScrollTrigger.create(e, t) } function Ea(t, e, r, i) { return Nt(t, e), t._initted ? !r && t._pt && (t._dur && !1 !== t.vars.lazy || !t._dur && t.vars.lazy) && f !== Pt.frame ? (ht.push(t), t._lazy = [e, i], 1) : void 0 : 1 } function Ia(t, e, r, i) { var n = t._repeat, a = ca(e) || 0, s = t._tTime / t._tDur; return s && !i && (t._time *= a / t._dur), t._dur = a, t._tDur = n ? n < 0 ? 1e10 : ca(a * (n + 1) + t._rDelay * n) : a, s && !i ? Aa(t, t._tTime = t._tDur * s) : t.parent && za(t), r || ta(t.parent, t), t } function Ja(t) { return t instanceof Bt ? ta(t) : Ia(t, t._dur) } function La(t, e) { var r, i, n = t.labels, a = t._recent || vt, s = t.duration() >= U ? a.endTime(!1) : t._dur; return o(e) && (isNaN(e) || e in n) ? "<" === (r = e.charAt(0)) || ">" === r ? ("<" === r ? a._start : a.endTime(0 <= a._repeat)) + (parseFloat(e.substr(1)) || 0) : (r = e.indexOf("=")) < 0 ? (e in n || (n[e] = s), n[e]) : (i = +(e.charAt(r - 1) + e.substr(r + 1)), 1 < r ? La(t, e.substr(0, r - 1)) + i : s + i) : null == e ? s : +e } function Ma(t, e) { return t || 0 === t ? e(t) : e } function Oa(t) { if ("string" != typeof t) return ""; var e = st.exec(t); return e ? t.substr(e.index + e[0].length) : "" } function Ra(t, e) { return t && s(t) && "length" in t && (!e && !t.length || t.length - 1 in t && s(t[0])) && !t.nodeType && t !== i } function Ua(t) { return t.sort(function () { return .5 - Math.random() }) } function Va(t) { if (p(t)) return t; var _ = s(t) ? t : { each: t }, m = Et(_.ease), g = _.from || 0, v = parseFloat(_.base) || 0, y = {}, e = 0 < g && g < 1, b = isNaN(g) || e, T = _.axis, w = g, x = g; return o(g) ? w = x = { center: .5, edges: .5, end: 1 }[g] || 0 : !e && b && (w = g[0], x = g[1]), function (t, e, r) { var i, n, a, s, o, u, h, l, f, d = (r || _).length, c = y[d]; if (!c) { if (!(f = "auto" === _.grid ? 0 : (_.grid || [1, U])[1])) { for (h = -U; h < (h = r[f++].getBoundingClientRect().left) && f < d;); f-- } for (c = y[d] = [], i = b ? Math.min(f, d) * w - .5 : g % f, n = b ? d * x / f - .5 : g / f | 0, l = U, u = h = 0; u < d; u++)a = u % f - i, s = n - (u / f | 0), c[u] = o = T ? Math.abs("y" === T ? s : a) : J(a * a + s * s), h < o && (h = o), o < l && (l = o); "random" === g && Ua(c), c.max = h - l, c.min = l, c.v = d = (parseFloat(_.amount) || parseFloat(_.each) * (d < f ? d - 1 : T ? "y" === T ? d / f : f : Math.max(f, d / f)) || 0) * ("edges" === g ? -1 : 1), c.b = d < 0 ? v - d : v, c.u = Oa(_.amount || _.each) || 0, m = m && d < 0 ? It(m) : m } return d = (c[t] - c.min) / c.max || 0, ca(c.b + (m ? m(d) : d) * c.v) + c.u } } function Wa(r) { var i = r < 1 ? Math.pow(10, (r + "").length - 2) : 1; return function (t) { var e = Math.round(parseFloat(t) / r) * r * i; return (e - e % 1) / i + (q(t) ? 0 : Oa(t)) } } function Xa(u, t) { var h, l, e = K(u); return !e && s(u) && (h = e = u.radius || U, u.values ? (u = Tt(u.values), (l = !q(u[0])) && (h *= h)) : u = Wa(u.increment)), Ma(t, e ? p(u) ? function (t) { return l = u(t), Math.abs(l - t) <= h ? l : t } : function (t) { for (var e, r, i = parseFloat(l ? t.x : t), n = parseFloat(l ? t.y : 0), a = U, s = 0, o = u.length; o--;)(e = l ? (e = u[o].x - i) * e + (r = u[o].y - n) * r : Math.abs(u[o] - i)) < a && (a = e, s = o); return s = !h || a <= h ? u[s] : t, l || s === t || q(t) ? s : s + Oa(t) } : Wa(u)) } function Ya(t, e, r, i) { return Ma(K(t) ? !e : !0 === r ? !!(r = 0) : !i, function () { return K(t) ? t[~~(Math.random() * t.length)] : (r = r || 1e-5) && (i = r < 1 ? Math.pow(10, (r + "").length - 2) : 1) && Math.floor(Math.round((t - r / 2 + Math.random() * (e - t + .99 * r)) / r) * r * i) / i }) } function ab(e, r, t) { return Ma(t, function (t) { return e[~~r(t)] }) } function db(t) { for (var e, r, i, n, a = 0, s = ""; ~(e = t.indexOf("random(", a));)i = t.indexOf(")", e), n = "[" === t.charAt(e + 7), r = t.substr(e + 7, i - e - 7).match(n ? at : tt), s += t.substr(a, e - a) + Ya(n ? r : +r[0], n ? 0 : +r[1], +r[2] || 1e-5), a = i + 1; return s + t.substr(a, t.length - a) } function gb(t, e, r) { var i, n, a, s = t.labels, o = U; for (i in s) (n = s[i] - e) < 0 == !!r && n && o > (n = Math.abs(n)) && (a = i, o = n); return a } function ib(t) { return sa(t), t.scrollTrigger && t.scrollTrigger.kill(!1), t.progress() < 1 && xt(t, "onInterrupt"), t } function nb(t, e, r) { return (6 * (t = t < 0 ? t + 1 : 1 < t ? t - 1 : t) < 1 ? e + (r - e) * t * 6 : t < .5 ? r : 3 * t < 2 ? e + (r - e) * (2 / 3 - t) * 6 : e) * Ot + .5 | 0 } function ob(t, e, r) { var i, n, a, s, o, u, h, l, f, d, c = t ? q(t) ? [t >> 16, t >> 8 & Ot, t & Ot] : 0 : Mt.black; if (!c) { if ("," === t.substr(-1) && (t = t.substr(0, t.length - 1)), Mt[t]) c = Mt[t]; else if ("#" === t.charAt(0)) { if (t.length < 6 && (t = "#" + (i = t.charAt(1)) + i + (n = t.charAt(2)) + n + (a = t.charAt(3)) + a + (5 === t.length ? t.charAt(4) + t.charAt(4) : "")), 9 === t.length) return [(c = parseInt(t.substr(1, 6), 16)) >> 16, c >> 8 & Ot, c & Ot, parseInt(t.substr(7), 16) / 255]; c = [(t = parseInt(t.substr(1), 16)) >> 16, t >> 8 & Ot, t & Ot] } else if ("hsl" === t.substr(0, 3)) if (c = d = t.match(tt), e) { if (~t.indexOf("=")) return c = t.match(et), r && c.length < 4 && (c[3] = 1), c } else s = +c[0] % 360 / 360, o = c[1] / 100, i = 2 * (u = c[2] / 100) - (n = u <= .5 ? u * (o + 1) : u + o - u * o), 3 < c.length && (c[3] *= 1), c[0] = nb(s + 1 / 3, i, n), c[1] = nb(s, i, n), c[2] = nb(s - 1 / 3, i, n); else c = t.match(tt) || Mt.transparent; c = c.map(Number) } return e && !d && (i = c[0] / Ot, n = c[1] / Ot, a = c[2] / Ot, u = ((h = Math.max(i, n, a)) + (l = Math.min(i, n, a))) / 2, h === l ? s = o = 0 : (f = h - l, o = .5 < u ? f / (2 - h - l) : f / (h + l), s = h === i ? (n - a) / f + (n < a ? 6 : 0) : h === n ? (a - i) / f + 2 : (i - n) / f + 4, s *= 60), c[0] = ~~(s + .5), c[1] = ~~(100 * o + .5), c[2] = ~~(100 * u + .5)), r && c.length < 4 && (c[3] = 1), c } function pb(t) { var r = [], i = [], n = -1; return t.split(kt).forEach(function (t) { var e = t.match(rt) || []; r.push.apply(r, e), i.push(n += e.length + 1) }), r.c = i, r } function qb(t, e, r) { var i, n, a, s, o = "", u = (t + o).match(kt), h = e ? "hsla(" : "rgba(", l = 0; if (!u) return t; if (u = u.map(function (t) { return (t = ob(t, e, 1)) && h + (e ? t[0] + "," + t[1] + "%," + t[2] + "%," + t[3] : t.join(",")) + ")" }), r && (a = pb(t), (i = r.c).join(o) !== a.c.join(o))) for (s = (n = t.replace(kt, "1").split(rt)).length - 1; l < s; l++)o += n[l] + (~i.indexOf(l) ? u.shift() || h + "0,0,0,0)" : (a.length ? a : u.length ? u : r).shift()); if (!n) for (s = (n = t.split(kt)).length - 1; l < s; l++)o += n[l] + u[l]; return o + n[s] } function tb(t) { var e, r = t.join(" "); if (kt.lastIndex = 0, kt.test(r)) return e = Ct.test(r), t[1] = qb(t[1], e), t[0] = qb(t[0], e, pb(t[1])), !0 } function Cb(t) { var e = (t + "").split("("), r = Dt[e[0]]; return r && 1 < e.length && r.config ? r.config.apply(null, ~t.indexOf("{") ? [function _parseObjectInString(t) { for (var e, r, i, n = {}, a = t.substr(1, t.length - 3).split(":"), s = a[0], o = 1, u = a.length; o < u; o++)r = a[o], e = o !== u - 1 ? r.lastIndexOf(",") : r.length, i = r.substr(0, e), n[s] = isNaN(i) ? i.replace(zt, "").trim() : +i, s = r.substr(e + 1).trim(); return n }(e[1])] : function _valueInParentheses(t) { var e = t.indexOf("(") + 1, r = t.indexOf(")"), i = t.indexOf("(", e); return t.substring(e, ~i && i < r ? t.indexOf(")", r + 1) : r) }(t).split(",").map(ha)) : Dt._CE && St.test(t) ? Dt._CE("", t) : r } function Eb(t, e) { for (var r, i = t._first; i;)i instanceof Bt ? Eb(i, e) : !i.vars.yoyoEase || i._yoyo && i._repeat || i._yoyo === e || (i.timeline ? Eb(i.timeline, e) : (r = i._ease, i._ease = i._yEase, i._yEase = r, i._yoyo = e)), i = i._next } function Gb(t, e, r, i) { void 0 === r && (r = function easeOut(t) { return 1 - e(1 - t) }), void 0 === i && (i = function easeInOut(t) { return t < .5 ? e(2 * t) / 2 : 1 - e(2 * (1 - t)) / 2 }); var n, a = { easeIn: e, easeOut: r, easeInOut: i }; return ba(t, function (t) { for (var e in Dt[t] = ot[t] = a, Dt[n = t.toLowerCase()] = r, a) Dt[n + ("easeIn" === e ? ".in" : "easeOut" === e ? ".out" : ".inOut")] = Dt[t + "." + e] = a[e] }), a } function Hb(e) { return function (t) { return t < .5 ? (1 - e(1 - 2 * t)) / 2 : .5 + e(2 * (t - .5)) / 2 } } function Ib(r, t, e) { function Dl(t) { return 1 === t ? 1 : i * Math.pow(2, -10 * t) * H((t - a) * n) + 1 } var i = 1 <= t ? t : 1, n = (e || (r ? .3 : .45)) / (t < 1 ? t : 1), a = n / X * (Math.asin(1 / i) || 0), s = "out" === r ? Dl : "in" === r ? function (t) { return 1 - Dl(1 - t) } : Hb(Dl); return n = X / n, s.config = function (t, e) { return Ib(r, t, e) }, s } function Jb(e, r) { function Ll(t) { return t ? --t * t * ((r + 1) * t + r) + 1 : 0 } void 0 === r && (r = 1.70158); var t = "out" === e ? Ll : "in" === e ? function (t) { return 1 - Ll(1 - t) } : Hb(Ll); return t.config = function (t) { return Jb(e, t) }, t } var R, F, i, n, a, h, l, f, d, c, m, g, y, b, T, w, x, k, C, A, D, S, z, I, E, L, Y = { autoSleep: 120, force3D: "auto", nullTargetWarn: 1, units: { lineHeight: "" } }, B = { duration: .5, overwrite: !1, delay: 0 }, U = 1e8, j = 1 / U, X = 2 * Math.PI, V = X / 4, G = 0, J = Math.sqrt, W = Math.cos, H = Math.sin, Z = "function" == typeof ArrayBuffer && ArrayBuffer.isView || function () { }, K = Array.isArray, tt = /(?:-?\.?\d|\.)+/gi, et = /[-+=.]*\d+[.e\-+]*\d*[e\-+]*\d*/g, rt = /[-+=.]*\d+[.e-]*\d*[a-z%]*/g, it = /[-+=.]*\d+\.?\d*(?:e-|e\+)?\d*/gi, nt = /[+-]=-?[.\d]+/, at = /[#\-+.]*\b[a-z\d-=+%.]+/gi, st = /[\d.+\-=]+(?:e[-+]\d*)*/i, ot = {}, ut = {}, ht = [], lt = {}, ft = {}, dt = {}, ct = 30, pt = [], _t = "", mt = function _merge(t, e) { for (var r in e) t[r] = e[r]; return t }, gt = function _animationCycle(t, e) { var r = Math.floor(t /= e); return t && r === t ? r - 1 : r }, vt = { _start: 0, endTime: Q }, yt = function _clamp(t, e, r) { return r < t ? t : e < r ? e : r }, bt = [].slice, Tt = function toArray(t, e) { return !o(t) || e || !n && At() ? K(t) ? function _flatten(t, e, r) { return void 0 === r && (r = []), t.forEach(function (t) { return o(t) && !e || Ra(t, 1) ? r.push.apply(r, Tt(t)) : r.push(t) }) || r }(t, e) : Ra(t) ? bt.call(t, 0) : t ? [t] : [] : bt.call(a.querySelectorAll(t), 0) }, wt = function mapRange(e, t, r, i, n) { var a = t - e, s = i - r; return Ma(n, function (t) { return r + ((t - e) / a * s || 0) }) }, xt = function _callback(t, e, r) { var i, n, a = t.vars, s = a[e]; if (s) return i = a[e + "Params"], n = a.callbackScope || t, r && ht.length && fa(), i ? s.apply(n, i) : s.call(n) }, Ot = 255, Mt = { aqua: [0, Ot, Ot], lime: [0, Ot, 0], silver: [192, 192, 192], black: [0, 0, 0], maroon: [128, 0, 0], teal: [0, 128, 128], blue: [0, 0, Ot], navy: [0, 0, 128], white: [Ot, Ot, Ot], olive: [128, 128, 0], yellow: [Ot, Ot, 0], orange: [Ot, 165, 0], gray: [128, 128, 128], purple: [128, 0, 128], green: [0, 128, 0], red: [Ot, 0, 0], pink: [Ot, 192, 203], cyan: [0, Ot, Ot], transparent: [Ot, Ot, Ot, 0] }, kt = function () { var t, e = "(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#(?:[0-9a-f]{3,4}){1,2}\\b"; for (t in Mt) e += "|" + t + "\\b"; return new RegExp(e + ")", "gi") }(), Ct = /hsl[a]?\(/, Pt = (x = Date.now, k = 500, C = 33, A = x(), D = A, z = S = 1e3 / 240, b = { time: 0, frame: 0, tick: function tick() { zk(!0) }, deltaRatio: function deltaRatio(t) { return T / (1e3 / (t || 60)) }, wake: function wake() { l && (!n && u() && (i = n = window, a = i.document || {}, ot.gsap = ae, (i.gsapVersions || (i.gsapVersions = [])).push(ae.version), M(h || i.GreenSockGlobals || !i.gsap && i || {}), y = i.requestAnimationFrame), m && b.sleep(), g = y || function (t) { return setTimeout(t, z - 1e3 * b.time + 1 | 0) }, c = 1, zk(2)) }, sleep: function sleep() { (y ? i.cancelAnimationFrame : clearTimeout)(m), c = 0, g = Q }, lagSmoothing: function lagSmoothing(t, e) { k = t || 1e8, C = Math.min(e, k, 0) }, fps: function fps(t) { S = 1e3 / (t || 240), z = 1e3 * b.time + S }, add: function add(t) { I.indexOf(t) < 0 && I.push(t), At() }, remove: function remove(t) { var e; ~(e = I.indexOf(t)) && I.splice(e, 1) && e <= w && w-- }, _listeners: I = [] }), At = function _wake() { return !c && Pt.wake() }, Dt = {}, St = /^[\d.\-M][\d.\-,\s]/, zt = /["']/g, It = function _invertEase(e) { return function (t) { return 1 - e(1 - t) } }, Et = function _parseEase(t, e) { return t && (p(t) ? t : Dt[t] || Cb(t)) || e }; function zk(t) { var e, r, i, n, a = x() - D, s = !0 === t; if (k < a && (A += a - C), (0 < (e = (i = (D += a) - A) - z) || s) && (n = ++b.frame, T = i - 1e3 * b.time, b.time = i /= 1e3, z += e + (S <= e ? 4 : S - e), r = 1), s || (m = g(zk)), r) for (w = 0; w < I.length; w++)I[w](i, T, n, t) } function am(t) { return t < L ? E * t * t : t < .7272727272727273 ? E * Math.pow(t - 1.5 / 2.75, 2) + .75 : t < .9090909090909092 ? E * (t -= 2.25 / 2.75) * t + .9375 : E * Math.pow(t - 2.625 / 2.75, 2) + .984375 } ba("Linear,Quad,Cubic,Quart,Quint,Strong", function (t, e) { var r = e < 5 ? e + 1 : e; Gb(t + ",Power" + (r - 1), e ? function (t) { return Math.pow(t, r) } : function (t) { return t }, function (t) { return 1 - Math.pow(1 - t, r) }, function (t) { return t < .5 ? Math.pow(2 * t, r) / 2 : 1 - Math.pow(2 * (1 - t), r) / 2 }) }), Dt.Linear.easeNone = Dt.none = Dt.Linear.easeIn, Gb("Elastic", Ib("in"), Ib("out"), Ib()), E = 7.5625, L = 1 / 2.75, Gb("Bounce", function (t) { return 1 - am(1 - t) }, am), Gb("Expo", function (t) { return t ? Math.pow(2, 10 * (t - 1)) : 0 }), Gb("Circ", function (t) { return -(J(1 - t * t) - 1) }), Gb("Sine", function (t) { return 1 === t ? 1 : 1 - W(t * V) }), Gb("Back", Jb("in"), Jb("out"), Jb()), Dt.SteppedEase = Dt.steps = ot.SteppedEase = { config: function config(t, e) { void 0 === t && (t = 1); var r = 1 / t, i = t + (e ? 0 : 1), n = e ? 1 : 0; return function (t) { return ((i * yt(0, .99999999, t) | 0) + n) * r } } }, B.ease = Dt["quad.out"], ba("onComplete,onUpdate,onStart,onRepeat,onReverseComplete,onInterrupt", function (t) { return _t += t + "," + t + "Params," }); var Lt, Rt = function GSCache(t, e) { this.id = G++, (t._gsap = this).target = t, this.harness = e, this.get = e ? e.get : aa, this.set = e ? e.getSetter : Wt }, Ft = ((Lt = Animation.prototype).delay = function delay(t) { return t || 0 === t ? (this.parent && this.parent.smoothChildTiming && this.startTime(this._start + t - this._delay), this._delay = t, this) : this._delay }, Lt.duration = function duration(t) { return arguments.length ? this.totalDuration(0 < this._repeat ? t + (t + this._rDelay) * this._repeat : t) : this.totalDuration() && this._dur }, Lt.totalDuration = function totalDuration(t) { return arguments.length ? (this._dirty = 0, Ia(this, this._repeat < 0 ? t : (t - this._repeat * this._rDelay) / (this._repeat + 1))) : this._tDur }, Lt.totalTime = function totalTime(t, e) { if (At(), !arguments.length) return this._tTime; var r = this._dp; if (r && r.smoothChildTiming && this._ts) { for (Aa(this, t), !r._dp || r.parent || Ba(r, this); r.parent;)r.parent._time !== r._start + (0 <= r._ts ? r._tTime / r._ts : (r.totalDuration() - r._tTime) / -r._ts) && r.totalTime(r._tTime, !0), r = r.parent; !this.parent && this._dp.autoRemoveChildren && (0 < this._ts && t < this._tDur || this._ts < 0 && 0 < t || !this._tDur && !t) && Ca(this._dp, this, this._start - this._delay) } return (this._tTime !== t || !this._dur && !e || this._initted && Math.abs(this._zTime) === j || !t && !this._initted && (this.add || this._ptLookup)) && (this._ts || (this._pTime = t), ga(this, t, e)), this }, Lt.time = function time(t, e) { return arguments.length ? this.totalTime(Math.min(this.totalDuration(), t + wa(this)) % this._dur || (t ? this._dur : 0), e) : this._time }, Lt.totalProgress = function totalProgress(t, e) { return arguments.length ? this.totalTime(this.totalDuration() * t, e) : this.totalDuration() ? Math.min(1, this._tTime / this._tDur) : this.ratio }, Lt.progress = function progress(t, e) { return arguments.length ? this.totalTime(this.duration() * (!this._yoyo || 1 & this.iteration() ? t : 1 - t) + wa(this), e) : this.duration() ? Math.min(1, this._time / this._dur) : this.ratio }, Lt.iteration = function iteration(t, e) { var r = this.duration() + this._rDelay; return arguments.length ? this.totalTime(this._time + (t - 1) * r, e) : this._repeat ? gt(this._tTime, r) + 1 : 1 }, Lt.timeScale = function timeScale(t) { if (!arguments.length) return this._rts === -j ? 0 : this._rts; if (this._rts === t) return this; var e = this.parent && this._ts ? ya(this.parent._time, this) : this._tTime; return this._rts = +t || 0, this._ts = this._ps || t === -j ? 0 : this._rts, function _recacheAncestors(t) { for (var e = t.parent; e && e.parent;)e._dirty = 1, e.totalDuration(), e = e.parent; return t }(this.totalTime(yt(-this._delay, this._tDur, e), !0)) }, Lt.paused = function paused(t) { return arguments.length ? (this._ps !== t && ((this._ps = t) ? (this._pTime = this._tTime || Math.max(-this._delay, this.rawTime()), this._ts = this._act = 0) : (At(), this._ts = this._rts, this.totalTime(this.parent && !this.parent.smoothChildTiming ? this.rawTime() : this._tTime || this._pTime, 1 === this.progress() && (this._tTime -= j) && Math.abs(this._zTime) !== j))), this) : this._ps }, Lt.startTime = function startTime(t) { if (arguments.length) { this._start = t; var e = this.parent || this._dp; return !e || !e._sort && this.parent || Ca(e, this, t - this._delay), this } return this._start }, Lt.endTime = function endTime(e) { return this._start + (t(e) ? this.totalDuration() : this.duration()) / Math.abs(this._ts) }, Lt.rawTime = function rawTime(t) { var e = this.parent || this._dp; return e ? t && (!this._ts || this._repeat && this._time && this.totalProgress() < 1) ? this._tTime % (this._dur + this._rDelay) : this._ts ? ya(e.rawTime(t), this) : this._tTime : this._tTime }, Lt.globalTime = function globalTime(t) { for (var e = this, r = arguments.length ? t : e.rawTime(); e;)r = e._start + r / (e._ts || 1), e = e._dp; return r }, Lt.repeat = function repeat(t) { return arguments.length ? (this._repeat = t === 1 / 0 ? -2 : t, Ja(this)) : -2 === this._repeat ? 1 / 0 : this._repeat }, Lt.repeatDelay = function repeatDelay(t) { return arguments.length ? (this._rDelay = t, Ja(this)) : this._rDelay }, Lt.yoyo = function yoyo(t) { return arguments.length ? (this._yoyo = t, this) : this._yoyo }, Lt.seek = function seek(e, r) { return this.totalTime(La(this, e), t(r)) }, Lt.restart = function restart(e, r) { return this.play().totalTime(e ? -this._delay : 0, t(r)) }, Lt.play = function play(t, e) { return null != t && this.seek(t, e), this.reversed(!1).paused(!1) }, Lt.reverse = function reverse(t, e) { return null != t && this.seek(t || this.totalDuration(), e), this.reversed(!0).paused(!1) }, Lt.pause = function pause(t, e) { return null != t && this.seek(t, e), this.paused(!0) }, Lt.resume = function resume() { return this.paused(!1) }, Lt.reversed = function reversed(t) { return arguments.length ? (!!t !== this.reversed() && this.timeScale(-this._rts || (t ? -j : 0)), this) : this._rts < 0 }, Lt.invalidate = function invalidate() { return this._initted = this._act = 0, this._zTime = -j, this }, Lt.isActive = function isActive() { var t, e = this.parent || this._dp, r = this._start; return !(e && !(this._ts && this._initted && e.isActive() && (t = e.rawTime(!0)) >= r && t < this.endTime(!0) - j)) }, Lt.eventCallback = function eventCallback(t, e, r) { var i = this.vars; return 1 < arguments.length ? (e ? (i[t] = e, r && (i[t + "Params"] = r), "onUpdate" === t && (this._onUpdate = e)) : delete i[t], this) : i[t] }, Lt.then = function then(t) { var i = this; return new Promise(function (e) { function sn() { var t = i.then; i.then = null, p(r) && (r = r(i)) && (r.then || r === i) && (i.then = t), e(r), i.then = t } var r = p(t) ? t : ia; i._initted && 1 === i.totalProgress() && 0 <= i._ts || !i._tTime && i._ts < 0 ? sn() : i._prom = sn }) }, Lt.kill = function kill() { ib(this) }, Animation); function Animation(t, e) { var r = t.parent || F; this.vars = t, this._delay = +t.delay || 0, (this._repeat = t.repeat === 1 / 0 ? -2 : t.repeat || 0) && (this._rDelay = t.repeatDelay || 0, this._yoyo = !!t.yoyo || !!t.yoyoEase), this._ts = 1, Ia(this, +t.duration, 1, 1), this.data = t.data, c || Pt.wake(), r && Ca(r, this, e || 0 === e ? e : r._time, 1), t.reversed && this.reverse(), t.paused && this.paused(!0) } ja(Ft.prototype, { _time: 0, _start: 0, _end: 0, _tTime: 0, _tDur: 0, _dirty: 0, _repeat: 0, _yoyo: !1, parent: null, _initted: !1, _rDelay: 0, _ts: 1, _dp: 0, ratio: 0, _zTime: -j, _prom: 0, _ps: !1, _rts: 1 }); var Bt = function (n) { function Timeline(e, r) { var i; return void 0 === e && (e = {}), (i = n.call(this, e, r) || this).labels = {}, i.smoothChildTiming = !!e.smoothChildTiming, i.autoRemoveChildren = !!e.autoRemoveChildren, i._sort = t(e.sortChildren), i.parent && Ba(i.parent, _assertThisInitialized(i)), e.scrollTrigger && Da(_assertThisInitialized(i), e.scrollTrigger), i } _inheritsLoose(Timeline, n); var e = Timeline.prototype; return e.to = function to(t, e, r, i) { return new Vt(t, ea(arguments, 0, this), La(this, q(e) ? i : r)), this }, e.from = function from(t, e, r, i) { return new Vt(t, ea(arguments, 1, this), La(this, q(e) ? i : r)), this }, e.fromTo = function fromTo(t, e, r, i, n) { return new Vt(t, ea(arguments, 2, this), La(this, q(e) ? n : i)), this }, e.set = function set(t, e, r) { return e.duration = 0, e.parent = this, oa(e).repeatDelay || (e.repeat = 0), e.immediateRender = !!e.immediateRender, new Vt(t, e, La(this, r), 1), this }, e.call = function call(t, e, r) { return Ca(this, Vt.delayedCall(0, t, e), La(this, r)) }, e.staggerTo = function staggerTo(t, e, r, i, n, a, s) { return r.duration = e, r.stagger = r.stagger || i, r.onComplete = a, r.onCompleteParams = s, r.parent = this, new Vt(t, r, La(this, n)), this }, e.staggerFrom = function staggerFrom(e, r, i, n, a, s, o) { return i.runBackwards = 1, oa(i).immediateRender = t(i.immediateRender), this.staggerTo(e, r, i, n, a, s, o) }, e.staggerFromTo = function staggerFromTo(e, r, i, n, a, s, o, u) { return n.startAt = i, oa(n).immediateRender = t(n.immediateRender), this.staggerTo(e, r, n, a, s, o, u) }, e.render = function render(t, e, r) { var i, n, a, s, o, u, h, l, f, d, c, p, _ = this._time, m = this._dirty ? this.totalDuration() : this._tDur, g = this._dur, v = this !== F && m - j < t && 0 <= t ? m : t < j ? 0 : t, y = this._zTime < 0 != t < 0 && (this._initted || !g); if (v !== this._tTime || r || y) { if (_ !== this._time && g && (v += this._time - _, t += this._time - _), i = v, f = this._start, u = !(l = this._ts), y && (g || (_ = this._zTime), !t && e || (this._zTime = t)), this._repeat) { if (c = this._yoyo, o = g + this._rDelay, this._repeat < -1 && t < 0) return this.totalTime(100 * o + t, e, r); if (i = ca(v % o), v === m ? (s = this._repeat, i = g) : ((s = ~~(v / o)) && s === v / o && (i = g, s--), g < i && (i = g)), d = gt(this._tTime, o), !_ && this._tTime && d !== s && (d = s), c && 1 & s && (i = g - i, p = 1), s !== d && !this._lock) { var b = c && 1 & d, T = b === (c && 1 & s); if (s < d && (b = !b), _ = b ? 0 : g, this._lock = 1, this.render(_ || (p ? 0 : ca(s * o)), e, !g)._lock = 0, !e && this.parent && xt(this, "onRepeat"), this.vars.repeatRefresh && !p && (this.invalidate()._lock = 1), _ && _ !== this._time || u != !this._ts || this.vars.onRepeat && !this.parent && !this._act) return this; if (g = this._dur, m = this._tDur, T && (this._lock = 2, _ = b ? g : -1e-4, this.render(_, !0)), this._lock = 0, !this._ts && !u) return this; Eb(this, p) } } if (this._hasPause && !this._forcing && this._lock < 2 && (h = function _findNextPauseTween(t, e, r) { var i; if (e < r) for (i = t._first; i && i._start <= r;) { if (!i._dur && "isPause" === i.data && i._start > e) return i; i = i._next } else for (i = t._last; i && i._start >= r;) { if (!i._dur && "isPause" === i.data && i._start < e) return i; i = i._prev } }(this, ca(_), ca(i))) && (v -= i - (i = h._start)), this._tTime = v, this._time = i, this._act = !l, this._initted || (this._onUpdate = this.vars.onUpdate, this._initted = 1, this._zTime = t, _ = 0), _ || !i || e || xt(this, "onStart"), _ <= i && 0 <= t) for (n = this._first; n;) { if (a = n._next, (n._act || i >= n._start) && n._ts && h !== n) { if (n.parent !== this) return this.render(t, e, r); if (n.render(0 < n._ts ? (i - n._start) * n._ts : (n._dirty ? n.totalDuration() : n._tDur) + (i - n._start) * n._ts, e, r), i !== this._time || !this._ts && !u) { h = 0, a && (v += this._zTime = -j); break } } n = a } else { n = this._last; for (var w = t < 0 ? t : i; n;) { if (a = n._prev, (n._act || w <= n._end) && n._ts && h !== n) { if (n.parent !== this) return this.render(t, e, r); if (n.render(0 < n._ts ? (w - n._start) * n._ts : (n._dirty ? n.totalDuration() : n._tDur) + (w - n._start) * n._ts, e, r), i !== this._time || !this._ts && !u) { h = 0, a && (v += this._zTime = w ? -j : j); break } } n = a } } if (h && !e && (this.pause(), h.render(_ <= i ? 0 : -j)._zTime = _ <= i ? 1 : -1, this._ts)) return this._start = f, za(this), this.render(t, e, r); this._onUpdate && !e && xt(this, "onUpdate", !0), (v === m && m >= this.totalDuration() || !v && _) && (f !== this._start && Math.abs(l) === Math.abs(this._ts) || this._lock || (!t && g || !(v === m && 0 < this._ts || !v && this._ts < 0) || sa(this, 1), e || t < 0 && !_ || !v && !_ || (xt(this, v === m ? "onComplete" : "onReverseComplete", !0), !this._prom || v < m && 0 < this.timeScale() || this._prom()))) } return this }, e.add = function add(t, e) { var r = this; if (q(e) || (e = La(this, e)), !(t instanceof Ft)) { if (K(t)) return t.forEach(function (t) { return r.add(t, e) }), this; if (o(t)) return this.addLabel(t, e); if (!p(t)) return this; t = Vt.delayedCall(0, t) } return this !== t ? Ca(this, t, e) : this }, e.getChildren = function getChildren(t, e, r, i) { void 0 === t && (t = !0), void 0 === e && (e = !0), void 0 === r && (r = !0), void 0 === i && (i = -U); for (var n = [], a = this._first; a;)a._start >= i && (a instanceof Vt ? e && n.push(a) : (r && n.push(a), t && n.push.apply(n, a.getChildren(!0, e, r)))), a = a._next; return n }, e.getById = function getById(t) { for (var e = this.getChildren(1, 1, 1), r = e.length; r--;)if (e[r].vars.id === t) return e[r] }, e.remove = function remove(t) { return o(t) ? this.removeLabel(t) : p(t) ? this.killTweensOf(t) : (ra(this, t), t === this._recent && (this._recent = this._last), ta(this)) }, e.totalTime = function totalTime(t, e) { return arguments.length ? (this._forcing = 1, !this._dp && this._ts && (this._start = ca(Pt.time - (0 < this._ts ? t / this._ts : (this.totalDuration() - t) / -this._ts))), n.prototype.totalTime.call(this, t, e), this._forcing = 0, this) : this._tTime }, e.addLabel = function addLabel(t, e) { return this.labels[t] = La(this, e), this }, e.removeLabel = function removeLabel(t) { return delete this.labels[t], this }, e.addPause = function addPause(t, e, r) { var i = Vt.delayedCall(0, e || Q, r); return i.data = "isPause", this._hasPause = 1, Ca(this, i, La(this, t)) }, e.removePause = function removePause(t) { var e = this._first; for (t = La(this, t); e;)e._start === t && "isPause" === e.data && sa(e), e = e._next }, e.killTweensOf = function killTweensOf(t, e, r) { for (var i = this.getTweensOf(t, r), n = i.length; n--;)qt !== i[n] && i[n].kill(t, e); return this }, e.getTweensOf = function getTweensOf(t, e) { for (var r, i = [], n = Tt(t), a = this._first, s = q(e); a;)a instanceof Vt ? da(a._targets, n) && (s ? (!qt || a._initted && a._ts) && a.globalTime(0) <= e && a.globalTime(a.totalDuration()) > e : !e || a.isActive()) && i.push(a) : (r = a.getTweensOf(n, e)).length && i.push.apply(i, r), a = a._next; return i }, e.tweenTo = function tweenTo(t, e) { e = e || {}; var r = this, i = La(r, t), n = e.startAt, a = e.onStart, s = e.onStartParams, o = e.immediateRender, u = Vt.to(r, ja({ ease: e.ease || "none", lazy: !1, immediateRender: !1, time: i, overwrite: "auto", duration: e.duration || Math.abs((i - (n && "time" in n ? n.time : r._time)) / r.timeScale()) || j, onStart: function onStart() { r.pause(); var t = e.duration || Math.abs((i - r._time) / r.timeScale()); u._dur !== t && Ia(u, t, 0, 1).render(u._time, !0, !0), a && a.apply(u, s || []) } }, e)); return o ? u.render(0) : u }, e.tweenFromTo = function tweenFromTo(t, e, r) { return this.tweenTo(e, ja({ startAt: { time: La(this, t) } }, r)) }, e.recent = function recent() { return this._recent }, e.nextLabel = function nextLabel(t) { return void 0 === t && (t = this._time), gb(this, La(this, t)) }, e.previousLabel = function previousLabel(t) { return void 0 === t && (t = this._time), gb(this, La(this, t), 1) }, e.currentLabel = function currentLabel(t) { return arguments.length ? this.seek(t, !0) : this.previousLabel(this._time + j) }, e.shiftChildren = function shiftChildren(t, e, r) { void 0 === r && (r = 0); for (var i, n = this._first, a = this.labels; n;)n._start >= r && (n._start += t, n._end += t), n = n._next; if (e) for (i in a) a[i] >= r && (a[i] += t); return ta(this) }, e.invalidate = function invalidate() { var t = this._first; for (this._lock = 0; t;)t.invalidate(), t = t._next; return n.prototype.invalidate.call(this) }, e.clear = function clear(t) { void 0 === t && (t = !0); for (var e, r = this._first; r;)e = r._next, this.remove(r), r = e; return this._dp && (this._time = this._tTime = this._pTime = 0), t && (this.labels = {}), ta(this) }, e.totalDuration = function totalDuration(t) { var e, r, i, n = 0, a = this, s = a._last, o = U; if (arguments.length) return a.timeScale((a._repeat < 0 ? a.duration() : a.totalDuration()) / (a.reversed() ? -t : t)); if (a._dirty) { for (i = a.parent; s;)e = s._prev, s._dirty && s.totalDuration(), o < (r = s._start) && a._sort && s._ts && !a._lock ? (a._lock = 1, Ca(a, s, r - s._delay, 1)._lock = 0) : o = r, r < 0 && s._ts && (n -= r, (!i && !a._dp || i && i.smoothChildTiming) && (a._start += r / a._ts, a._time -= r, a._tTime -= r), a.shiftChildren(-r, !1, -Infinity), o = 0), s._end > n && s._ts && (n = s._end), s = e; Ia(a, a === F && a._time > n ? a._time : n, 1, 1), a._dirty = 0 } return a._tDur }, Timeline.updateRoot = function updateRoot(t) { if (F._ts && (ga(F, ya(t, F)), f = Pt.frame), Pt.frame >= ct) { ct += Y.autoSleep || 120; var e = F._first; if ((!e || !e._ts) && Y.autoSleep && Pt._listeners.length < 2) { for (; e && !e._ts;)e = e._next; e || Pt.sleep() } } }, Timeline }(Ft); ja(Bt.prototype, { _lock: 0, _hasPause: 0, _forcing: 0 }); function Qb(t, e, r, i, n, a) { var u, h, l, f; if (ft[t] && !1 !== (u = new ft[t]).init(n, u.rawVars ? e[t] : function _processVars(t, e, r, i, n) { if (p(t) && (t = Ut(t, n, e, r, i)), !s(t) || t.style && t.nodeType || K(t) || Z(t)) return o(t) ? Ut(t, n, e, r, i) : t; var a, u = {}; for (a in t) u[a] = Ut(t[a], n, e, r, i); return u }(e[t], i, n, a, r), r, i, a) && (r._pt = h = new ie(r._pt, n, t, 0, 1, u.render, u, 0, u.priority), r !== d)) for (l = r._ptLookup[r._targets.indexOf(n)], f = u._props.length; f--;)l[u._props[f]] = h; return u } var qt, Yt = function _addPropTween(t, e, r, i, n, a, s, u, h) { p(i) && (i = i(n || 0, t, a)); var l, f = t[e], d = "get" !== r ? r : p(f) ? h ? t[e.indexOf("set") || !p(t["get" + e.substr(3)]) ? e : "get" + e.substr(3)](h) : t[e]() : f, c = p(f) ? h ? Jt : Qt : Gt; if (o(i) && (~i.indexOf("random(") && (i = db(i)), "=" === i.charAt(1) && (i = parseFloat(d) + parseFloat(i.substr(2)) * ("-" === i.charAt(0) ? -1 : 1) + (Oa(d) || 0))), d !== i) return isNaN(d * i) ? (f || e in t || N(e, i), function _addComplexStringPropTween(t, e, r, i, n, a, s) { var o, u, h, l, f, d, c, p, _ = new ie(this._pt, t, e, 0, 1, Zt, null, n), m = 0, g = 0; for (_.b = r, _.e = i, r += "", (c = ~(i += "").indexOf("random(")) && (i = db(i)), a && (a(p = [r, i], t, e), r = p[0], i = p[1]), u = r.match(it) || []; o = it.exec(i);)l = o[0], f = i.substring(m, o.index), h ? h = (h + 1) % 5 : "rgba(" === f.substr(-5) && (h = 1), l !== u[g++] && (d = parseFloat(u[g - 1]) || 0, _._pt = { _next: _._pt, p: f || 1 === g ? f : ",", s: d, c: "=" === l.charAt(1) ? parseFloat(l.substr(2)) * ("-" === l.charAt(0) ? -1 : 1) : parseFloat(l) - d, m: h && h < 4 ? Math.round : 0 }, m = it.lastIndex); return _.c = m < i.length ? i.substring(m, i.length) : "", _.fp = s, (nt.test(i) || c) && (_.e = 0), this._pt = _ }.call(this, t, e, d, i, c, u || Y.stringFilter, h)) : (l = new ie(this._pt, t, e, +d || 0, i - (d || 0), "boolean" == typeof f ? $t : Ht, 0, c), h && (l.fp = h), s && l.modifier(s, this, t), this._pt = l) }, Nt = function _initTween(e, r) { var i, n, a, s, o, u, h, l, f, d, c, p, m, g = e.vars, v = g.ease, y = g.startAt, b = g.immediateRender, T = g.lazy, w = g.onUpdate, x = g.onUpdateParams, O = g.callbackScope, M = g.runBackwards, k = g.yoyoEase, C = g.keyframes, P = g.autoRevert, A = e._dur, D = e._startAt, S = e._targets, z = e.parent, I = z && "nested" === z.data ? z.parent._targets : S, E = "auto" === e._overwrite && !R, L = e.timeline; if (!L || C && v || (v = "none"), e._ease = Et(v, B.ease), e._yEase = k ? It(Et(!0 === k ? v : k, B.ease)) : 0, k && e._yoyo && !e._repeat && (k = e._yEase, e._yEase = e._ease, e._ease = k), !L) { if (p = (l = S[0] ? _(S[0]).harness : 0) && g[l.prop], i = na(g, ut), D && D.render(-1, !0).kill(), y) if (sa(e._startAt = Vt.set(S, ja({ data: "isStart", overwrite: !1, parent: z, immediateRender: !0, lazy: t(T), startAt: null, delay: 0, onUpdate: w, onUpdateParams: x, callbackScope: O, stagger: 0 }, y))), b) { if (0 < r) P || (e._startAt = 0); else if (A && !(r < 0 && D)) return void (r && (e._zTime = r)) } else !1 === P && (e._startAt = 0); else if (M && A) if (D) P || (e._startAt = 0); else if (r && (b = !1), a = ja({ overwrite: !1, data: "isFromStart", lazy: b && t(T), immediateRender: b, stagger: 0, parent: z }, i), p && (a[l.prop] = p), sa(e._startAt = Vt.set(S, a)), b) { if (!r) return } else _initTween(e._startAt, j); for (e._pt = 0, T = A && t(T) || T && !A, n = 0; n < S.length; n++) { if (h = (o = S[n])._gsap || $(S)[n]._gsap, e._ptLookup[n] = d = {}, lt[h.id] && ht.length && fa(), c = I === S ? n : I.indexOf(o), l && !1 !== (f = new l).init(o, p || i, e, c, I) && (e._pt = s = new ie(e._pt, o, f.name, 0, 1, f.render, f, 0, f.priority), f._props.forEach(function (t) { d[t] = s }), f.priority && (u = 1)), !l || p) for (a in i) ft[a] && (f = Qb(a, i, e, c, o, I)) ? f.priority && (u = 1) : d[a] = s = Yt.call(e, o, a, "get", i[a], c, I, 0, g.stringFilter); e._op && e._op[n] && e.kill(o, e._op[n]), E && e._pt && (qt = e, F.killTweensOf(o, d, e.globalTime(0)), m = !e.parent, qt = 0), e._pt && T && (lt[h.id] = 1) } u && re(e), e._onInit && e._onInit(e) } e._from = !L && !!g.runBackwards, e._onUpdate = w, e._initted = (!e._op || e._pt) && !m }, Ut = function _parseFuncOrString(t, e, r, i, n) { return p(t) ? t.call(e, r, i, n) : o(t) && ~t.indexOf("random(") ? db(t) : t }, jt = _t + "repeat,repeatDelay,yoyo,repeatRefresh,yoyoEase", Xt = (jt + ",id,stagger,delay,duration,paused,scrollTrigger").split(","), Vt = function (A) { function Tween(e, r, i, n) { var a; "number" == typeof r && (i.duration = r, r = i, i = null); var o, u, h, l, f, d, c, p, _ = (a = A.call(this, n ? r : oa(r), i) || this).vars, m = _.duration, g = _.delay, y = _.immediateRender, b = _.stagger, T = _.overwrite, w = _.keyframes, x = _.defaults, M = _.scrollTrigger, k = _.yoyoEase, C = a.parent, P = (K(e) || Z(e) ? q(e[0]) : "length" in r) ? [e] : Tt(e); if (a._targets = P.length ? $(P) : O("GSAP target " + e + " not found. https://greensock.com", !Y.nullTargetWarn) || [], a._ptLookup = [], a._overwrite = T, w || b || v(m) || v(g)) { if (r = a.vars, (o = a.timeline = new Bt({ data: "nested", defaults: x || {} })).kill(), o.parent = o._dp = _assertThisInitialized(a), o._start = 0, w) ja(o.vars.defaults, { ease: "none" }), w.forEach(function (t) { return o.to(P, t, ">") }); else { if (l = P.length, c = b ? Va(b) : Q, s(b)) for (f in b) ~jt.indexOf(f) && ((p = p || {})[f] = b[f]); for (u = 0; u < l; u++) { for (f in h = {}, r) Xt.indexOf(f) < 0 && (h[f] = r[f]); h.stagger = 0, k && (h.yoyoEase = k), p && mt(h, p), d = P[u], h.duration = +Ut(m, _assertThisInitialized(a), u, d, P), h.delay = (+Ut(g, _assertThisInitialized(a), u, d, P) || 0) - a._delay, !b && 1 === l && h.delay && (a._delay = g = h.delay, a._start += g, h.delay = 0), o.to(d, h, c(u, d, P)) } o.duration() ? m = g = 0 : a.timeline = 0 } m || a.duration(m = o.duration()) } else a.timeline = 0; return !0 !== T || R || (qt = _assertThisInitialized(a), F.killTweensOf(P), qt = 0), C && Ba(C, _assertThisInitialized(a)), (y || !m && !w && a._start === ca(C._time) && t(y) && function _hasNoPausedAncestors(t) { return !t || t._ts && _hasNoPausedAncestors(t.parent) }(_assertThisInitialized(a)) && "nested" !== C.data) && (a._tTime = -j, a.render(Math.max(0, -g))), M && Da(_assertThisInitialized(a), M), a } _inheritsLoose(Tween, A); var e = Tween.prototype; return e.render = function render(t, e, r) { var i, n, a, s, o, u, h, l, f, d = this._time, c = this._tDur, p = this._dur, _ = c - j < t && 0 <= t ? c : t < j ? 0 : t; if (p) { if (_ !== this._tTime || !t || r || !this._initted && this._tTime || this._startAt && this._zTime < 0 != t < 0) { if (i = _, l = this.timeline, this._repeat) { if (s = p + this._rDelay, this._repeat < -1 && t < 0) return this.totalTime(100 * s + t, e, r); if (i = ca(_ % s), _ === c ? (a = this._repeat, i = p) : ((a = ~~(_ / s)) && a === _ / s && (i = p, a--), p < i && (i = p)), (u = this._yoyo && 1 & a) && (f = this._yEase, i = p - i), o = gt(this._tTime, s), i === d && !r && this._initted) return this; a !== o && (l && this._yEase && Eb(l, u), !this.vars.repeatRefresh || u || this._lock || (this._lock = r = 1, this.render(ca(s * a), !0).invalidate()._lock = 0)) } if (!this._initted) { if (Ea(this, t < 0 ? t : i, r, e)) return this._tTime = 0, this; if (p !== this._dur) return this.render(t, e, r) } for (this._tTime = _, this._time = i, !this._act && this._ts && (this._act = 1, this._lazy = 0), this.ratio = h = (f || this._ease)(i / p), this._from && (this.ratio = h = 1 - h), !i || d || e || xt(this, "onStart"), n = this._pt; n;)n.r(h, n.d), n = n._next; l && l.render(t < 0 ? t : !i && u ? -j : l._dur * h, e, r) || this._startAt && (this._zTime = t), this._onUpdate && !e && (t < 0 && this._startAt && this._startAt.render(t, !0, r), xt(this, "onUpdate")), this._repeat && a !== o && this.vars.onRepeat && !e && this.parent && xt(this, "onRepeat"), _ !== this._tDur && _ || this._tTime !== _ || (t < 0 && this._startAt && !this._onUpdate && this._startAt.render(t, !0, !0), !t && p || !(_ === this._tDur && 0 < this._ts || !_ && this._ts < 0) || sa(this, 1), e || t < 0 && !d || !_ && !d || (xt(this, _ === c ? "onComplete" : "onReverseComplete", !0), !this._prom || _ < c && 0 < this.timeScale() || this._prom())) } } else !function _renderZeroDurationTween(t, e, r, i) { var n, a, s, o = t.ratio, u = e < 0 || !e && (!t._start && function _parentPlayheadIsBeforeStart(t) { var e = t.parent; return e && e._ts && e._initted && !e._lock && (e.rawTime() < 0 || _parentPlayheadIsBeforeStart(e)) }(t) || (t._ts < 0 || t._dp._ts < 0) && "isFromStart" !== t.data && "isStart" !== t.data) ? 0 : 1, h = t._rDelay, l = 0; if (h && t._repeat && (l = yt(0, t._tDur, e), a = gt(l, h), s = gt(t._tTime, h), t._yoyo && 1 & a && (u = 1 - u), a !== s && (o = 1 - u, t.vars.repeatRefresh && t._initted && t.invalidate())), u !== o || i || t._zTime === j || !e && t._zTime) { if (!t._initted && Ea(t, e, i, r)) return; for (s = t._zTime, t._zTime = e || (r ? j : 0), r = r || e && !s, t.ratio = u, t._from && (u = 1 - u), t._time = 0, t._tTime = l, n = t._pt; n;)n.r(u, n.d), n = n._next; t._startAt && e < 0 && t._startAt.render(e, !0, !0), t._onUpdate && !r && xt(t, "onUpdate"), l && t._repeat && !r && t.parent && xt(t, "onRepeat"), (e >= t._tDur || e < 0) && t.ratio === u && (u && sa(t, 1), r || (xt(t, u ? "onComplete" : "onReverseComplete", !0), t._prom && t._prom())) } else t._zTime || (t._zTime = e) }(this, t, e, r); return this }, e.targets = function targets() { return this._targets }, e.invalidate = function invalidate() { return this._pt = this._op = this._startAt = this._onUpdate = this._lazy = this.ratio = 0, this._ptLookup = [], this.timeline && this.timeline.invalidate(), A.prototype.invalidate.call(this) }, e.kill = function kill(t, e) { if (void 0 === e && (e = "all"), !(t || e && "all" !== e)) return this._lazy = this._pt = 0, this.parent ? ib(this) : this; if (this.timeline) { var r = this.timeline.totalDuration(); return this.timeline.killTweensOf(t, e, qt && !0 !== qt.vars.overwrite)._first || ib(this), this.parent && r !== this.timeline.totalDuration() && Ia(this, this._dur * this.timeline._tDur / r, 0, 1), this } var i, n, a, s, u, h, l, f = this._targets, d = t ? Tt(t) : f, c = this._ptLookup, p = this._pt; if ((!e || "all" === e) && function _arraysMatch(t, e) { for (var r = t.length, i = r === e.length; i && r-- && t[r] === e[r];); return r < 0 }(f, d)) return "all" === e && (this._pt = 0), ib(this); for (i = this._op = this._op || [], "all" !== e && (o(e) && (u = {}, ba(e, function (t) { return u[t] = 1 }), e = u), e = function _addAliasesToVars(t, e) { var r, i, n, a, s = t[0] ? _(t[0]).harness : 0, o = s && s.aliases; if (!o) return e; for (i in r = mt({}, e), o) if (i in r) for (n = (a = o[i].split(",")).length; n--;)r[a[n]] = r[i]; return r }(f, e)), l = f.length; l--;)if (~d.indexOf(f[l])) for (u in n = c[l], "all" === e ? (i[l] = e, s = n, a = {}) : (a = i[l] = i[l] || {}, s = e), s) (h = n && n[u]) && ("kill" in h.d && !0 !== h.d.kill(u) || ra(this, h, "_pt"), delete n[u]), "all" !== a && (a[u] = 1); return this._initted && !this._pt && p && ib(this), this }, Tween.to = function to(t, e, r) { return new Tween(t, e, r) }, Tween.from = function from(t, e) { return new Tween(t, ea(arguments, 1)) }, Tween.delayedCall = function delayedCall(t, e, r, i) { return new Tween(e, 0, { immediateRender: !1, lazy: !1, overwrite: !1, delay: t, onComplete: e, onReverseComplete: e, onCompleteParams: r, onReverseCompleteParams: r, callbackScope: i }) }, Tween.fromTo = function fromTo(t, e, r) { return new Tween(t, ea(arguments, 2)) }, Tween.set = function set(t, e) { return e.duration = 0, e.repeatDelay || (e.repeat = 0), new Tween(t, e) }, Tween.killTweensOf = function killTweensOf(t, e, r) { return F.killTweensOf(t, e, r) }, Tween }(Ft); ja(Vt.prototype, { _targets: [], _lazy: 0, _startAt: 0, _op: 0, _onInit: 0 }), ba("staggerTo,staggerFrom,staggerFromTo", function (r) { Vt[r] = function () { var t = new Bt, e = bt.call(arguments, 0); return e.splice("staggerFromTo" === r ? 5 : 4, 0, 0), t[r].apply(t, e) } }); function _b(t, e, r) { return t.setAttribute(e, r) } function hc(t, e, r, i) { i.mSet(t, e, i.m.call(i.tween, r, i.mt), i) } var Gt = function _setterPlain(t, e, r) { return t[e] = r }, Qt = function _setterFunc(t, e, r) { return t[e](r) }, Jt = function _setterFuncWithParam(t, e, r, i) { return t[e](i.fp, r) }, Wt = function _getSetter(t, e) { return p(t[e]) ? Qt : r(t[e]) && t.setAttribute ? _b : Gt }, Ht = function _renderPlain(t, e) { return e.set(e.t, e.p, Math.round(1e4 * (e.s + e.c * t)) / 1e4, e) }, $t = function _renderBoolean(t, e) { return e.set(e.t, e.p, !!(e.s + e.c * t), e) }, Zt = function _renderComplexString(t, e) { var r = e._pt, i = ""; if (!t && e.b) i = e.b; else if (1 === t && e.e) i = e.e; else { for (; r;)i = r.p + (r.m ? r.m(r.s + r.c * t) : Math.round(1e4 * (r.s + r.c * t)) / 1e4) + i, r = r._next; i += e.c } e.set(e.t, e.p, i, e) }, Kt = function _renderPropTweens(t, e) { for (var r = e._pt; r;)r.r(t, r.d), r = r._next }, te = function _addPluginModifier(t, e, r, i) { for (var n, a = this._pt; a;)n = a._next, a.p === i && a.modifier(t, e, r), a = n }, ee = function _killPropTweensOf(t) { for (var e, r, i = this._pt; i;)r = i._next, i.p === t && !i.op || i.op === t ? ra(this, i, "_pt") : i.dep || (e = 1), i = r; return !e }, re = function _sortPropTweensByPriority(t) { for (var e, r, i, n, a = t._pt; a;) { for (e = a._next, r = i; r && r.pr > a.pr;)r = r._next; (a._prev = r ? r._prev : n) ? a._prev._next = a : i = a, (a._next = r) ? r._prev = a : n = a, a = e } t._pt = i }, ie = (PropTween.prototype.modifier = function modifier(t, e, r) { this.mSet = this.mSet || this.set, this.set = hc, this.m = t, this.mt = r, this.tween = e }, PropTween); function PropTween(t, e, r, i, n, a, s, o, u) { this.t = e, this.s = i, this.c = n, this.p = r, this.r = a || Ht, this.d = s || this, this.set = o || Gt, this.pr = u || 0, (this._next = t) && (t._prev = this) } ba(_t + "parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger", function (t) { return ut[t] = 1 }), ot.TweenMax = ot.TweenLite = Vt, ot.TimelineLite = ot.TimelineMax = Bt, F = new Bt({ sortChildren: !1, defaults: B, autoRemoveChildren: !0, id: "root", smoothChildTiming: !0 }), Y.stringFilter = tb; var ne = { registerPlugin: function registerPlugin() { for (var t = arguments.length, e = new Array(t), r = 0; r < t; r++)e[r] = arguments[r]; e.forEach(function (t) { return function _createPlugin(t) { var e = (t = !t.name && t.default || t).name, r = p(t), i = e && !r && t.init ? function () { this._props = [] } : t, n = { init: Q, render: Kt, add: Yt, kill: ee, modifier: te, rawVars: 0 }, a = { targetTest: 0, get: 0, getSetter: Wt, aliases: {}, register: 0 }; if (At(), t !== i) { if (ft[e]) return; ja(i, ja(na(t, n), a)), mt(i.prototype, mt(n, na(t, a))), ft[i.prop = e] = i, t.targetTest && (pt.push(i), ut[e] = 1), e = ("css" === e ? "CSS" : e.charAt(0).toUpperCase() + e.substr(1)) + "Plugin" } P(e, i), t.register && t.register(ae, i, ie) }(t) }) }, timeline: function timeline(t) { return new Bt(t) }, getTweensOf: function getTweensOf(t, e) { return F.getTweensOf(t, e) }, getProperty: function getProperty(i, t, e, r) { o(i) && (i = Tt(i)[0]); var n = _(i || {}).get, a = e ? ia : ha; return "native" === e && (e = ""), i ? t ? a((ft[t] && ft[t].get || n)(i, t, e, r)) : function (t, e, r) { return a((ft[t] && ft[t].get || n)(i, t, e, r)) } : i }, quickSetter: function quickSetter(r, e, i) { if (1 < (r = Tt(r)).length) { var n = r.map(function (t) { return ae.quickSetter(t, e, i) }), a = n.length; return function (t) { for (var e = a; e--;)n[e](t) } } r = r[0] || {}; var s = ft[e], o = _(r), u = o.harness && (o.harness.aliases || {})[e] || e, h = s ? function (t) { var e = new s; d._pt = 0, e.init(r, i ? t + i : t, d, 0, [r]), e.render(1, e), d._pt && Kt(1, d) } : o.set(r, u); return s ? h : function (t) { return h(r, u, i ? t + i : t, o, 1) } }, isTweening: function isTweening(t) { return 0 < F.getTweensOf(t, !0).length }, defaults: function defaults(t) { return t && t.ease && (t.ease = Et(t.ease, B.ease)), ma(B, t || {}) }, config: function config(t) { return ma(Y, t || {}) }, registerEffect: function registerEffect(t) { var i = t.name, n = t.effect, e = t.plugins, a = t.defaults, r = t.extendTimeline; (e || "").split(",").forEach(function (t) { return t && !ft[t] && !ot[t] && O(i + " effect requires " + t + " plugin.") }), dt[i] = function (t, e, r) { return n(Tt(t), ja(e || {}, a), r) }, r && (Bt.prototype[i] = function (t, e, r) { return this.add(dt[i](t, s(e) ? e : (r = e) && {}, this), r) }) }, registerEase: function registerEase(t, e) { Dt[t] = Et(e) }, parseEase: function parseEase(t, e) { return arguments.length ? Et(t, e) : Dt }, getById: function getById(t) { return F.getById(t) }, exportRoot: function exportRoot(e, r) { void 0 === e && (e = {}); var i, n, a = new Bt(e); for (a.smoothChildTiming = t(e.smoothChildTiming), F.remove(a), a._dp = 0, a._time = a._tTime = F._time, i = F._first; i;)n = i._next, !r && !i._dur && i instanceof Vt && i.vars.onComplete === i._targets[0] || Ca(a, i, i._start - i._delay), i = n; return Ca(F, a, 0), a }, utils: { wrap: function wrap(e, t, r) { var i = t - e; return K(e) ? ab(e, wrap(0, e.length), t) : Ma(r, function (t) { return (i + (t - e) % i) % i + e }) }, wrapYoyo: function wrapYoyo(e, t, r) { var i = t - e, n = 2 * i; return K(e) ? ab(e, wrapYoyo(0, e.length - 1), t) : Ma(r, function (t) { return e + (i < (t = (n + (t - e) % n) % n || 0) ? n - t : t) }) }, distribute: Va, random: Ya, snap: Xa, normalize: function normalize(t, e, r) { return wt(t, e, 0, 1, r) }, getUnit: Oa, clamp: function clamp(e, r, t) { return Ma(t, function (t) { return yt(e, r, t) }) }, splitColor: ob, toArray: Tt, mapRange: wt, pipe: function pipe() { for (var t = arguments.length, e = new Array(t), r = 0; r < t; r++)e[r] = arguments[r]; return function (t) { return e.reduce(function (t, e) { return e(t) }, t) } }, unitize: function unitize(e, r) { return function (t) { return e(parseFloat(t)) + (r || Oa(t)) } }, interpolate: function interpolate(e, r, t, i) { var n = isNaN(e + r) ? 0 : function (t) { return (1 - t) * e + t * r }; if (!n) { var a, s, u, h, l, f = o(e), d = {}; if (!0 === t && (i = 1) && (t = null), f) e = { p: e }, r = { p: r }; else if (K(e) && !K(r)) { for (u = [], h = e.length, l = h - 2, s = 1; s < h; s++)u.push(interpolate(e[s - 1], e[s])); h--, n = function func(t) { t *= h; var e = Math.min(l, ~~t); return u[e](t - e) }, t = r } else i || (e = mt(K(e) ? [] : {}, e)); if (!u) { for (a in r) Yt.call(d, e, a, "get", r[a]); n = function func(t) { return Kt(t, d) || (f ? e.p : e) } } } return Ma(t, n) }, shuffle: Ua }, install: M, effects: dt, ticker: Pt, updateRoot: Bt.updateRoot, plugins: ft, globalTimeline: F, core: { PropTween: ie, globals: P, Tween: Vt, Timeline: Bt, Animation: Ft, getCache: _, _removeLinkedListItem: ra, suppressOverwrites: function suppressOverwrites(t) { return R = t } } }; ba("to,from,fromTo,delayedCall,set,killTweensOf", function (t) { return ne[t] = Vt[t] }), Pt.add(Bt.updateRoot), d = ne.to({}, { duration: 0 }); function lc(t, e) { for (var r = t._pt; r && r.p !== e && r.op !== e && r.fp !== e;)r = r._next; return r } function nc(t, n) { return { name: t, rawVars: 1, init: function init(t, i, e) { e._onInit = function (t) { var e, r; if (o(i) && (e = {}, ba(i, function (t) { return e[t] = 1 }), i = e), n) { for (r in e = {}, i) e[r] = n(i[r]); i = e } !function _addModifiers(t, e) { var r, i, n, a = t._targets; for (r in e) for (i = a.length; i--;)(n = (n = t._ptLookup[i][r]) && n.d) && (n._pt && (n = lc(n, r)), n && n.modifier && n.modifier(e[r], t, a[i], r)) }(t, i) } } } } var ae = ne.registerPlugin({ name: "attr", init: function init(t, e, r, i, n) { var a, s; for (a in e) (s = this.add(t, "setAttribute", (t.getAttribute(a) || 0) + "", e[a], i, n, 0, 0, a)) && (s.op = a), this._props.push(a) } }, { name: "endArray", init: function init(t, e) { for (var r = e.length; r--;)this.add(t, r, t[r] || 0, e[r]) } }, nc("roundProps", Wa), nc("modifiers"), nc("snap", Xa)) || ne; Vt.version = Bt.version = ae.version = "3.6.1", l = 1, u() && At(); function Yc(t, e) { return e.set(e.t, e.p, Math.round(1e4 * (e.s + e.c * t)) / 1e4 + e.u, e) } function Zc(t, e) { return e.set(e.t, e.p, 1 === t ? e.e : Math.round(1e4 * (e.s + e.c * t)) / 1e4 + e.u, e) } function $c(t, e) { return e.set(e.t, e.p, t ? Math.round(1e4 * (e.s + e.c * t)) / 1e4 + e.u : e.b, e) } function _c(t, e) { var r = e.s + e.c * t; e.set(e.t, e.p, ~~(r + (r < 0 ? -.5 : .5)) + e.u, e) } function ad(t, e) { return e.set(e.t, e.p, t ? e.e : e.b, e) } function bd(t, e) { return e.set(e.t, e.p, 1 !== t ? e.b : e.e, e) } function cd(t, e, r) { return t.style[e] = r } function dd(t, e, r) { return t.style.setProperty(e, r) } function ed(t, e, r) { return t._gsap[e] = r } function fd(t, e, r) { return t._gsap.scaleX = t._gsap.scaleY = r } function gd(t, e, r, i, n) { var a = t._gsap; a.scaleX = a.scaleY = r, a.renderTransform(n, a) } function hd(t, e, r, i, n) { var a = t._gsap; a[e] = r, a.renderTransform(n, a) } function ld(t, e) { var r = oe.createElementNS ? oe.createElementNS((e || "http://www.w3.org/1999/xhtml").replace(/^https/, "http"), t) : oe.createElement(t); return r.style ? r : oe.createElement(t) } function md(t, e, r) { var i = getComputedStyle(t); return i[e] || i.getPropertyValue(e.replace(Le, "-$1").toLowerCase()) || i.getPropertyValue(e) || !r && md(t, Ue(e) || e, 1) || "" } function pd() { (function _windowExists() { return "undefined" != typeof window })() && window.document && (se = window, oe = se.document, ue = oe.documentElement, le = ld("div") || { style: {} }, ld("div"), qe = Ue(qe), Ye = qe + "Origin", le.style.cssText = "border-width:0;line-height:0;position:absolute;padding:0", de = !!Ue("perspective"), he = 1) } function qd(t) { var e, r = ld("svg", this.ownerSVGElement && this.ownerSVGElement.getAttribute("xmlns") || "http://www.w3.org/2000/svg"), i = this.parentNode, n = this.nextSibling, a = this.style.cssText; if (ue.appendChild(r), r.appendChild(this), this.style.display = "block", t) try { e = this.getBBox(), this._gsapBBox = this.getBBox, this.getBBox = qd } catch (t) { } else this._gsapBBox && (e = this._gsapBBox()); return i && (n ? i.insertBefore(this, n) : i.appendChild(this)), ue.removeChild(r), this.style.cssText = a, e } function rd(t, e) { for (var r = e.length; r--;)if (t.hasAttribute(e[r])) return t.getAttribute(e[r]) } function sd(e) { var r; try { r = e.getBBox() } catch (t) { r = qd.call(e, !0) } return r && (r.width || r.height) || e.getBBox === qd || (r = qd.call(e, !0)), !r || r.width || r.x || r.y ? r : { x: +rd(e, ["x", "cx", "x1"]) || 0, y: +rd(e, ["y", "cy", "y1"]) || 0, width: 0, height: 0 } } function td(t) { return !(!t.getCTM || t.parentNode && !t.ownerSVGElement || !sd(t)) } function ud(t, e) { if (e) { var r = t.style; e in Se && e !== Ye && (e = qe), r.removeProperty ? ("ms" !== e.substr(0, 2) && "webkit" !== e.substr(0, 6) || (e = "-" + e), r.removeProperty(e.replace(Le, "-$1").toLowerCase())) : r.removeAttribute(e) } } function vd(t, e, r, i, n, a) { var s = new ie(t._pt, e, r, 0, 1, a ? bd : ad); return (t._pt = s).b = i, s.e = n, t._props.push(r), s } function xd(t, e, r, i) { var n, a, s, o, u = parseFloat(r) || 0, h = (r + "").trim().substr((u + "").length) || "px", l = le.style, f = Re.test(e), d = "svg" === t.tagName.toLowerCase(), c = (d ? "client" : "offset") + (f ? "Width" : "Height"), p = "px" === i, m = "%" === i; return i === h || !u || je[i] || je[h] ? u : ("px" === h || p || (u = xd(t, e, r, "px")), o = t.getCTM && td(t), !m && "%" !== h || !Se[e] && !~e.indexOf("adius") ? (l[f ? "width" : "height"] = 100 + (p ? h : i), a = ~e.indexOf("adius") || "em" === i && t.appendChild && !d ? t : t.parentNode, o && (a = (t.ownerSVGElement || {}).parentNode), a && a !== oe && a.appendChild || (a = oe.body), (s = a._gsap) && m && s.width && f && s.time === Pt.time ? ca(u / s.width * 100) : (!m && "%" !== h || (l.position = md(t, "position")), a === t && (l.position = "static"), a.appendChild(le), n = le[c], a.removeChild(le), l.position = "absolute", f && m && ((s = _(a)).time = Pt.time, s.width = a[c]), ca(p ? n * u / 100 : n && u ? 100 / n * u : 0))) : (n = o ? t.getBBox()[f ? "width" : "height"] : t[c], ca(m ? u / n * 100 : u / 100 * n))) } function yd(t, e, r, i) { var n; return he || pd(), e in Be && "transform" !== e && ~(e = Be[e]).indexOf(",") && (e = e.split(",")[0]), Se[e] && "transform" !== e ? (n = Je(t, i), n = "transformOrigin" !== e ? n[e] : We(md(t, Ye)) + " " + n.zOrigin + "px") : (n = t.style[e]) && "auto" !== n && !i && !~(n + "").indexOf("calc(") || (n = Ve[e] && Ve[e](t, e, r) || md(t, e) || aa(t, e) || ("opacity" === e ? 1 : 0)), r && !~(n + "").trim().indexOf(" ") ? xd(t, e, n, r) + r : n } function zd(t, e, r, i) { if (!r || "none" === r) { var n = Ue(e, t, 1), a = n && md(t, n, 1); a && a !== r ? (e = n, r = a) : "borderColor" === e && (r = md(t, "borderTopColor")) } var s, o, u, h, l, f, d, c, p, _, m, g, v = new ie(this._pt, t.style, e, 0, 1, Zt), y = 0, b = 0; if (v.b = r, v.e = i, r += "", "auto" === (i += "") && (t.style[e] = i, i = md(t, e) || i, t.style[e] = r), tb(s = [r, i]), i = s[1], u = (r = s[0]).match(rt) || [], (i.match(rt) || []).length) { for (; o = rt.exec(i);)d = o[0], p = i.substring(y, o.index), l ? l = (l + 1) % 5 : "rgba(" !== p.substr(-5) && "hsla(" !== p.substr(-5) || (l = 1), d !== (f = u[b++] || "") && (h = parseFloat(f) || 0, m = f.substr((h + "").length), (g = "=" === d.charAt(1) ? +(d.charAt(0) + "1") : 0) && (d = d.substr(2)), c = parseFloat(d), _ = d.substr((c + "").length), y = rt.lastIndex - _.length, _ || (_ = _ || Y.units[e] || m, y === i.length && (i += _, v.e += _)), m !== _ && (h = xd(t, e, f, _) || 0), v._pt = { _next: v._pt, p: p || 1 === b ? p : ",", s: h, c: g ? g * c : c - h, m: l && l < 4 || "zIndex" === e ? Math.round : 0 }); v.c = y < i.length ? i.substring(y, i.length) : "" } else v.r = "display" === e && "none" === i ? bd : ad; return nt.test(i) && (v.e = 0), this._pt = v } function Bd(t) { var e = t.split(" "), r = e[0], i = e[1] || "50%"; return "top" !== r && "bottom" !== r && "left" !== i && "right" !== i || (t = r, r = i, i = t), e[0] = Xe[r] || r, e[1] = Xe[i] || i, e.join(" ") } function Cd(t, e) { if (e.tween && e.tween._time === e.tween._dur) { var r, i, n, a = e.t, s = a.style, o = e.u, u = a._gsap; if ("all" === o || !0 === o) s.cssText = "", i = 1; else for (n = (o = o.split(",")).length; -1 < --n;)r = o[n], Se[r] && (i = 1, r = "transformOrigin" === r ? Ye : qe), ud(a, r); i && (ud(a, qe), u && (u.svg && a.removeAttribute("transform"), Je(a, 1), u.uncache = 1)) } } function Gd(t) { return "matrix(1, 0, 0, 1, 0, 0)" === t || "none" === t || !t } function Hd(t) { var e = md(t, qe); return Gd(e) ? Ge : e.substr(7).match(et).map(ca) } function Id(t, e) { var r, i, n, a, s = t._gsap || _(t), o = t.style, u = Hd(t); return s.svg && t.getAttribute("transform") ? "1,0,0,1,0,0" === (u = [(n = t.transform.baseVal.consolidate().matrix).a, n.b, n.c, n.d, n.e, n.f]).join(",") ? Ge : u : (u !== Ge || t.offsetParent || t === ue || s.svg || (n = o.display, o.display = "block", (r = t.parentNode) && t.offsetParent || (a = 1, i = t.nextSibling, ue.appendChild(t)), u = Hd(t), n ? o.display = n : ud(t, "display"), a && (i ? r.insertBefore(t, i) : r ? r.appendChild(t) : ue.removeChild(t))), e && 6 < u.length ? [u[0], u[1], u[4], u[5], u[12], u[13]] : u) } function Jd(t, e, r, i, n, a) { var s, o, u, h = t._gsap, l = n || Id(t, !0), f = h.xOrigin || 0, d = h.yOrigin || 0, c = h.xOffset || 0, p = h.yOffset || 0, _ = l[0], m = l[1], g = l[2], v = l[3], y = l[4], b = l[5], T = e.split(" "), w = parseFloat(T[0]) || 0, x = parseFloat(T[1]) || 0; r ? l !== Ge && (o = _ * v - m * g) && (u = w * (-m / o) + x * (_ / o) - (_ * b - m * y) / o, w = w * (v / o) + x * (-g / o) + (g * b - v * y) / o, x = u) : (w = (s = sd(t)).x + (~T[0].indexOf("%") ? w / 100 * s.width : w), x = s.y + (~(T[1] || T[0]).indexOf("%") ? x / 100 * s.height : x)), i || !1 !== i && h.smooth ? (y = w - f, b = x - d, h.xOffset = c + (y * _ + b * g) - y, h.yOffset = p + (y * m + b * v) - b) : h.xOffset = h.yOffset = 0, h.xOrigin = w, h.yOrigin = x, h.smooth = !!i, h.origin = e, h.originIsAbsolute = !!r, t.style[Ye] = "0px 0px", a && (vd(a, h, "xOrigin", f, w), vd(a, h, "yOrigin", d, x), vd(a, h, "xOffset", c, h.xOffset), vd(a, h, "yOffset", p, h.yOffset)), t.setAttribute("data-svg-origin", w + " " + x) } function Md(t, e, r) { var i = Oa(e); return ca(parseFloat(e) + parseFloat(xd(t, "x", r + "px", i))) + i } function Td(t, e, r, i, n, a) { var s, u, h = 360, l = o(n), f = parseFloat(n) * (l && ~n.indexOf("rad") ? ze : 1), d = a ? f * a : f - i, c = i + d + "deg"; return l && ("short" === (s = n.split("_")[1]) && (d %= h) !== d % 180 && (d += d < 0 ? h : -h), "cw" === s && d < 0 ? d = (d + 36e9) % h - ~~(d / h) * h : "ccw" === s && 0 < d && (d = (d - 36e9) % h - ~~(d / h) * h)), t._pt = u = new ie(t._pt, e, r, i, d, Zc), u.e = c, u.u = "deg", t._props.push(r), u } function Ud(t, e) { for (var r in e) t[r] = e[r]; return t } function Vd(t, e, r) { var i, n, a, s, o, u, h, l = Ud({}, r._gsap), f = r.style; for (n in l.svg ? (a = r.getAttribute("transform"), r.setAttribute("transform", ""), f[qe] = e, i = Je(r, 1), ud(r, qe), r.setAttribute("transform", a)) : (a = getComputedStyle(r)[qe], f[qe] = e, i = Je(r, 1), f[qe] = a), Se) (a = l[n]) !== (s = i[n]) && "perspective,force3D,transformOrigin,svgOrigin".indexOf(n) < 0 && (o = Oa(a) !== (h = Oa(s)) ? xd(r, n, a, h) : parseFloat(a), u = parseFloat(s), t._pt = new ie(t._pt, i, n, o, u - o, Yc), t._pt.u = h || 0, t._props.push(n)); Ud(i, l) } var se, oe, ue, he, le, fe, de, ce = Dt.Power0, pe = Dt.Power1, _e = Dt.Power2, me = Dt.Power3, ge = Dt.Power4, ve = Dt.Linear, ye = Dt.Quad, be = Dt.Cubic, Te = Dt.Quart, we = Dt.Quint, xe = Dt.Strong, Oe = Dt.Elastic, Me = Dt.Back, ke = Dt.SteppedEase, Ce = Dt.Bounce, Pe = Dt.Sine, Ae = Dt.Expo, De = Dt.Circ, Se = {}, ze = 180 / Math.PI, Ie = Math.PI / 180, Ee = Math.atan2, Le = /([A-Z])/g, Re = /(?:left|right|width|margin|padding|x)/i, Fe = /[\s,\(]\S/, Be = { autoAlpha: "opacity,visibility", scale: "scaleX,scaleY", alpha: "opacity" }, qe = "transform", Ye = qe + "Origin", Ne = "O,Moz,ms,Ms,Webkit".split(","), Ue = function _checkPropPrefix(t, e, r) { var i = (e || le).style, n = 5; if (t in i && !r) return t; for (t = t.charAt(0).toUpperCase() + t.substr(1); n-- && !(Ne[n] + t in i);); return n < 0 ? null : (3 === n ? "ms" : 0 <= n ? Ne[n] : "") + t }, je = { deg: 1, rad: 1, turn: 1 }, Xe = { top: "0%", bottom: "100%", left: "0%", right: "100%", center: "50%" }, Ve = { clearProps: function clearProps(t, e, r, i, n) { if ("isFromStart" !== n.data) { var a = t._pt = new ie(t._pt, e, r, 0, 0, Cd); return a.u = i, a.pr = -10, a.tween = n, t._props.push(r), 1 } } }, Ge = [1, 0, 0, 1, 0, 0], Qe = {}, Je = function _parseTransform(t, e) { var r = t._gsap || new Rt(t); if ("x" in r && !e && !r.uncache) return r; var i, n, a, s, o, u, h, l, f, d, c, p, _, m, g, v, y, b, T, w, x, O, M, k, C, P, A, D, S, z, I, E, L = t.style, R = r.scaleX < 0, F = "deg", B = md(t, Ye) || "0"; return i = n = a = u = h = l = f = d = c = 0, s = o = 1, r.svg = !(!t.getCTM || !td(t)), m = Id(t, r.svg), r.svg && (k = !r.uncache && !e && t.getAttribute("data-svg-origin"), Jd(t, k || B, !!k || r.originIsAbsolute, !1 !== r.smooth, m)), p = r.xOrigin || 0, _ = r.yOrigin || 0, m !== Ge && (b = m[0], T = m[1], w = m[2], x = m[3], i = O = m[4], n = M = m[5], 6 === m.length ? (s = Math.sqrt(b * b + T * T), o = Math.sqrt(x * x + w * w), u = b || T ? Ee(T, b) * ze : 0, (f = w || x ? Ee(w, x) * ze + u : 0) && (o *= Math.abs(Math.cos(f * Ie))), r.svg && (i -= p - (p * b + _ * w), n -= _ - (p * T + _ * x))) : (E = m[6], z = m[7], A = m[8], D = m[9], S = m[10], I = m[11], i = m[12], n = m[13], a = m[14], h = (g = Ee(E, S)) * ze, g && (k = O * (v = Math.cos(-g)) + A * (y = Math.sin(-g)), C = M * v + D * y, P = E * v + S * y, A = O * -y + A * v, D = M * -y + D * v, S = E * -y + S * v, I = z * -y + I * v, O = k, M = C, E = P), l = (g = Ee(-w, S)) * ze, g && (v = Math.cos(-g), I = x * (y = Math.sin(-g)) + I * v, b = k = b * v - A * y, T = C = T * v - D * y, w = P = w * v - S * y), u = (g = Ee(T, b)) * ze, g && (k = b * (v = Math.cos(g)) + T * (y = Math.sin(g)), C = O * v + M * y, T = T * v - b * y, M = M * v - O * y, b = k, O = C), h && 359.9 < Math.abs(h) + Math.abs(u) && (h = u = 0, l = 180 - l), s = ca(Math.sqrt(b * b + T * T + w * w)), o = ca(Math.sqrt(M * M + E * E)), g = Ee(O, M), f = 2e-4 < Math.abs(g) ? g * ze : 0, c = I ? 1 / (I < 0 ? -I : I) : 0), r.svg && (k = t.getAttribute("transform"), r.forceCSS = t.setAttribute("transform", "") || !Gd(md(t, qe)), k && t.setAttribute("transform", k))), 90 < Math.abs(f) && Math.abs(f) < 270 && (R ? (s *= -1, f += u <= 0 ? 180 : -180, u += u <= 0 ? 180 : -180) : (o *= -1, f += f <= 0 ? 180 : -180)), r.x = i - ((r.xPercent = i && (r.xPercent || (Math.round(t.offsetWidth / 2) === Math.round(-i) ? -50 : 0))) ? t.offsetWidth * r.xPercent / 100 : 0) + "px", r.y = n - ((r.yPercent = n && (r.yPercent || (Math.round(t.offsetHeight / 2) === Math.round(-n) ? -50 : 0))) ? t.offsetHeight * r.yPercent / 100 : 0) + "px", r.z = a + "px", r.scaleX = ca(s), r.scaleY = ca(o), r.rotation = ca(u) + F, r.rotationX = ca(h) + F, r.rotationY = ca(l) + F, r.skewX = f + F, r.skewY = d + F, r.transformPerspective = c + "px", (r.zOrigin = parseFloat(B.split(" ")[2]) || 0) && (L[Ye] = We(B)), r.xOffset = r.yOffset = 0, r.force3D = Y.force3D, r.renderTransform = r.svg ? er : de ? tr : He, r.uncache = 0, r }, We = function _firstTwoOnly(t) { return (t = t.split(" "))[0] + " " + t[1] }, He = function _renderNon3DTransforms(t, e) { e.z = "0px", e.rotationY = e.rotationX = "0deg", e.force3D = 0, tr(t, e) }, $e = "0deg", Ze = "0px", Ke = ") ", tr = function _renderCSSTransforms(t, e) { var r = e || this, i = r.xPercent, n = r.yPercent, a = r.x, s = r.y, o = r.z, u = r.rotation, h = r.rotationY, l = r.rotationX, f = r.skewX, d = r.skewY, c = r.scaleX, p = r.scaleY, _ = r.transformPerspective, m = r.force3D, g = r.target, v = r.zOrigin, y = "", b = "auto" === m && t && 1 !== t || !0 === m; if (v && (l !== $e || h !== $e)) { var T, w = parseFloat(h) * Ie, x = Math.sin(w), O = Math.cos(w); w = parseFloat(l) * Ie, T = Math.cos(w), a = Md(g, a, x * T * -v), s = Md(g, s, -Math.sin(w) * -v), o = Md(g, o, O * T * -v + v) } _ !== Ze && (y += "perspective(" + _ + Ke), (i || n) && (y += "translate(" + i + "%, " + n + "%) "), !b && a === Ze && s === Ze && o === Ze || (y += o !== Ze || b ? "translate3d(" + a + ", " + s + ", " + o + ") " : "translate(" + a + ", " + s + Ke), u !== $e && (y += "rotate(" + u + Ke), h !== $e && (y += "rotateY(" + h + Ke), l !== $e && (y += "rotateX(" + l + Ke), f === $e && d === $e || (y += "skew(" + f + ", " + d + Ke), 1 === c && 1 === p || (y += "scale(" + c + ", " + p + Ke), g.style[qe] = y || "translate(0, 0)" }, er = function _renderSVGTransforms(t, e) { var r, i, n, a, s, o = e || this, u = o.xPercent, h = o.yPercent, l = o.x, f = o.y, d = o.rotation, c = o.skewX, p = o.skewY, _ = o.scaleX, m = o.scaleY, g = o.target, v = o.xOrigin, y = o.yOrigin, b = o.xOffset, T = o.yOffset, w = o.forceCSS, x = parseFloat(l), O = parseFloat(f); d = parseFloat(d), c = parseFloat(c), (p = parseFloat(p)) && (c += p = parseFloat(p), d += p), d || c ? (d *= Ie, c *= Ie, r = Math.cos(d) * _, i = Math.sin(d) * _, n = Math.sin(d - c) * -m, a = Math.cos(d - c) * m, c && (p *= Ie, s = Math.tan(c - p), n *= s = Math.sqrt(1 + s * s), a *= s, p && (s = Math.tan(p), r *= s = Math.sqrt(1 + s * s), i *= s)), r = ca(r), i = ca(i), n = ca(n), a = ca(a)) : (r = _, a = m, i = n = 0), (x && !~(l + "").indexOf("px") || O && !~(f + "").indexOf("px")) && (x = xd(g, "x", l, "px"), O = xd(g, "y", f, "px")), (v || y || b || T) && (x = ca(x + v - (v * r + y * n) + b), O = ca(O + y - (v * i + y * a) + T)), (u || h) && (s = g.getBBox(), x = ca(x + u / 100 * s.width), O = ca(O + h / 100 * s.height)), s = "matrix(" + r + "," + i + "," + n + "," + a + "," + x + "," + O + ")", g.setAttribute("transform", s), w && (g.style[qe] = s) }; ba("padding,margin,Width,Radius", function (e, r) { var t = "Right", i = "Bottom", n = "Left", o = (r < 3 ? ["Top", t, i, n] : ["Top" + n, "Top" + t, i + t, i + n]).map(function (t) { return r < 2 ? e + t : "border" + t + e }); Ve[1 < r ? "border" + e : e] = function (e, t, r, i, n) { var a, s; if (arguments.length < 4) return a = o.map(function (t) { return yd(e, t, r) }), 5 === (s = a.join(" ")).split(a[0]).length ? a[0] : s; a = (i + "").split(" "), s = {}, o.forEach(function (t, e) { return s[t] = a[e] = a[e] || a[(e - 1) / 2 | 0] }), e.init(t, s, n) } }); var rr, ir, nr, ar = { name: "css", register: pd, targetTest: function targetTest(t) { return t.style && t.nodeType }, init: function init(t, e, r, i, n) { var a, s, o, u, h, l, f, d, c, p, _, m, g, v, y, b = this._props, T = t.style, w = r.vars.startAt; for (f in he || pd(), e) if ("autoRound" !== f && (s = e[f], !ft[f] || !Qb(f, e, r, i, t, n))) if (h = typeof s, l = Ve[f], "function" === h && (h = typeof (s = s.call(r, i, t, n))), "string" === h && ~s.indexOf("random(") && (s = db(s)), l) l(this, t, f, s, r) && (y = 1); else if ("--" === f.substr(0, 2)) a = (getComputedStyle(t).getPropertyValue(f) + "").trim(), s += "", kt.lastIndex = 0, kt.test(a) || (d = Oa(a), c = Oa(s)), c ? d !== c && (a = xd(t, f, a, c) + c) : d && (s += d), this.add(T, "setProperty", a, s, i, n, 0, 0, f); else if ("undefined" !== h) { if (w && f in w ? (a = "function" == typeof w[f] ? w[f].call(r, i, t, n) : w[f], f in Y.units && !Oa(a) && (a += Y.units[f]), "=" === (a + "").charAt(1) && (a = yd(t, f))) : a = yd(t, f), u = parseFloat(a), (p = "string" === h && "=" === s.charAt(1) ? +(s.charAt(0) + "1") : 0) && (s = s.substr(2)), o = parseFloat(s), f in Be && ("autoAlpha" === f && (1 === u && "hidden" === yd(t, "visibility") && o && (u = 0), vd(this, T, "visibility", u ? "inherit" : "hidden", o ? "inherit" : "hidden", !o)), "scale" !== f && "transform" !== f && ~(f = Be[f]).indexOf(",") && (f = f.split(",")[0])), _ = f in Se) if (m || ((g = t._gsap).renderTransform && !e.parseTransform || Je(t, e.parseTransform), v = !1 !== e.smoothOrigin && g.smooth, (m = this._pt = new ie(this._pt, T, qe, 0, 1, g.renderTransform, g, 0, -1)).dep = 1), "scale" === f) this._pt = new ie(this._pt, g, "scaleY", g.scaleY, p ? p * o : o - g.scaleY), b.push("scaleY", f), f += "X"; else { if ("transformOrigin" === f) { s = Bd(s), g.svg ? Jd(t, s, 0, v, 0, this) : ((c = parseFloat(s.split(" ")[2]) || 0) !== g.zOrigin && vd(this, g, "zOrigin", g.zOrigin, c), vd(this, T, f, We(a), We(s))); continue } if ("svgOrigin" === f) { Jd(t, s, 1, v, 0, this); continue } if (f in Qe) { Td(this, g, f, u, s, p); continue } if ("smoothOrigin" === f) { vd(this, g, "smooth", g.smooth, s); continue } if ("force3D" === f) { g[f] = s; continue } if ("transform" === f) { Vd(this, s, t); continue } } else f in T || (f = Ue(f) || f); if (_ || (o || 0 === o) && (u || 0 === u) && !Fe.test(s) && f in T) o = o || 0, (d = (a + "").substr((u + "").length)) !== (c = Oa(s) || (f in Y.units ? Y.units[f] : d)) && (u = xd(t, f, a, c)), this._pt = new ie(this._pt, _ ? g : T, f, u, p ? p * o : o - u, _ || "px" !== c && "zIndex" !== f || !1 === e.autoRound ? Yc : _c), this._pt.u = c || 0, d !== c && (this._pt.b = a, this._pt.r = $c); else if (f in T) zd.call(this, t, f, a, s); else { if (!(f in t)) { N(f, s); continue } this.add(t, f, t[f], s, i, n) } b.push(f) } y && re(this) }, get: yd, aliases: Be, getSetter: function getSetter(t, e, i) { var n = Be[e]; return n && n.indexOf(",") < 0 && (e = n), e in Se && e !== Ye && (t._gsap.x || yd(t, "x")) ? i && fe === i ? "scale" === e ? fd : ed : (fe = i || {}) && ("scale" === e ? gd : hd) : t.style && !r(t.style[e]) ? cd : ~e.indexOf("-") ? dd : Wt(t, e) }, core: { _removeProperty: ud, _getMatrix: Id } }; ae.utils.checkPrefix = Ue, nr = ba((rr = "x,y,z,scale,scaleX,scaleY,xPercent,yPercent") + "," + (ir = "rotation,rotationX,rotationY,skewX,skewY") + ",transform,transformOrigin,svgOrigin,force3D,smoothOrigin,transformPerspective", function (t) { Se[t] = 1 }), ba(ir, function (t) { Y.units[t] = "deg", Qe[t] = 1 }), Be[nr[13]] = rr + "," + ir, ba("0:translateX,1:translateY,2:translateZ,8:rotate,8:rotationZ,8:rotateZ,9:rotateX,10:rotateY", function (t) { var e = t.split(":"); Be[e[1]] = nr[e[0]] }), ba("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective", function (t) { Y.units[t] = "px" }), ae.registerPlugin(ar); var sr = ae.registerPlugin(ar) || ae, or = sr.core.Tween; e.Back = Me, e.Bounce = Ce, e.CSSPlugin = ar, e.Circ = De, e.Cubic = be, e.Elastic = Oe, e.Expo = Ae, e.Linear = ve, e.Power0 = ce, e.Power1 = pe, e.Power2 = _e, e.Power3 = me, e.Power4 = ge, e.Quad = ye, e.Quart = Te, e.Quint = we, e.Sine = Pe, e.SteppedEase = ke, e.Strong = xe, e.TimelineLite = Bt, e.TimelineMax = Bt, e.TweenLite = Vt, e.TweenMax = or, e.default = sr, e.gsap = sr; if (typeof (window) === "undefined" || window !== e) { Object.defineProperty(e, "__esModule", { value: !0 }) } else { delete e.default } });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * @author: Jack Doyle, jack@greensock.com
3
+ * @license Copyright (c) 2008-2018, GreenSock. All rights reserved.
4
+ **/
5
+
6
+ var _gsScope = "undefined" != typeof module && module.exports && "undefined" != typeof global ? global : this || window;
7
+ (_gsScope._gsQueue || (_gsScope._gsQueue = [])).push(function () {
8
+ "use strict";
9
+ _gsScope._gsDefine("TweenMax", ["core.Animation", "core.SimpleTimeline", "TweenLite"], function (a, b, c) {
10
+ var d = function (a) {
11
+ var b, c = [],
12
+ d = a.length;
13
+ for (b = 0; b !== d; c.push(a[b++]));
14
+ return c
15
+ },
16
+ e = function (a, b, c) {
17
+ var d, e, f = a.cycle;
18
+ for (d in f) e = f[d], a[d] = "function" == typeof e ? e(c, b[c]) : e[c % e.length];
19
+ delete a.cycle
20
+ },
21
+ f = function (a, b, d) {
22
+ c.call(this, a, b, d), this._cycle = 0, this._yoyo = this.vars.yoyo === !0 || !!this.vars.yoyoEase, this._repeat = this.vars.repeat || 0, this._repeatDelay = this.vars.repeatDelay || 0, this._repeat && this._uncache(!0), this.render = f.prototype.render
23
+ },
24
+ g = 1e-10,
25
+ h = c._internals,
26
+ i = h.isSelector,
27
+ j = h.isArray,
28
+ k = f.prototype = c.to({}, .1, {}),
29
+ l = [];
30
+ f.version = "1.20.4", k.constructor = f, k.kill()._gc = !1, f.killTweensOf = f.killDelayedCallsTo = c.killTweensOf, f.getTweensOf = c.getTweensOf, f.lagSmoothing = c.lagSmoothing, f.ticker = c.ticker, f.render = c.render, k.invalidate = function () {
31
+ return this._yoyo = this.vars.yoyo === !0 || !!this.vars.yoyoEase, this._repeat = this.vars.repeat || 0, this._repeatDelay = this.vars.repeatDelay || 0, this._yoyoEase = null, this._uncache(!0), c.prototype.invalidate.call(this)
32
+ }, k.updateTo = function (a, b) {
33
+ var d, e = this.ratio,
34
+ f = this.vars.immediateRender || a.immediateRender;
35
+ b && this._startTime < this._timeline._time && (this._startTime = this._timeline._time, this._uncache(!1), this._gc ? this._enabled(!0, !1) : this._timeline.insert(this, this._startTime - this._delay));
36
+ for (d in a) this.vars[d] = a[d];
37
+ if (this._initted || f)
38
+ if (b) this._initted = !1, f && this.render(0, !0, !0);
39
+ else if (this._gc && this._enabled(!0, !1), this._notifyPluginsOfEnabled && this._firstPT && c._onPluginEvent("_onDisable", this), this._time / this._duration > .998) {
40
+ var g = this._totalTime;
41
+ this.render(0, !0, !1), this._initted = !1, this.render(g, !0, !1)
42
+ } else if (this._initted = !1, this._init(), this._time > 0 || f)
43
+ for (var h, i = 1 / (1 - e), j = this._firstPT; j;) h = j.s + j.c, j.c *= i, j.s = h - j.c, j = j._next;
44
+ return this
45
+ }, k.render = function (a, b, d) {
46
+ this._initted || 0 === this._duration && this.vars.repeat && this.invalidate();
47
+ var e, f, i, j, k, l, m, n, o, p = this._dirty ? this.totalDuration() : this._totalDuration,
48
+ q = this._time,
49
+ r = this._totalTime,
50
+ s = this._cycle,
51
+ t = this._duration,
52
+ u = this._rawPrevTime;
53
+ if (a >= p - 1e-7 && a >= 0 ? (this._totalTime = p, this._cycle = this._repeat, this._yoyo && 0 !== (1 & this._cycle) ? (this._time = 0, this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0) : (this._time = t, this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1), this._reversed || (e = !0, f = "onComplete", d = d || this._timeline.autoRemoveChildren), 0 === t && (this._initted || !this.vars.lazy || d) && (this._startTime === this._timeline._duration && (a = 0), (0 > u || 0 >= a && a >= -1e-7 || u === g && "isPause" !== this.data) && u !== a && (d = !0, u > g && (f = "onReverseComplete")), this._rawPrevTime = n = !b || a || u === a ? a : g)) : 1e-7 > a ? (this._totalTime = this._time = this._cycle = 0, this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0, (0 !== r || 0 === t && u > 0) && (f = "onReverseComplete", e = this._reversed), 0 > a && (this._active = !1, 0 === t && (this._initted || !this.vars.lazy || d) && (u >= 0 && (d = !0), this._rawPrevTime = n = !b || a || u === a ? a : g)), this._initted || (d = !0)) : (this._totalTime = this._time = a, 0 !== this._repeat && (j = t + this._repeatDelay, this._cycle = this._totalTime / j >> 0, 0 !== this._cycle && this._cycle === this._totalTime / j && a >= r && this._cycle--, this._time = this._totalTime - this._cycle * j, this._yoyo && 0 !== (1 & this._cycle) && (this._time = t - this._time, o = this._yoyoEase || this.vars.yoyoEase, o && (this._yoyoEase || (o !== !0 || this._initted ? this._yoyoEase = o = o === !0 ? this._ease : o instanceof Ease ? o : Ease.map[o] : (o = this.vars.ease, this._yoyoEase = o = o ? o instanceof Ease ? o : "function" == typeof o ? new Ease(o, this.vars.easeParams) : Ease.map[o] || c.defaultEase : c.defaultEase)), this.ratio = o ? 1 - o.getRatio((t - this._time) / t) : 0)), this._time > t ? this._time = t : this._time < 0 && (this._time = 0)), this._easeType && !o ? (k = this._time / t, l = this._easeType, m = this._easePower, (1 === l || 3 === l && k >= .5) && (k = 1 - k), 3 === l && (k *= 2), 1 === m ? k *= k : 2 === m ? k *= k * k : 3 === m ? k *= k * k * k : 4 === m && (k *= k * k * k * k), 1 === l ? this.ratio = 1 - k : 2 === l ? this.ratio = k : this._time / t < .5 ? this.ratio = k / 2 : this.ratio = 1 - k / 2) : o || (this.ratio = this._ease.getRatio(this._time / t))), q === this._time && !d && s === this._cycle) return void (r !== this._totalTime && this._onUpdate && (b || this._callback("onUpdate")));
54
+ if (!this._initted) {
55
+ if (this._init(), !this._initted || this._gc) return;
56
+ if (!d && this._firstPT && (this.vars.lazy !== !1 && this._duration || this.vars.lazy && !this._duration)) return this._time = q, this._totalTime = r, this._rawPrevTime = u, this._cycle = s, h.lazyTweens.push(this), void (this._lazy = [a, b]);
57
+ !this._time || e || o ? e && this._ease._calcEnd && !o && (this.ratio = this._ease.getRatio(0 === this._time ? 0 : 1)) : this.ratio = this._ease.getRatio(this._time / t)
58
+ }
59
+ for (this._lazy !== !1 && (this._lazy = !1), this._active || !this._paused && this._time !== q && a >= 0 && (this._active = !0), 0 === r && (2 === this._initted && a > 0 && this._init(), this._startAt && (a >= 0 ? this._startAt.render(a, !0, d) : f || (f = "_dummyGS")), this.vars.onStart && (0 !== this._totalTime || 0 === t) && (b || this._callback("onStart"))), i = this._firstPT; i;) i.f ? i.t[i.p](i.c * this.ratio + i.s) : i.t[i.p] = i.c * this.ratio + i.s, i = i._next;
60
+ this._onUpdate && (0 > a && this._startAt && this._startTime && this._startAt.render(a, !0, d), b || (this._totalTime !== r || f) && this._callback("onUpdate")), this._cycle !== s && (b || this._gc || this.vars.onRepeat && this._callback("onRepeat")), f && (!this._gc || d) && (0 > a && this._startAt && !this._onUpdate && this._startTime && this._startAt.render(a, !0, d), e && (this._timeline.autoRemoveChildren && this._enabled(!1, !1), this._active = !1), !b && this.vars[f] && this._callback(f), 0 === t && this._rawPrevTime === g && n !== g && (this._rawPrevTime = 0))
61
+ }, f.to = function (a, b, c) {
62
+ return new f(a, b, c)
63
+ }, f.from = function (a, b, c) {
64
+ return c.runBackwards = !0, c.immediateRender = 0 != c.immediateRender, new f(a, b, c)
65
+ }, f.fromTo = function (a, b, c, d) {
66
+ return d.startAt = c, d.immediateRender = 0 != d.immediateRender && 0 != c.immediateRender, new f(a, b, d)
67
+ }, f.staggerTo = f.allTo = function (a, b, g, h, k, m, n) {
68
+ h = h || 0;
69
+ var o, p, q, r, s = 0,
70
+ t = [],
71
+ u = function () {
72
+ g.onComplete && g.onComplete.apply(g.onCompleteScope || this, arguments), k.apply(n || g.callbackScope || this, m || l)
73
+ },
74
+ v = g.cycle,
75
+ w = g.startAt && g.startAt.cycle;
76
+ for (j(a) || ("string" == typeof a && (a = c.selector(a) || a), i(a) && (a = d(a))), a = a || [], 0 > h && (a = d(a), a.reverse(), h *= -1), o = a.length - 1, q = 0; o >= q; q++) {
77
+ p = {};
78
+ for (r in g) p[r] = g[r];
79
+ if (v && (e(p, a, q), null != p.duration && (b = p.duration, delete p.duration)), w) {
80
+ w = p.startAt = {};
81
+ for (r in g.startAt) w[r] = g.startAt[r];
82
+ e(p.startAt, a, q)
83
+ }
84
+ p.delay = s + (p.delay || 0), q === o && k && (p.onComplete = u), t[q] = new f(a[q], b, p), s += h
85
+ }
86
+ return t
87
+ }, f.staggerFrom = f.allFrom = function (a, b, c, d, e, g, h) {
88
+ return c.runBackwards = !0, c.immediateRender = 0 != c.immediateRender, f.staggerTo(a, b, c, d, e, g, h)
89
+ }, f.staggerFromTo = f.allFromTo = function (a, b, c, d, e, g, h, i) {
90
+ return d.startAt = c, d.immediateRender = 0 != d.immediateRender && 0 != c.immediateRender, f.staggerTo(a, b, d, e, g, h, i)
91
+ }, f.delayedCall = function (a, b, c, d, e) {
92
+ return new f(b, 0, {
93
+ delay: a,
94
+ onComplete: b,
95
+ onCompleteParams: c,
96
+ callbackScope: d,
97
+ onReverseComplete: b,
98
+ onReverseCompleteParams: c,
99
+ immediateRender: !1,
100
+ useFrames: e,
101
+ overwrite: 0
102
+ })
103
+ }, f.set = function (a, b) {
104
+ return new f(a, 0, b)
105
+ }, f.isTweening = function (a) {
106
+ return c.getTweensOf(a, !0).length > 0
107
+ };
108
+ var m = function (a, b) {
109
+ for (var d = [], e = 0, f = a._first; f;) f instanceof c ? d[e++] = f : (b && (d[e++] = f), d = d.concat(m(f, b)), e = d.length), f = f._next;
110
+ return d
111
+ },
112
+ n = f.getAllTweens = function (b) {
113
+ return m(a._rootTimeline, b).concat(m(a._rootFramesTimeline, b))
114
+ };
115
+ f.killAll = function (a, c, d, e) {
116
+ null == c && (c = !0), null == d && (d = !0);
117
+ var f, g, h, i = n(0 != e),
118
+ j = i.length,
119
+ k = c && d && e;
120
+ for (h = 0; j > h; h++) g = i[h], (k || g instanceof b || (f = g.target === g.vars.onComplete) && d || c && !f) && (a ? g.totalTime(g._reversed ? 0 : g.totalDuration()) : g._enabled(!1, !1))
121
+ }, f.killChildTweensOf = function (a, b) {
122
+ if (null != a) {
123
+ var e, g, k, l, m, n = h.tweenLookup;
124
+ if ("string" == typeof a && (a = c.selector(a) || a), i(a) && (a = d(a)), j(a))
125
+ for (l = a.length; --l > -1;) f.killChildTweensOf(a[l], b);
126
+ else {
127
+ e = [];
128
+ for (k in n)
129
+ for (g = n[k].target.parentNode; g;) g === a && (e = e.concat(n[k].tweens)), g = g.parentNode;
130
+ for (m = e.length, l = 0; m > l; l++) b && e[l].totalTime(e[l].totalDuration()), e[l]._enabled(!1, !1)
131
+ }
132
+ }
133
+ };
134
+ var o = function (a, c, d, e) {
135
+ c = c !== !1, d = d !== !1, e = e !== !1;
136
+ for (var f, g, h = n(e), i = c && d && e, j = h.length; --j > -1;) g = h[j], (i || g instanceof b || (f = g.target === g.vars.onComplete) && d || c && !f) && g.paused(a)
137
+ };
138
+ return f.pauseAll = function (a, b, c) {
139
+ o(!0, a, b, c)
140
+ }, f.resumeAll = function (a, b, c) {
141
+ o(!1, a, b, c)
142
+ }, f.globalTimeScale = function (b) {
143
+ var d = a._rootTimeline,
144
+ e = c.ticker.time;
145
+ return arguments.length ? (b = b || g, d._startTime = e - (e - d._startTime) * d._timeScale / b, d = a._rootFramesTimeline, e = c.ticker.frame, d._startTime = e - (e - d._startTime) * d._timeScale / b, d._timeScale = a._rootTimeline._timeScale = b, b) : d._timeScale
146
+ }, k.progress = function (a, b) {
147
+ return arguments.length ? this.totalTime(this.duration() * (this._yoyo && 0 !== (1 & this._cycle) ? 1 - a : a) + this._cycle * (this._duration + this._repeatDelay), b) : this._time / this.duration()
148
+ }, k.totalProgress = function (a, b) {
149
+ return arguments.length ? this.totalTime(this.totalDuration() * a, b) : this._totalTime / this.totalDuration()
150
+ }, k.time = function (a, b) {
151
+ return arguments.length ? (this._dirty && this.totalDuration(), a > this._duration && (a = this._duration), this._yoyo && 0 !== (1 & this._cycle) ? a = this._duration - a + this._cycle * (this._duration + this._repeatDelay) : 0 !== this._repeat && (a += this._cycle * (this._duration + this._repeatDelay)), this.totalTime(a, b)) : this._time
152
+ }, k.duration = function (b) {
153
+ return arguments.length ? a.prototype.duration.call(this, b) : this._duration
154
+ }, k.totalDuration = function (a) {
155
+ return arguments.length ? -1 === this._repeat ? this : this.duration((a - this._repeat * this._repeatDelay) / (this._repeat + 1)) : (this._dirty && (this._totalDuration = -1 === this._repeat ? 999999999999 : this._duration * (this._repeat + 1) + this._repeatDelay * this._repeat, this._dirty = !1), this._totalDuration)
156
+ }, k.repeat = function (a) {
157
+ return arguments.length ? (this._repeat = a, this._uncache(!0)) : this._repeat
158
+ }, k.repeatDelay = function (a) {
159
+ return arguments.length ? (this._repeatDelay = a, this._uncache(!0)) : this._repeatDelay
160
+ }, k.yoyo = function (a) {
161
+ return arguments.length ? (this._yoyo = a, this) : this._yoyo
162
+ }, f
163
+ }, !0), _gsScope._gsDefine("TimelineLite", ["core.Animation", "core.SimpleTimeline", "TweenLite"], function (a, b, c) {
164
+ var d = function (a) {
165
+ b.call(this, a), this._labels = {}, this.autoRemoveChildren = this.vars.autoRemoveChildren === !0, this.smoothChildTiming = this.vars.smoothChildTiming === !0, this._sortChildren = !0, this._onUpdate = this.vars.onUpdate;
166
+ var c, d, e = this.vars;
167
+ for (d in e) c = e[d], i(c) && -1 !== c.join("").indexOf("{self}") && (e[d] = this._swapSelfInParams(c));
168
+ i(e.tweens) && this.add(e.tweens, 0, e.align, e.stagger)
169
+ },
170
+ e = 1e-10,
171
+ f = c._internals,
172
+ g = d._internals = {},
173
+ h = f.isSelector,
174
+ i = f.isArray,
175
+ j = f.lazyTweens,
176
+ k = f.lazyRender,
177
+ l = _gsScope._gsDefine.globals,
178
+ m = function (a) {
179
+ var b, c = {};
180
+ for (b in a) c[b] = a[b];
181
+ return c
182
+ },
183
+ n = function (a, b, c) {
184
+ var d, e, f = a.cycle;
185
+ for (d in f) e = f[d], a[d] = "function" == typeof e ? e(c, b[c]) : e[c % e.length];
186
+ delete a.cycle
187
+ },
188
+ o = g.pauseCallback = function () { },
189
+ p = function (a) {
190
+ var b, c = [],
191
+ d = a.length;
192
+ for (b = 0; b !== d; c.push(a[b++]));
193
+ return c
194
+ },
195
+ q = d.prototype = new b;
196
+ return d.version = "1.20.4", q.constructor = d, q.kill()._gc = q._forcingPlayhead = q._hasPause = !1, q.to = function (a, b, d, e) {
197
+ var f = d.repeat && l.TweenMax || c;
198
+ return b ? this.add(new f(a, b, d), e) : this.set(a, d, e)
199
+ }, q.from = function (a, b, d, e) {
200
+ return this.add((d.repeat && l.TweenMax || c).from(a, b, d), e)
201
+ }, q.fromTo = function (a, b, d, e, f) {
202
+ var g = e.repeat && l.TweenMax || c;
203
+ return b ? this.add(g.fromTo(a, b, d, e), f) : this.set(a, e, f)
204
+ }, q.staggerTo = function (a, b, e, f, g, i, j, k) {
205
+ var l, o, q = new d({
206
+ onComplete: i,
207
+ onCompleteParams: j,
208
+ callbackScope: k,
209
+ smoothChildTiming: this.smoothChildTiming
210
+ }),
211
+ r = e.cycle;
212
+ for ("string" == typeof a && (a = c.selector(a) || a), a = a || [], h(a) && (a = p(a)), f = f || 0, 0 > f && (a = p(a), a.reverse(), f *= -1), o = 0; o < a.length; o++) l = m(e), l.startAt && (l.startAt = m(l.startAt), l.startAt.cycle && n(l.startAt, a, o)), r && (n(l, a, o), null != l.duration && (b = l.duration, delete l.duration)), q.to(a[o], b, l, o * f);
213
+ return this.add(q, g)
214
+ }, q.staggerFrom = function (a, b, c, d, e, f, g, h) {
215
+ return c.immediateRender = 0 != c.immediateRender, c.runBackwards = !0, this.staggerTo(a, b, c, d, e, f, g, h)
216
+ }, q.staggerFromTo = function (a, b, c, d, e, f, g, h, i) {
217
+ return d.startAt = c, d.immediateRender = 0 != d.immediateRender && 0 != c.immediateRender, this.staggerTo(a, b, d, e, f, g, h, i)
218
+ }, q.call = function (a, b, d, e) {
219
+ return this.add(c.delayedCall(0, a, b, d), e)
220
+ }, q.set = function (a, b, d) {
221
+ return d = this._parseTimeOrLabel(d, 0, !0), null == b.immediateRender && (b.immediateRender = d === this._time && !this._paused), this.add(new c(a, 0, b), d)
222
+ }, d.exportRoot = function (a, b) {
223
+ a = a || {}, null == a.smoothChildTiming && (a.smoothChildTiming = !0);
224
+ var e, f, g, h, i = new d(a),
225
+ j = i._timeline;
226
+ for (null == b && (b = !0), j._remove(i, !0), i._startTime = 0, i._rawPrevTime = i._time = i._totalTime = j._time, g = j._first; g;) h = g._next, b && g instanceof c && g.target === g.vars.onComplete || (f = g._startTime - g._delay, 0 > f && (e = 1), i.add(g, f)), g = h;
227
+ return j.add(i, 0), e && i.totalDuration(), i
228
+ }, q.add = function (e, f, g, h) {
229
+ var j, k, l, m, n, o;
230
+ if ("number" != typeof f && (f = this._parseTimeOrLabel(f, 0, !0, e)), !(e instanceof a)) {
231
+ if (e instanceof Array || e && e.push && i(e)) {
232
+ for (g = g || "normal", h = h || 0, j = f, k = e.length, l = 0; k > l; l++) i(m = e[l]) && (m = new d({
233
+ tweens: m
234
+ })), this.add(m, j), "string" != typeof m && "function" != typeof m && ("sequence" === g ? j = m._startTime + m.totalDuration() / m._timeScale : "start" === g && (m._startTime -= m.delay())), j += h;
235
+ return this._uncache(!0)
236
+ }
237
+ if ("string" == typeof e) return this.addLabel(e, f);
238
+ if ("function" != typeof e) throw "Cannot add " + e + " into the timeline; it is not a tween, timeline, function, or string.";
239
+ e = c.delayedCall(0, e)
240
+ }
241
+ if (b.prototype.add.call(this, e, f), e._time && e.render((this.rawTime() - e._startTime) * e._timeScale, !1, !1), (this._gc || this._time === this._duration) && !this._paused && this._duration < this.duration())
242
+ for (n = this, o = n.rawTime() > e._startTime; n._timeline;) o && n._timeline.smoothChildTiming ? n.totalTime(n._totalTime, !0) : n._gc && n._enabled(!0, !1), n = n._timeline;
243
+ return this
244
+ }, q.remove = function (b) {
245
+ if (b instanceof a) {
246
+ this._remove(b, !1);
247
+ var c = b._timeline = b.vars.useFrames ? a._rootFramesTimeline : a._rootTimeline;
248
+ return b._startTime = (b._paused ? b._pauseTime : c._time) - (b._reversed ? b.totalDuration() - b._totalTime : b._totalTime) / b._timeScale, this
249
+ }
250
+ if (b instanceof Array || b && b.push && i(b)) {
251
+ for (var d = b.length; --d > -1;) this.remove(b[d]);
252
+ return this
253
+ }
254
+ return "string" == typeof b ? this.removeLabel(b) : this.kill(null, b)
255
+ }, q._remove = function (a, c) {
256
+ b.prototype._remove.call(this, a, c);
257
+ var d = this._last;
258
+ return d ? this._time > this.duration() && (this._time = this._duration, this._totalTime = this._totalDuration) : this._time = this._totalTime = this._duration = this._totalDuration = 0, this
259
+ }, q.append = function (a, b) {
260
+ return this.add(a, this._parseTimeOrLabel(null, b, !0, a))
261
+ }, q.insert = q.insertMultiple = function (a, b, c, d) {
262
+ return this.add(a, b || 0, c, d)
263
+ }, q.appendMultiple = function (a, b, c, d) {
264
+ return this.add(a, this._parseTimeOrLabel(null, b, !0, a), c, d)
265
+ }, q.addLabel = function (a, b) {
266
+ return this._labels[a] = this._parseTimeOrLabel(b), this
267
+ }, q.addPause = function (a, b, d, e) {
268
+ var f = c.delayedCall(0, o, d, e || this);
269
+ return f.vars.onComplete = f.vars.onReverseComplete = b, f.data = "isPause", this._hasPause = !0, this.add(f, a)
270
+ }, q.removeLabel = function (a) {
271
+ return delete this._labels[a], this
272
+ }, q.getLabelTime = function (a) {
273
+ return null != this._labels[a] ? this._labels[a] : -1
274
+ }, q._parseTimeOrLabel = function (b, c, d, e) {
275
+ var f, g;
276
+ if (e instanceof a && e.timeline === this) this.remove(e);
277
+ else if (e && (e instanceof Array || e.push && i(e)))
278
+ for (g = e.length; --g > -1;) e[g] instanceof a && e[g].timeline === this && this.remove(e[g]);
279
+ if (f = "number" != typeof b || c ? this.duration() > 99999999999 ? this.recent().endTime(!1) : this._duration : 0, "string" == typeof c) return this._parseTimeOrLabel(c, d && "number" == typeof b && null == this._labels[c] ? b - f : 0, d);
280
+ if (c = c || 0, "string" != typeof b || !isNaN(b) && null == this._labels[b]) null == b && (b = f);
281
+ else {
282
+ if (g = b.indexOf("="), -1 === g) return null == this._labels[b] ? d ? this._labels[b] = f + c : c : this._labels[b] + c;
283
+ c = parseInt(b.charAt(g - 1) + "1", 10) * Number(b.substr(g + 1)), b = g > 1 ? this._parseTimeOrLabel(b.substr(0, g - 1), 0, d) : f
284
+ }
285
+ return Number(b) + c
286
+ }, q.seek = function (a, b) {
287
+ return this.totalTime("number" == typeof a ? a : this._parseTimeOrLabel(a), b !== !1)
288
+ }, q.stop = function () {
289
+ return this.paused(!0)
290
+ }, q.gotoAndPlay = function (a, b) {
291
+ return this.play(a, b)
292
+ }, q.gotoAndStop = function (a, b) {
293
+ return this.pause(a, b)
294
+ }, q.render = function (a, b, c) {
295
+ this._gc && this._enabled(!0, !1);
296
+ var d, f, g, h, i, l, m, n = this._time,
297
+ o = this._dirty ? this.totalDuration() : this._totalDuration,
298
+ p = this._startTime,
299
+ q = this._timeScale,
300
+ r = this._paused;
301
+ if (n !== this._time && (a += this._time - n), a >= o - 1e-7 && a >= 0) this._totalTime = this._time = o, this._reversed || this._hasPausedChild() || (f = !0, h = "onComplete", i = !!this._timeline.autoRemoveChildren, 0 === this._duration && (0 >= a && a >= -1e-7 || this._rawPrevTime < 0 || this._rawPrevTime === e) && this._rawPrevTime !== a && this._first && (i = !0, this._rawPrevTime > e && (h = "onReverseComplete"))), this._rawPrevTime = this._duration || !b || a || this._rawPrevTime === a ? a : e, a = o + 1e-4;
302
+ else if (1e-7 > a)
303
+ if (this._totalTime = this._time = 0, (0 !== n || 0 === this._duration && this._rawPrevTime !== e && (this._rawPrevTime > 0 || 0 > a && this._rawPrevTime >= 0)) && (h = "onReverseComplete", f = this._reversed), 0 > a) this._active = !1, this._timeline.autoRemoveChildren && this._reversed ? (i = f = !0, h = "onReverseComplete") : this._rawPrevTime >= 0 && this._first && (i = !0), this._rawPrevTime = a;
304
+ else {
305
+ if (this._rawPrevTime = this._duration || !b || a || this._rawPrevTime === a ? a : e, 0 === a && f)
306
+ for (d = this._first; d && 0 === d._startTime;) d._duration || (f = !1), d = d._next;
307
+ a = 0, this._initted || (i = !0)
308
+ }
309
+ else {
310
+ if (this._hasPause && !this._forcingPlayhead && !b) {
311
+ if (a >= n)
312
+ for (d = this._first; d && d._startTime <= a && !l;) d._duration || "isPause" !== d.data || d.ratio || 0 === d._startTime && 0 === this._rawPrevTime || (l = d), d = d._next;
313
+ else
314
+ for (d = this._last; d && d._startTime >= a && !l;) d._duration || "isPause" === d.data && d._rawPrevTime > 0 && (l = d), d = d._prev;
315
+ l && (this._time = a = l._startTime, this._totalTime = a + this._cycle * (this._totalDuration + this._repeatDelay))
316
+ }
317
+ this._totalTime = this._time = this._rawPrevTime = a
318
+ }
319
+ if (this._time !== n && this._first || c || i || l) {
320
+ if (this._initted || (this._initted = !0), this._active || !this._paused && this._time !== n && a > 0 && (this._active = !0), 0 === n && this.vars.onStart && (0 === this._time && this._duration || b || this._callback("onStart")), m = this._time, m >= n)
321
+ for (d = this._first; d && (g = d._next, m === this._time && (!this._paused || r));)(d._active || d._startTime <= m && !d._paused && !d._gc) && (l === d && this.pause(), d._reversed ? d.render((d._dirty ? d.totalDuration() : d._totalDuration) - (a - d._startTime) * d._timeScale, b, c) : d.render((a - d._startTime) * d._timeScale, b, c)), d = g;
322
+ else
323
+ for (d = this._last; d && (g = d._prev, m === this._time && (!this._paused || r));) {
324
+ if (d._active || d._startTime <= n && !d._paused && !d._gc) {
325
+ if (l === d) {
326
+ for (l = d._prev; l && l.endTime() > this._time;) l.render(l._reversed ? l.totalDuration() - (a - l._startTime) * l._timeScale : (a - l._startTime) * l._timeScale, b, c), l = l._prev;
327
+ l = null, this.pause()
328
+ }
329
+ d._reversed ? d.render((d._dirty ? d.totalDuration() : d._totalDuration) - (a - d._startTime) * d._timeScale, b, c) : d.render((a - d._startTime) * d._timeScale, b, c)
330
+ }
331
+ d = g
332
+ }
333
+ this._onUpdate && (b || (j.length && k(), this._callback("onUpdate"))), h && (this._gc || (p === this._startTime || q !== this._timeScale) && (0 === this._time || o >= this.totalDuration()) && (f && (j.length && k(), this._timeline.autoRemoveChildren && this._enabled(!1, !1), this._active = !1), !b && this.vars[h] && this._callback(h)))
334
+ }
335
+ }, q._hasPausedChild = function () {
336
+ for (var a = this._first; a;) {
337
+ if (a._paused || a instanceof d && a._hasPausedChild()) return !0;
338
+ a = a._next
339
+ }
340
+ return !1
341
+ }, q.getChildren = function (a, b, d, e) {
342
+ e = e || -9999999999;
343
+ for (var f = [], g = this._first, h = 0; g;) g._startTime < e || (g instanceof c ? b !== !1 && (f[h++] = g) : (d !== !1 && (f[h++] = g), a !== !1 && (f = f.concat(g.getChildren(!0, b, d)), h = f.length))), g = g._next;
344
+ return f
345
+ }, q.getTweensOf = function (a, b) {
346
+ var d, e, f = this._gc,
347
+ g = [],
348
+ h = 0;
349
+ for (f && this._enabled(!0, !0), d = c.getTweensOf(a), e = d.length; --e > -1;)(d[e].timeline === this || b && this._contains(d[e])) && (g[h++] = d[e]);
350
+ return f && this._enabled(!1, !0), g
351
+ }, q.recent = function () {
352
+ return this._recent
353
+ }, q._contains = function (a) {
354
+ for (var b = a.timeline; b;) {
355
+ if (b === this) return !0;
356
+ b = b.timeline
357
+ }
358
+ return !1
359
+ }, q.shiftChildren = function (a, b, c) {
360
+ c = c || 0;
361
+ for (var d, e = this._first, f = this._labels; e;) e._startTime >= c && (e._startTime += a), e = e._next;
362
+ if (b)
363
+ for (d in f) f[d] >= c && (f[d] += a);
364
+ return this._uncache(!0)
365
+ }, q._kill = function (a, b) {
366
+ if (!a && !b) return this._enabled(!1, !1);
367
+ for (var c = b ? this.getTweensOf(b) : this.getChildren(!0, !0, !1), d = c.length, e = !1; --d > -1;) c[d]._kill(a, b) && (e = !0);
368
+ return e
369
+ }, q.clear = function (a) {
370
+ var b = this.getChildren(!1, !0, !0),
371
+ c = b.length;
372
+ for (this._time = this._totalTime = 0; --c > -1;) b[c]._enabled(!1, !1);
373
+ return a !== !1 && (this._labels = {}), this._uncache(!0)
374
+ }, q.invalidate = function () {
375
+ for (var b = this._first; b;) b.invalidate(), b = b._next;
376
+ return a.prototype.invalidate.call(this)
377
+ }, q._enabled = function (a, c) {
378
+ if (a === this._gc)
379
+ for (var d = this._first; d;) d._enabled(a, !0), d = d._next;
380
+ return b.prototype._enabled.call(this, a, c)
381
+ }, q.totalTime = function (b, c, d) {
382
+ this._forcingPlayhead = !0;
383
+ var e = a.prototype.totalTime.apply(this, arguments);
384
+ return this._forcingPlayhead = !1, e
385
+ }, q.duration = function (a) {
386
+ return arguments.length ? (0 !== this.duration() && 0 !== a && this.timeScale(this._duration / a), this) : (this._dirty && this.totalDuration(), this._duration)
387
+ }, q.totalDuration = function (a) {
388
+ if (!arguments.length) {
389
+ if (this._dirty) {
390
+ for (var b, c, d = 0, e = this._last, f = 999999999999; e;) b = e._prev, e._dirty && e.totalDuration(), e._startTime > f && this._sortChildren && !e._paused && !this._calculatingDuration ? (this._calculatingDuration = 1, this.add(e, e._startTime - e._delay), this._calculatingDuration = 0) : f = e._startTime, e._startTime < 0 && !e._paused && (d -= e._startTime, this._timeline.smoothChildTiming && (this._startTime += e._startTime / this._timeScale, this._time -= e._startTime, this._totalTime -= e._startTime, this._rawPrevTime -= e._startTime), this.shiftChildren(-e._startTime, !1, -9999999999), f = 0), c = e._startTime + e._totalDuration / e._timeScale, c > d && (d = c), e = b;
391
+ this._duration = this._totalDuration = d, this._dirty = !1
392
+ }
393
+ return this._totalDuration
394
+ }
395
+ return a && this.totalDuration() ? this.timeScale(this._totalDuration / a) : this
396
+ }, q.paused = function (b) {
397
+ if (!b)
398
+ for (var c = this._first, d = this._time; c;) c._startTime === d && "isPause" === c.data && (c._rawPrevTime = 0), c = c._next;
399
+ return a.prototype.paused.apply(this, arguments)
400
+ }, q.usesFrames = function () {
401
+ for (var b = this._timeline; b._timeline;) b = b._timeline;
402
+ return b === a._rootFramesTimeline
403
+ }, q.rawTime = function (a) {
404
+ return a && (this._paused || this._repeat && this.time() > 0 && this.totalProgress() < 1) ? this._totalTime % (this._duration + this._repeatDelay) : this._paused ? this._totalTime : (this._timeline.rawTime(a) - this._startTime) * this._timeScale
405
+ }, d
406
+ }, !0), _gsScope._gsDefine("TimelineMax", ["TimelineLite", "TweenLite", "easing.Ease"], function (a, b, c) {
407
+ var d = function (b) {
408
+ a.call(this, b), this._repeat = this.vars.repeat || 0, this._repeatDelay = this.vars.repeatDelay || 0, this._cycle = 0, this._yoyo = this.vars.yoyo === !0, this._dirty = !0
409
+ },
410
+ e = 1e-10,
411
+ f = b._internals,
412
+ g = f.lazyTweens,
413
+ h = f.lazyRender,
414
+ i = _gsScope._gsDefine.globals,
415
+ j = new c(null, null, 1, 0),
416
+ k = d.prototype = new a;
417
+ return k.constructor = d, k.kill()._gc = !1, d.version = "1.20.4", k.invalidate = function () {
418
+ return this._yoyo = this.vars.yoyo === !0, this._repeat = this.vars.repeat || 0, this._repeatDelay = this.vars.repeatDelay || 0, this._uncache(!0), a.prototype.invalidate.call(this)
419
+ }, k.addCallback = function (a, c, d, e) {
420
+ return this.add(b.delayedCall(0, a, d, e), c)
421
+ }, k.removeCallback = function (a, b) {
422
+ if (a)
423
+ if (null == b) this._kill(null, a);
424
+ else
425
+ for (var c = this.getTweensOf(a, !1), d = c.length, e = this._parseTimeOrLabel(b); --d > -1;) c[d]._startTime === e && c[d]._enabled(!1, !1);
426
+ return this
427
+ }, k.removePause = function (b) {
428
+ return this.removeCallback(a._internals.pauseCallback, b)
429
+ }, k.tweenTo = function (a, c) {
430
+ c = c || {};
431
+ var d, e, f, g = {
432
+ ease: j,
433
+ useFrames: this.usesFrames(),
434
+ immediateRender: !1,
435
+ lazy: !1
436
+ },
437
+ h = c.repeat && i.TweenMax || b;
438
+ for (e in c) g[e] = c[e];
439
+ return g.time = this._parseTimeOrLabel(a), d = Math.abs(Number(g.time) - this._time) / this._timeScale || .001, f = new h(this, d, g), g.onStart = function () {
440
+ f.target.paused(!0), f.vars.time === f.target.time() || d !== f.duration() || f.isFromTo || f.duration(Math.abs(f.vars.time - f.target.time()) / f.target._timeScale).render(f.time(), !0, !0), c.onStart && c.onStart.apply(c.onStartScope || c.callbackScope || f, c.onStartParams || [])
441
+ }, f
442
+ }, k.tweenFromTo = function (a, b, c) {
443
+ c = c || {}, a = this._parseTimeOrLabel(a), c.startAt = {
444
+ onComplete: this.seek,
445
+ onCompleteParams: [a],
446
+ callbackScope: this
447
+ }, c.immediateRender = c.immediateRender !== !1;
448
+ var d = this.tweenTo(b, c);
449
+ return d.isFromTo = 1, d.duration(Math.abs(d.vars.time - a) / this._timeScale || .001)
450
+ }, k.render = function (a, b, c) {
451
+ this._gc && this._enabled(!0, !1);
452
+ var d, f, i, j, k, l, m, n, o = this._time,
453
+ p = this._dirty ? this.totalDuration() : this._totalDuration,
454
+ q = this._duration,
455
+ r = this._totalTime,
456
+ s = this._startTime,
457
+ t = this._timeScale,
458
+ u = this._rawPrevTime,
459
+ v = this._paused,
460
+ w = this._cycle;
461
+ if (o !== this._time && (a += this._time - o), a >= p - 1e-7 && a >= 0) this._locked || (this._totalTime = p, this._cycle = this._repeat), this._reversed || this._hasPausedChild() || (f = !0, j = "onComplete", k = !!this._timeline.autoRemoveChildren, 0 === this._duration && (0 >= a && a >= -1e-7 || 0 > u || u === e) && u !== a && this._first && (k = !0, u > e && (j = "onReverseComplete"))), this._rawPrevTime = this._duration || !b || a || this._rawPrevTime === a ? a : e, this._yoyo && 0 !== (1 & this._cycle) ? this._time = a = 0 : (this._time = q, a = q + 1e-4);
462
+ else if (1e-7 > a)
463
+ if (this._locked || (this._totalTime = this._cycle = 0), this._time = 0, (0 !== o || 0 === q && u !== e && (u > 0 || 0 > a && u >= 0) && !this._locked) && (j = "onReverseComplete", f = this._reversed), 0 > a) this._active = !1, this._timeline.autoRemoveChildren && this._reversed ? (k = f = !0, j = "onReverseComplete") : u >= 0 && this._first && (k = !0), this._rawPrevTime = a;
464
+ else {
465
+ if (this._rawPrevTime = q || !b || a || this._rawPrevTime === a ? a : e, 0 === a && f)
466
+ for (d = this._first; d && 0 === d._startTime;) d._duration || (f = !1), d = d._next;
467
+ a = 0, this._initted || (k = !0)
468
+ }
469
+ else if (0 === q && 0 > u && (k = !0), this._time = this._rawPrevTime = a, this._locked || (this._totalTime = a, 0 !== this._repeat && (l = q + this._repeatDelay, this._cycle = this._totalTime / l >> 0, 0 !== this._cycle && this._cycle === this._totalTime / l && a >= r && this._cycle--, this._time = this._totalTime - this._cycle * l, this._yoyo && 0 !== (1 & this._cycle) && (this._time = q - this._time), this._time > q ? (this._time = q, a = q + 1e-4) : this._time < 0 ? this._time = a = 0 : a = this._time)), this._hasPause && !this._forcingPlayhead && !b) {
470
+ if (a = this._time, a >= o || this._repeat && w !== this._cycle)
471
+ for (d = this._first; d && d._startTime <= a && !m;) d._duration || "isPause" !== d.data || d.ratio || 0 === d._startTime && 0 === this._rawPrevTime || (m = d), d = d._next;
472
+ else
473
+ for (d = this._last; d && d._startTime >= a && !m;) d._duration || "isPause" === d.data && d._rawPrevTime > 0 && (m = d), d = d._prev;
474
+ m && m._startTime < q && (this._time = a = m._startTime, this._totalTime = a + this._cycle * (this._totalDuration + this._repeatDelay))
475
+ }
476
+ if (this._cycle !== w && !this._locked) {
477
+ var x = this._yoyo && 0 !== (1 & w),
478
+ y = x === (this._yoyo && 0 !== (1 & this._cycle)),
479
+ z = this._totalTime,
480
+ A = this._cycle,
481
+ B = this._rawPrevTime,
482
+ C = this._time;
483
+ if (this._totalTime = w * q, this._cycle < w ? x = !x : this._totalTime += q, this._time = o, this._rawPrevTime = 0 === q ? u - 1e-4 : u, this._cycle = w, this._locked = !0, o = x ? 0 : q, this.render(o, b, 0 === q), b || this._gc || this.vars.onRepeat && (this._cycle = A, this._locked = !1, this._callback("onRepeat")), o !== this._time) return;
484
+ if (y && (this._cycle = w, this._locked = !0, o = x ? q + 1e-4 : -1e-4, this.render(o, !0, !1)), this._locked = !1, this._paused && !v) return;
485
+ this._time = C, this._totalTime = z, this._cycle = A, this._rawPrevTime = B
486
+ }
487
+ if (!(this._time !== o && this._first || c || k || m)) return void (r !== this._totalTime && this._onUpdate && (b || this._callback("onUpdate")));
488
+ if (this._initted || (this._initted = !0), this._active || !this._paused && this._totalTime !== r && a > 0 && (this._active = !0), 0 === r && this.vars.onStart && (0 === this._totalTime && this._totalDuration || b || this._callback("onStart")), n = this._time, n >= o)
489
+ for (d = this._first; d && (i = d._next, n === this._time && (!this._paused || v));)(d._active || d._startTime <= this._time && !d._paused && !d._gc) && (m === d && this.pause(), d._reversed ? d.render((d._dirty ? d.totalDuration() : d._totalDuration) - (a - d._startTime) * d._timeScale, b, c) : d.render((a - d._startTime) * d._timeScale, b, c)), d = i;
490
+ else
491
+ for (d = this._last; d && (i = d._prev, n === this._time && (!this._paused || v));) {
492
+ if (d._active || d._startTime <= o && !d._paused && !d._gc) {
493
+ if (m === d) {
494
+ for (m = d._prev; m && m.endTime() > this._time;) m.render(m._reversed ? m.totalDuration() - (a - m._startTime) * m._timeScale : (a - m._startTime) * m._timeScale, b, c), m = m._prev;
495
+ m = null, this.pause()
496
+ }
497
+ d._reversed ? d.render((d._dirty ? d.totalDuration() : d._totalDuration) - (a - d._startTime) * d._timeScale, b, c) : d.render((a - d._startTime) * d._timeScale, b, c)
498
+ }
499
+ d = i
500
+ }
501
+ this._onUpdate && (b || (g.length && h(), this._callback("onUpdate"))), j && (this._locked || this._gc || (s === this._startTime || t !== this._timeScale) && (0 === this._time || p >= this.totalDuration()) && (f && (g.length && h(), this._timeline.autoRemoveChildren && this._enabled(!1, !1), this._active = !1), !b && this.vars[j] && this._callback(j)))
502
+ }, k.getActive = function (a, b, c) {
503
+ null == a && (a = !0), null == b && (b = !0), null == c && (c = !1);
504
+ var d, e, f = [],
505
+ g = this.getChildren(a, b, c),
506
+ h = 0,
507
+ i = g.length;
508
+ for (d = 0; i > d; d++) e = g[d], e.isActive() && (f[h++] = e);
509
+ return f
510
+ }, k.getLabelAfter = function (a) {
511
+ a || 0 !== a && (a = this._time);
512
+ var b, c = this.getLabelsArray(),
513
+ d = c.length;
514
+ for (b = 0; d > b; b++)
515
+ if (c[b].time > a) return c[b].name;
516
+ return null
517
+ }, k.getLabelBefore = function (a) {
518
+ null == a && (a = this._time);
519
+ for (var b = this.getLabelsArray(), c = b.length; --c > -1;)
520
+ if (b[c].time < a) return b[c].name;
521
+ return null
522
+ }, k.getLabelsArray = function () {
523
+ var a, b = [],
524
+ c = 0;
525
+ for (a in this._labels) b[c++] = {
526
+ time: this._labels[a],
527
+ name: a
528
+ };
529
+ return b.sort(function (a, b) {
530
+ return a.time - b.time
531
+ }), b
532
+ }, k.invalidate = function () {
533
+ return this._locked = !1, a.prototype.invalidate.call(this)
534
+ }, k.progress = function (a, b) {
535
+ return arguments.length ? this.totalTime(this.duration() * (this._yoyo && 0 !== (1 & this._cycle) ? 1 - a : a) + this._cycle * (this._duration + this._repeatDelay), b) : this._time / this.duration() || 0
536
+ }, k.totalProgress = function (a, b) {
537
+ return arguments.length ? this.totalTime(this.totalDuration() * a, b) : this._totalTime / this.totalDuration() || 0
538
+ }, k.totalDuration = function (b) {
539
+ return arguments.length ? -1 !== this._repeat && b ? this.timeScale(this.totalDuration() / b) : this : (this._dirty && (a.prototype.totalDuration.call(this), this._totalDuration = -1 === this._repeat ? 999999999999 : this._duration * (this._repeat + 1) + this._repeatDelay * this._repeat), this._totalDuration)
540
+ }, k.time = function (a, b) {
541
+ return arguments.length ? (this._dirty && this.totalDuration(), a > this._duration && (a = this._duration), this._yoyo && 0 !== (1 & this._cycle) ? a = this._duration - a + this._cycle * (this._duration + this._repeatDelay) : 0 !== this._repeat && (a += this._cycle * (this._duration + this._repeatDelay)), this.totalTime(a, b)) : this._time
542
+ }, k.repeat = function (a) {
543
+ return arguments.length ? (this._repeat = a, this._uncache(!0)) : this._repeat
544
+ }, k.repeatDelay = function (a) {
545
+ return arguments.length ? (this._repeatDelay = a, this._uncache(!0)) : this._repeatDelay
546
+ }, k.yoyo = function (a) {
547
+ return arguments.length ? (this._yoyo = a, this) : this._yoyo
548
+ }, k.currentLabel = function (a) {
549
+ return arguments.length ? this.seek(a, !0) : this.getLabelBefore(this._time + 1e-8)
550
+ }, d
551
+ }, !0),
552
+ function () {
553
+ var a = 180 / Math.PI,
554
+ b = [],
555
+ c = [],
556
+ d = [],
557
+ e = {},
558
+ f = _gsScope._gsDefine.globals,
559
+ g = function (a, b, c, d) {
560
+ c === d && (c = d - (d - b) / 1e6), a === b && (b = a + (c - a) / 1e6), this.a = a, this.b = b, this.c = c, this.d = d, this.da = d - a, this.ca = c - a, this.ba = b - a
561
+ },
562
+ h = ",x,y,z,left,top,right,bottom,marginTop,marginLeft,marginRight,marginBottom,paddingLeft,paddingTop,paddingRight,paddingBottom,backgroundPosition,backgroundPosition_y,",
563
+ i = function (a, b, c, d) {
564
+ var e = {
565
+ a: a
566
+ },
567
+ f = {},
568
+ g = {},
569
+ h = {
570
+ c: d
571
+ },
572
+ i = (a + b) / 2,
573
+ j = (b + c) / 2,
574
+ k = (c + d) / 2,
575
+ l = (i + j) / 2,
576
+ m = (j + k) / 2,
577
+ n = (m - l) / 8;
578
+ return e.b = i + (a - i) / 4, f.b = l + n, e.c = f.a = (e.b + f.b) / 2, f.c = g.a = (l + m) / 2, g.b = m - n, h.b = k + (d - k) / 4, g.c = h.a = (g.b + h.b) / 2, [e, f, g, h]
579
+ },
580
+ j = function (a, e, f, g, h) {
581
+ var j, k, l, m, n, o, p, q, r, s, t, u, v, w = a.length - 1,
582
+ x = 0,
583
+ y = a[0].a;
584
+ for (j = 0; w > j; j++) n = a[x], k = n.a, l = n.d, m = a[x + 1].d, h ? (t = b[j], u = c[j], v = (u + t) * e * .25 / (g ? .5 : d[j] || .5), o = l - (l - k) * (g ? .5 * e : 0 !== t ? v / t : 0), p = l + (m - l) * (g ? .5 * e : 0 !== u ? v / u : 0), q = l - (o + ((p - o) * (3 * t / (t + u) + .5) / 4 || 0))) : (o = l - (l - k) * e * .5, p = l + (m - l) * e * .5, q = l - (o + p) / 2), o += q, p += q, n.c = r = o, 0 !== j ? n.b = y : n.b = y = n.a + .6 * (n.c - n.a), n.da = l - k, n.ca = r - k, n.ba = y - k, f ? (s = i(k, y, r, l), a.splice(x, 1, s[0], s[1], s[2], s[3]), x += 4) : x++, y = p;
585
+ n = a[x], n.b = y, n.c = y + .4 * (n.d - y), n.da = n.d - n.a, n.ca = n.c - n.a, n.ba = y - n.a, f && (s = i(n.a, y, n.c, n.d), a.splice(x, 1, s[0], s[1], s[2], s[3]))
586
+ },
587
+ k = function (a, d, e, f) {
588
+ var h, i, j, k, l, m, n = [];
589
+ if (f)
590
+ for (a = [f].concat(a), i = a.length; --i > -1;) "string" == typeof (m = a[i][d]) && "=" === m.charAt(1) && (a[i][d] = f[d] + Number(m.charAt(0) + m.substr(2)));
591
+ if (h = a.length - 2, 0 > h) return n[0] = new g(a[0][d], 0, 0, a[0][d]), n;
592
+ for (i = 0; h > i; i++) j = a[i][d], k = a[i + 1][d], n[i] = new g(j, 0, 0, k), e && (l = a[i + 2][d], b[i] = (b[i] || 0) + (k - j) * (k - j), c[i] = (c[i] || 0) + (l - k) * (l - k));
593
+ return n[i] = new g(a[i][d], 0, 0, a[i + 1][d]), n
594
+ },
595
+ l = function (a, f, g, i, l, m) {
596
+ var n, o, p, q, r, s, t, u, v = {},
597
+ w = [],
598
+ x = m || a[0];
599
+ l = "string" == typeof l ? "," + l + "," : h, null == f && (f = 1);
600
+ for (o in a[0]) w.push(o);
601
+ if (a.length > 1) {
602
+ for (u = a[a.length - 1], t = !0, n = w.length; --n > -1;)
603
+ if (o = w[n], Math.abs(x[o] - u[o]) > .05) {
604
+ t = !1;
605
+ break
606
+ } t && (a = a.concat(), m && a.unshift(m), a.push(a[1]), m = a[a.length - 3])
607
+ }
608
+ for (b.length = c.length = d.length = 0, n = w.length; --n > -1;) o = w[n], e[o] = -1 !== l.indexOf("," + o + ","), v[o] = k(a, o, e[o], m);
609
+ for (n = b.length; --n > -1;) b[n] = Math.sqrt(b[n]), c[n] = Math.sqrt(c[n]);
610
+ if (!i) {
611
+ for (n = w.length; --n > -1;)
612
+ if (e[o])
613
+ for (p = v[w[n]],
614
+ s = p.length - 1, q = 0; s > q; q++) r = p[q + 1].da / c[q] + p[q].da / b[q] || 0, d[q] = (d[q] || 0) + r * r;
615
+ for (n = d.length; --n > -1;) d[n] = Math.sqrt(d[n])
616
+ }
617
+ for (n = w.length, q = g ? 4 : 1; --n > -1;) o = w[n], p = v[o], j(p, f, g, i, e[o]), t && (p.splice(0, q), p.splice(p.length - q, q));
618
+ return v
619
+ },
620
+ m = function (a, b, c) {
621
+ b = b || "soft";
622
+ var d, e, f, h, i, j, k, l, m, n, o, p = {},
623
+ q = "cubic" === b ? 3 : 2,
624
+ r = "soft" === b,
625
+ s = [];
626
+ if (r && c && (a = [c].concat(a)), null == a || a.length < q + 1) throw "invalid Bezier data";
627
+ for (m in a[0]) s.push(m);
628
+ for (j = s.length; --j > -1;) {
629
+ for (m = s[j], p[m] = i = [], n = 0, l = a.length, k = 0; l > k; k++) d = null == c ? a[k][m] : "string" == typeof (o = a[k][m]) && "=" === o.charAt(1) ? c[m] + Number(o.charAt(0) + o.substr(2)) : Number(o), r && k > 1 && l - 1 > k && (i[n++] = (d + i[n - 2]) / 2), i[n++] = d;
630
+ for (l = n - q + 1, n = 0, k = 0; l > k; k += q) d = i[k], e = i[k + 1], f = i[k + 2], h = 2 === q ? 0 : i[k + 3], i[n++] = o = 3 === q ? new g(d, e, f, h) : new g(d, (2 * e + d) / 3, (2 * e + f) / 3, f);
631
+ i.length = n
632
+ }
633
+ return p
634
+ },
635
+ n = function (a, b, c) {
636
+ for (var d, e, f, g, h, i, j, k, l, m, n, o = 1 / c, p = a.length; --p > -1;)
637
+ for (m = a[p], f = m.a, g = m.d - f, h = m.c - f, i = m.b - f, d = e = 0, k = 1; c >= k; k++) j = o * k, l = 1 - j, d = e - (e = (j * j * g + 3 * l * (j * h + l * i)) * j), n = p * c + k - 1, b[n] = (b[n] || 0) + d * d
638
+ },
639
+ o = function (a, b) {
640
+ b = b >> 0 || 6;
641
+ var c, d, e, f, g = [],
642
+ h = [],
643
+ i = 0,
644
+ j = 0,
645
+ k = b - 1,
646
+ l = [],
647
+ m = [];
648
+ for (c in a) n(a[c], g, b);
649
+ for (e = g.length, d = 0; e > d; d++) i += Math.sqrt(g[d]), f = d % b, m[f] = i, f === k && (j += i, f = d / b >> 0, l[f] = m, h[f] = j, i = 0, m = []);
650
+ return {
651
+ length: j,
652
+ lengths: h,
653
+ segments: l
654
+ }
655
+ },
656
+ p = _gsScope._gsDefine.plugin({
657
+ propName: "bezier",
658
+ priority: -1,
659
+ version: "1.3.8",
660
+ API: 2,
661
+ global: !0,
662
+ init: function (a, b, c) {
663
+ this._target = a, b instanceof Array && (b = {
664
+ values: b
665
+ }), this._func = {}, this._mod = {}, this._props = [], this._timeRes = null == b.timeResolution ? 6 : parseInt(b.timeResolution, 10);
666
+ var d, e, f, g, h, i = b.values || [],
667
+ j = {},
668
+ k = i[0],
669
+ n = b.autoRotate || c.vars.orientToBezier;
670
+ this._autoRotate = n ? n instanceof Array ? n : [
671
+ ["x", "y", "rotation", n === !0 ? 0 : Number(n) || 0]
672
+ ] : null;
673
+ for (d in k) this._props.push(d);
674
+ for (f = this._props.length; --f > -1;) d = this._props[f], this._overwriteProps.push(d), e = this._func[d] = "function" == typeof a[d], j[d] = e ? a[d.indexOf("set") || "function" != typeof a["get" + d.substr(3)] ? d : "get" + d.substr(3)]() : parseFloat(a[d]), h || j[d] !== i[0][d] && (h = j);
675
+ if (this._beziers = "cubic" !== b.type && "quadratic" !== b.type && "soft" !== b.type ? l(i, isNaN(b.curviness) ? 1 : b.curviness, !1, "thruBasic" === b.type, b.correlate, h) : m(i, b.type, j), this._segCount = this._beziers[d].length, this._timeRes) {
676
+ var p = o(this._beziers, this._timeRes);
677
+ this._length = p.length, this._lengths = p.lengths, this._segments = p.segments, this._l1 = this._li = this._s1 = this._si = 0, this._l2 = this._lengths[0], this._curSeg = this._segments[0], this._s2 = this._curSeg[0], this._prec = 1 / this._curSeg.length
678
+ }
679
+ if (n = this._autoRotate)
680
+ for (this._initialRotations = [], n[0] instanceof Array || (this._autoRotate = n = [n]), f = n.length; --f > -1;) {
681
+ for (g = 0; 3 > g; g++) d = n[f][g], this._func[d] = "function" == typeof a[d] ? a[d.indexOf("set") || "function" != typeof a["get" + d.substr(3)] ? d : "get" + d.substr(3)] : !1;
682
+ d = n[f][2], this._initialRotations[f] = (this._func[d] ? this._func[d].call(this._target) : this._target[d]) || 0, this._overwriteProps.push(d)
683
+ }
684
+ return this._startRatio = c.vars.runBackwards ? 1 : 0, !0
685
+ },
686
+ set: function (b) {
687
+ var c, d, e, f, g, h, i, j, k, l, m = this._segCount,
688
+ n = this._func,
689
+ o = this._target,
690
+ p = b !== this._startRatio;
691
+ if (this._timeRes) {
692
+ if (k = this._lengths, l = this._curSeg, b *= this._length, e = this._li, b > this._l2 && m - 1 > e) {
693
+ for (j = m - 1; j > e && (this._l2 = k[++e]) <= b;);
694
+ this._l1 = k[e - 1], this._li = e, this._curSeg = l = this._segments[e], this._s2 = l[this._s1 = this._si = 0]
695
+ } else if (b < this._l1 && e > 0) {
696
+ for (; e > 0 && (this._l1 = k[--e]) >= b;);
697
+ 0 === e && b < this._l1 ? this._l1 = 0 : e++, this._l2 = k[e], this._li = e, this._curSeg = l = this._segments[e], this._s1 = l[(this._si = l.length - 1) - 1] || 0, this._s2 = l[this._si]
698
+ }
699
+ if (c = e, b -= this._l1, e = this._si, b > this._s2 && e < l.length - 1) {
700
+ for (j = l.length - 1; j > e && (this._s2 = l[++e]) <= b;);
701
+ this._s1 = l[e - 1], this._si = e
702
+ } else if (b < this._s1 && e > 0) {
703
+ for (; e > 0 && (this._s1 = l[--e]) >= b;);
704
+ 0 === e && b < this._s1 ? this._s1 = 0 : e++, this._s2 = l[e], this._si = e
705
+ }
706
+ h = (e + (b - this._s1) / (this._s2 - this._s1)) * this._prec || 0
707
+ } else c = 0 > b ? 0 : b >= 1 ? m - 1 : m * b >> 0, h = (b - c * (1 / m)) * m;
708
+ for (d = 1 - h, e = this._props.length; --e > -1;) f = this._props[e], g = this._beziers[f][c], i = (h * h * g.da + 3 * d * (h * g.ca + d * g.ba)) * h + g.a, this._mod[f] && (i = this._mod[f](i, o)), n[f] ? o[f](i) : o[f] = i;
709
+ if (this._autoRotate) {
710
+ var q, r, s, t, u, v, w, x = this._autoRotate;
711
+ for (e = x.length; --e > -1;) f = x[e][2], v = x[e][3] || 0, w = x[e][4] === !0 ? 1 : a, g = this._beziers[x[e][0]], q = this._beziers[x[e][1]], g && q && (g = g[c], q = q[c], r = g.a + (g.b - g.a) * h, t = g.b + (g.c - g.b) * h, r += (t - r) * h, t += (g.c + (g.d - g.c) * h - t) * h, s = q.a + (q.b - q.a) * h, u = q.b + (q.c - q.b) * h, s += (u - s) * h, u += (q.c + (q.d - q.c) * h - u) * h, i = p ? Math.atan2(u - s, t - r) * w + v : this._initialRotations[e], this._mod[f] && (i = this._mod[f](i, o)), n[f] ? o[f](i) : o[f] = i)
712
+ }
713
+ }
714
+ }),
715
+ q = p.prototype;
716
+ p.bezierThrough = l, p.cubicToQuadratic = i, p._autoCSS = !0, p.quadraticToCubic = function (a, b, c) {
717
+ return new g(a, (2 * b + a) / 3, (2 * b + c) / 3, c)
718
+ }, p._cssRegister = function () {
719
+ var a = f.CSSPlugin;
720
+ if (a) {
721
+ var b = a._internals,
722
+ c = b._parseToProxy,
723
+ d = b._setPluginRatio,
724
+ e = b.CSSPropTween;
725
+ b._registerComplexSpecialProp("bezier", {
726
+ parser: function (a, b, f, g, h, i) {
727
+ b instanceof Array && (b = {
728
+ values: b
729
+ }), i = new p;
730
+ var j, k, l, m = b.values,
731
+ n = m.length - 1,
732
+ o = [],
733
+ q = {};
734
+ if (0 > n) return h;
735
+ for (j = 0; n >= j; j++) l = c(a, m[j], g, h, i, n !== j), o[j] = l.en