
:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
  gap: 0.5em;
}

:where(.is-layout-grid) {
  gap: 0.5em;
}

body .is-layout-flex {
  display: flex;
}

.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}

.is-layout-flex> :is(*, div) {
  margin: 0;
}

body .is-layout-grid {
  display: grid;
}

.is-layout-grid> :is(*, div) {
  margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

.has-black-color {
  color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
  color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:root :where(.wp-block-pullquote) {
  font-size: 1.5em;
  line-height: 1.6;
}

  /*! This file is auto-generated */
  .wp-block-button__link {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em
  }

  .wp-block-file__button {
    background: #32373c;
    color: #fff;
    text-decoration: none
  }
  @media only screen and (min-width : 1200px) {

    .container,
    .jeg_vc_content>.vc_row,
    .jeg_vc_content>.vc_element>.vc_row,
    .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
    .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
    }

    .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
    }
  }

  @media only screen and (min-width : 1441px) {

    .container,
    .jeg_vc_content>.vc_row,
    .jeg_vc_content>.vc_element>.vc_row,
    .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
    .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
    }

    .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
    }
  }

  body {
    --j-body-color: #333333;
    --j-accent-color: #174e96;
    --j-alt-color: #174259;
    --j-heading-color: #111111;
  }

  body,
  .jeg_newsfeed_list .tns-outer .tns-controls button,
  .jeg_filter_button,
  .owl-carousel .owl-nav div,
  .jeg_readmore,
  .jeg_hero_style_7 .jeg_post_meta a,
  .widget_calendar thead th,
  .widget_calendar tfoot a,
  .jeg_socialcounter a,
  .entry-header .jeg_meta_like a,
  .entry-header .jeg_meta_comment a,
  .entry-header .jeg_meta_donation a,
  .entry-header .jeg_meta_bookmark a,
  .entry-content tbody tr:hover,
  .entry-content th,
  .jeg_splitpost_nav li:hover a,
  #breadcrumbs a,
  .jeg_author_socials a:hover,
  .jeg_footer_content a,
  .jeg_footer_bottom a,
  .jeg_cartcontent,
  .woocommerce .woocommerce-breadcrumb a {
    color: #333333;
  }

  a,
  .jeg_menu_style_5>li>a:hover,
  .jeg_menu_style_5>li.sfHover>a,
  .jeg_menu_style_5>li.current-menu-item>a,
  .jeg_menu_style_5>li.current-menu-ancestor>a,
  .jeg_navbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
  .jeg_midbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
  .jeg_side_tabs li.active,
  .jeg_block_heading_5 strong,
  .jeg_block_heading_6 strong,
  .jeg_block_heading_7 strong,
  .jeg_block_heading_8 strong,
  .jeg_subcat_list li a:hover,
  .jeg_subcat_list li button:hover,
  .jeg_pl_lg_7 .jeg_thumb .jeg_post_category a,
  .jeg_pl_xs_2:before,
  .jeg_pl_xs_4 .jeg_postblock_content:before,
  .jeg_postblock .jeg_post_title a:hover,
  .jeg_hero_style_6 .jeg_post_title a:hover,
  .jeg_sidefeed .jeg_pl_xs_3 .jeg_post_title a:hover,
  .widget_jnews_popular .jeg_post_title a:hover,
  .jeg_meta_author a,
  .widget_archive li a:hover,
  .widget_pages li a:hover,
  .widget_meta li a:hover,
  .widget_recent_entries li a:hover,
  .widget_rss li a:hover,
  .widget_rss cite,
  .widget_categories li a:hover,
  .widget_categories li.current-cat>a,
  #breadcrumbs a:hover,
  .jeg_share_count .counts,
  .commentlist .bypostauthor>.comment-body>.comment-author>.fn,
  span.required,
  .jeg_review_title,
  .bestprice .price,
  .authorlink a:hover,
  .jeg_vertical_playlist .jeg_video_playlist_play_icon,
  .jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail:before,
  .jeg_horizontal_playlist .jeg_video_playlist_play,
  .woocommerce li.product .pricegroup .button,
  .widget_display_forums li a:hover,
  .widget_display_topics li:before,
  .widget_display_replies li:before,
  .widget_display_views li:before,
  .bbp-breadcrumb a:hover,
  .jeg_mobile_menu li.sfHover>a,
  .jeg_mobile_menu li a:hover,
  .split-template-6 .pagenum,
  .jeg_mobile_menu_style_5>li>a:hover,
  .jeg_mobile_menu_style_5>li.sfHover>a,
  .jeg_mobile_menu_style_5>li.current-menu-item>a,
  .jeg_mobile_menu_style_5>li.current-menu-ancestor>a {
    color: #174e96;
  }

  .jeg_menu_style_1>li>a:before,
  .jeg_menu_style_2>li>a:before,
  .jeg_menu_style_3>li>a:before,
  .jeg_side_toggle,
  .jeg_slide_caption .jeg_post_category a,
  .jeg_slider_type_1_wrapper .tns-controls button.tns-next,
  .jeg_block_heading_1 .jeg_block_title span,
  .jeg_block_heading_2 .jeg_block_title span,
  .jeg_block_heading_3,
  .jeg_block_heading_4 .jeg_block_title span,
  .jeg_block_heading_6:after,
  .jeg_pl_lg_box .jeg_post_category a,
  .jeg_pl_md_box .jeg_post_category a,
  .jeg_readmore:hover,
  .jeg_thumb .jeg_post_category a,
  .jeg_block_loadmore a:hover,
  .jeg_postblock.alt .jeg_block_loadmore a:hover,
  .jeg_block_loadmore a.active,
  .jeg_postblock_carousel_2 .jeg_post_category a,
  .jeg_heroblock .jeg_post_category a,
  .jeg_pagenav_1 .page_number.active,
  .jeg_pagenav_1 .page_number.active:hover,
  input[type="submit"],
  .btn,
  .button,
  .widget_tag_cloud a:hover,
  .popularpost_item:hover .jeg_post_title a:before,
  .jeg_splitpost_4 .page_nav,
  .jeg_splitpost_5 .page_nav,
  .jeg_post_via a:hover,
  .jeg_post_source a:hover,
  .jeg_post_tags a:hover,
  .comment-reply-title small a:before,
  .comment-reply-title small a:after,
  .jeg_storelist .productlink,
  .authorlink li.active a:before,
  .jeg_footer.dark .socials_widget:not(.nobg) a:hover .fa,
  div.jeg_breakingnews_title,
  .jeg_overlay_slider_bottom_wrapper .tns-controls button,
  .jeg_overlay_slider_bottom_wrapper .tns-controls button:hover,
  .jeg_vertical_playlist .jeg_video_playlist_current,
  .woocommerce span.onsale,
  .woocommerce #respond input#submit:hover,
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #respond input#submit.alt,
  .woocommerce a.button.alt,
  .woocommerce button.button.alt,
  .woocommerce input.button.alt,
  .jeg_popup_post .caption,
  .jeg_footer.dark input[type="submit"],
  .jeg_footer.dark .btn,
  .jeg_footer.dark .button,
  .footer_widget.widget_tag_cloud a:hover,
  .jeg_inner_content .content-inner .jeg_post_category a:hover,
  #buddypress .standard-form button,
  #buddypress a.button,
  #buddypress input[type="submit"],
  #buddypress input[type="button"],
  #buddypress input[type="reset"],
  #buddypress ul.button-nav li a,
  #buddypress .generic-button a,
  #buddypress .generic-button button,
  #buddypress .comment-reply-link,
  #buddypress a.bp-title-button,
  #buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a,
  div#buddypress .standard-form button:hover,
  div#buddypress a.button:hover,
  div#buddypress input[type="submit"]:hover,
  div#buddypress input[type="button"]:hover,
  div#buddypress input[type="reset"]:hover,
  div#buddypress ul.button-nav li a:hover,
  div#buddypress .generic-button a:hover,
  div#buddypress .generic-button button:hover,
  div#buddypress .comment-reply-link:hover,
  div#buddypress a.bp-title-button:hover,
  div#buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a:hover,
  #buddypress #item-nav .item-list-tabs ul li a:before,
  .jeg_inner_content .jeg_meta_container .follow-wrapper a {
    background-color: #174e96;
  }

  .jeg_block_heading_7 .jeg_block_title span,
  .jeg_readmore:hover,
  .jeg_block_loadmore a:hover,
  .jeg_block_loadmore a.active,
  .jeg_pagenav_1 .page_number.active,
  .jeg_pagenav_1 .page_number.active:hover,
  .jeg_pagenav_3 .page_number:hover,
  .jeg_prevnext_post a:hover h3,
  .jeg_overlay_slider .jeg_post_category,
  .jeg_sidefeed .jeg_post.active,
  .jeg_vertical_playlist.jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail img,
  .jeg_horizontal_playlist .jeg_video_playlist_item.active {
    border-color: #174e96;
  }

  .jeg_tabpost_nav li.active,
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
  .jeg_mobile_menu_style_1>li.current-menu-item a,
  .jeg_mobile_menu_style_1>li.current-menu-ancestor a,
  .jeg_mobile_menu_style_2>li.current-menu-item::after,
  .jeg_mobile_menu_style_2>li.current-menu-ancestor::after,
  .jeg_mobile_menu_style_3>li.current-menu-item::before,
  .jeg_mobile_menu_style_3>li.current-menu-ancestor::before {
    border-bottom-color: #174e96;
  }

  .jeg_post_meta .fa,
  .jeg_post_meta .jpwt-icon,
  .entry-header .jeg_post_meta .fa,
  .jeg_review_stars,
  .jeg_price_review_list {
    color: #174259;
  }

  .jeg_share_button.share-float.share-monocrhome a {
    background-color: #174259;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .jeg_post_title a,
  .entry-header .jeg_post_title,
  .jeg_hero_style_7 .jeg_post_title a,
  .jeg_block_title,
  .jeg_splitpost_bar .current_title,
  .jeg_video_playlist_title,
  .gallery-caption,
  .jeg_push_notification_button>a.button {
    color: #111111;
  }

  .split-template-9 .pagenum,
  .split-template-10 .pagenum,
  .split-template-11 .pagenum,
  .split-template-12 .pagenum,
  .split-template-13 .pagenum,
  .split-template-15 .pagenum,
  .split-template-18 .pagenum,
  .split-template-20 .pagenum,
  .split-template-19 .current_title span,
  .split-template-20 .current_title span {
    background-color: #111111;
  }

  .jeg_topbar .jeg_nav_row,
  .jeg_topbar .jeg_search_no_expand .jeg_search_input {
    line-height: 32px;
  }

  .jeg_topbar .jeg_nav_row,
  .jeg_topbar .jeg_nav_icon {
    height: 32px;
  }

  .jeg_midbar {
    height: 72px;
  }

  .jeg_header .jeg_bottombar,
  .jeg_header .jeg_bottombar.jeg_navbar_dark,
  .jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
  .jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
    border-top-width: 3px;
  }

  .jeg_header_wrapper .jeg_bottombar,
  .jeg_header_wrapper .jeg_bottombar.jeg_navbar_dark,
  .jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
  .jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
    border-top-color: #111111;
  }

  .jeg_stickybar,
  .jeg_stickybar.dark {
    border-bottom-width: 3px;
  }

  .jeg_stickybar,
  .jeg_stickybar.dark,
  .jeg_stickybar.jeg_navbar_boxed .jeg_nav_row {
    border-bottom-color: #111111;
  }

  .jeg_header .socials_widget>a>i.fa:before {
    color: #aaaaaa;
  }

  .jeg_header .socials_widget.nobg>a>span.jeg-icon svg {
    fill: #aaaaaa;
  }

  .jeg_header .socials_widget>a>span.jeg-icon svg {
    fill: #aaaaaa;
  }

  .jeg_aside_item.socials_widget>a>i.fa:before {
    color: #777777;
  }

  .jeg_aside_item.socials_widget.nobg a span.jeg-icon svg {
    fill: #777777;
  }

  .jeg_aside_item.socials_widget a span.jeg-icon svg {
    fill: #777777;
  }

  .jeg_header .jeg_button_1 .btn {
    background: #111111;
  }

  .jeg_nav_search {
    width: 34%;
  }

  body,
  input,
  textarea,
  select,
  .chosen-container-single .chosen-single,
  .btn,
  .button {
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  }

  .jeg_header,
  .jeg_mobile_wrapper {
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  }

  .jeg_main_menu>li>a {
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  }

  .jeg_post_title,
  .entry-header .jeg_post_title,
  .jeg_single_tpl_2 .entry-header .jeg_post_title,
  .jeg_single_tpl_3 .entry-header .jeg_post_title,
  .jeg_single_tpl_6 .entry-header .jeg_post_title,
  .jeg_content .jeg_custom_title_wrapper .jeg_post_title {
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  }

  h3.jeg_block_title,
  .jeg_footer .jeg_footer_heading h3,
  .jeg_footer .widget h2,
  .jeg_tabpost_nav li {
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
    font-size: 24px;
  }

  .jeg_post_excerpt p,
  .content-inner p {
    font-family: "Noto Serif", Helvetica, Arial, sans-serif;
  }

  .jeg_thumb .jeg_post_category a,
  .jeg_pl_lg_box .jeg_post_category a,
  .jeg_pl_md_box .jeg_post_category a,
  .jeg_postblock_carousel_2 .jeg_post_category a,
  .jeg_heroblock .jeg_post_category a,
  .jeg_slide_caption .jeg_post_category a {
    background-color: #111111;
  }

  .jeg_overlay_slider .jeg_post_category,
  .jeg_thumb .jeg_post_category a,
  .jeg_pl_lg_box .jeg_post_category a,
  .jeg_pl_md_box .jeg_post_category a,
  .jeg_postblock_carousel_2 .jeg_post_category a,
  .jeg_heroblock .jeg_post_category a,
  .jeg_slide_caption .jeg_post_category a {
    border-color: #111111;
  }
</style>
<style type="text/css">
  .no_thumbnail .jeg_thumb,
  .thumbnail-container.no_thumbnail {
    display: none !important;
  }

  .jeg_search_result .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
  .jeg_sidefeed .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
  .jeg_pl_sm.no_thumbnail .jeg_postblock_content {
    margin-left: 0;
  }

  .jeg_postblock_11 .no_thumbnail .jeg_postblock_content,
  .jeg_postblock_12 .no_thumbnail .jeg_postblock_content,
  .jeg_postblock_12.jeg_col_3o3 .no_thumbnail .jeg_postblock_content {
    margin-top: 0;
  }

  .jeg_postblock_15 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
  .jeg_postblock_19 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
  .jeg_postblock_24 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
  .jeg_sidefeed .jeg_pl_md_box .jeg_postblock_content {
    position: relative;
  }

  .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
  .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
  .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
    color: #212121 !important;
  }

  .jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
  .jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
  .jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
    color: #fff !important;
  }
</style>
<style type="text/css" id="wp-custom-css">
  /*  additional JNews */
  .jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper {
    min-height: 300px;
  }

  .jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper .jeg_slide_item {
    min-height: 300px;
    padding-bottom: 0;
  }

  @media screen and (max-width:600px) {
    .jeg_owlslider .tns-controls button {
      opacity: 1 !important;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button {
      border-radius: 50%;
      background-color: #ffffff3d;
      color: #fff;
      width: 35px;
      height: 35px;
      line-height: 35px;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev {
      top: 0;
      font-weight: 700;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next {
      top: 0;
      font-weight: 700;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev:before {
      position: absolute;
      left: -2px;
      top: 0;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next:before {
      position: absolute;
      right: -2px;
      top: 0;
    }
  }

  /*  end of additional JNews */
  .jeg_slider_type_4 .jeg_slide_item {
    min-height: 300px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
  }

  .jeg_slider_type_4 .jeg_slide_caption:after,
  .jeg_slider_type_4 .jeg_slide_caption:before {
    display: none;
  }

  .mobile-manshet .jeg_slider_type_4 .jeg_slide_caption {
    text-align: left;
    width: 90%;
    top: 75%;
    overflow: hidden;
  }

  .mobile-manshet .jeg_post_category,
  .mobile-manshet .jeg_post_meta {
    display: none;
  }

  .mobile-manshet .jeg_slider_type_4 .jeg_slide_item:before {
    border-radius: 10px;
  }

  .jeg_mobile_logo img {
    max-height: 50px;
    margin-left: 30px;
  }

  .jeg_navbar_mobile .jeg_search_toggle {
    color: #9f9d9d;
  }

  .jeg_news_ticker {
    padding-right: 0;
    padding-left: 6px;
  }

  .jeg_menu_icon_enable .jeg_font_menu {
    height: 40px;
    margin-right: 0;
  }

  .jeg_menu_style_5>li:last-child a {
    color: #006A72;
  }

  .jeg_mobile_menu li:last-child a {
    color: #006A72;
  }

  .cool-tag-cloud .ctcleft a,
  .cool-tag-cloud .ctcleft .tag-cloud-link {
    padding: 3px 10px 0 14px !important;
    border-radius: 4px
  }

  .cool-tag-cloud .ctcblue .ctcleft a,
  .cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link {
    background: none !important;
    background-color: #f1f6fb !important;
  }

  .cool-tag-cloud a {
    font-size: 14px !important;
    text-transform: uppercase;
  }

  .cool-tag-cloud .ctcblue .ctcleft a:after,
  .cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link:after {
    background: none !important;
  }

  /* .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev, .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next { 	display: none; } */
  .jeg_logo img {
    height: 50px;
  }

  .manshet-right .jeg_thumb {
    display: none;
  }

  .manshet-right .jeg_post_title:first-child {
    margin-top: 0 !important;
  }

  .vajnoe-title {
    margin-top: 0 !important;
    margin-bottom: -2px !important;
  }

  /* .manshet-right-block { 	padding: 0 !important; } */
  .lenta-section {
    border-left: 1px solid #ebe1e1;
  }

  .lenta-section .jeg_block_container {
    overflow-y: scroll;
    height: 1260px;
    margin-bottom: 11px;
    scrollbar-width: thin;
  }

  @media only screen and (max-width:600px) {
    .lenta-section {
      border-left: 0 !important;
    }
  }

  .manshet .jeg_post_title,
  .manshet-right .jeg_post_title {
    font-family: Helvetica, Arial, sans-serif;
  }

  .jeg_pl_sm_2 {
    margin-bottom: 6px;
  }

  .jeg_pl_sm_2:after {
    margin-top: 6px;
  }

  .manshet-right .jeg_post_meta,
  .manshet .jeg_post_meta {
    display: none;
  }

  .manshet .jeg_post_category {
    display: none;
  }

  .jeg_post.format-video .jeg_thumb:after {
    content: "\f04b";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
  }

  .jeg_post.format-gallery .jeg_thumb:after {
    content: "\f030";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
    font-size: 18px;
    line-height: 34px;
    width: 36px;
  }

  .jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
  .jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after {
    content: "\f030";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
    font-size: 18px;
    line-height: 34px;
    width: 36px;
  }

  .jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
  .jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after,
  .jeg_post.format-gallery .jeg_thumb:after,
  .jeg_post.format-video .jeg_thumb:after {
    left: unset;
    top: 0;
    right: 0;
    margin: 0;
    width: 36px;
    line-height: 34px;
  }

  .jeg_bottombar.jeg_navbar_boxed .jeg_nav_row {
    border-top-color: #1090ff;
  }

  .mneniya-section,
  .osoboe-mobile {
    background-color: #eee;
  }

  .jnews-dark-mode .mneniya-section {
    background-color: #eee0;
  }

  .jeg_pl_sm_2 .jeg_post_category a {
    text-transform: capitalize;
    font-size: 12px;
  }

  .top-5-block .jeg_post_excerpt,
  .top-5-block .jeg_post_meta {
    display: none;
  }

  .top-5-block.jeg_postblock_16 .jeg_posts {
    padding-top: 5px;
  }

  .top-5 .jeg_post.jeg_pl_lg_5 {
    margin-bottom: 0;
  }

  .top-5-block .jeg_pl_lg_5 .jeg_post_title {
    line-height: 25px;
  }

  .vse-novosti .vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover {
    background-color: red
  }

  .vse-novosti.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg {
    font-size: 18px
  }

  .jeg_block_loadmore a {
    background-color: #505050;
    height: 40px;
    line-height: 40px;
    align-content;
    color: #fff;
    font-weight: 500;
    text-transform: none;
    font-size: 12px
  }

  .jeg_block_loadmore a:after,
  .jeg_block_loadmore a:before {
    background: #174e96;
  }

  .jeg_main_menu>li>a {
    text-transform: uppercase;
  }

  .jeg_post_tags>span {
    display: none;
  }

  .top-5-block .jeg_block_container {
    overflow: hidden;
    height: 100%;
  }

  .top-5-block.jeg_postblock_16 {
    margin-bottom: 5px;
  }

  .jeg_post_meta a {
    font-size: 12px;
  }

  .molniya {
    max-width: 100%;
    width: 100%
  }

  .thumbnail-container img {
    transition: all .9s;
  }

  .jeg_thumb .thumbnail-container img:hover {
    transform: scale(1.04);
  }

  .widget_jnews_module_block_31 .jeg_postblock_31 {
    padding: 0 10px;
  }

  .lenta .jeg_postblock_content {
    position: relative;
  }

  .lenta .jeg_post_meta {
    position: absolute;
    top: 0;
    left: 0px;
  }

  .lenta .jeg_post_meta:after {
    content: "|";
    margin-left: 5px;
  }

  .lenta .jeg_post_category {
    position: relative;
    top: 0;
    left: 58px;
  }

  .special .jeg_block_heading_6 .jeg_block_title span {
    font-size: 22px;
  }

  .lenta .jeg_pl_sm_2 .jeg_post_category a {
    font-size: 13px;
    color: #1090ff;
  }

  .jeg_pl_sm .jeg_post_title {
    font-weight: 700;
  }

  .jeg_block_heading_6 .jeg_block_title {
    font-size: 22px;
    font-weight: 500;
    font-family: Fira Sans;
  }

  .lenta .jeg_block_heading_6 .jeg_block_title {
    font-size: 20px;
  }

  .jeg_pl_xs_4 .jeg_post_title {
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
  }

  .jeg_block_heading_6 .jeg_block_title span {
    font-size: 22px;
  }

  .jeg_news_ticker_control {
    display: none;
  }

  .jeg_news_ticker {
    border-right: 0;
    border-top: 0;
  }

  .my-post .jeg_meta_author a {
    text-decoration: underline;
    text-decoration-color: #1090ff;
    font-weight: 500;
    font-size: 16px;
    color: #000
  }

  .my_related_post .jeg_block_title span {
    font-size: 14px;
  }

  .my-post .jeg_meta_date a {
    font-size: 12px;
    text-transform: none;
  }

  .jeg_meta_date a {
    font-size: 12px;
    text-transform: none;
  }

  .molniya .post-date {
    display: none;
  }

  .my-post .jeg_meta_date a:before {
    content: "\F017";
    font: normal normal normal 12px/1 FontAwesome;
    margin-right: 4px;
  }

  .my-post .jeg_meta_date a {
    font-size: 14px;
  }

  .vajnoe-top .jeg_meta_author,
  .ne-propustite .jeg_meta_author {
    display: none;
  }

  .jeg_post_meta .jeg_meta_comment {
    display: none
  }

  .jeg_block_heading_6 {
    border-bottom: 1px solid #afafaf;
  }

  .jeg_pl_lg_box .jeg_post_title {
    font-weight: 500;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-nav button {
    width: 50px;
    height: 2px;
    border-radius: 0;
  }

  .tns-nav button {
    border-radius: none;
  }

  .custom_post_template h1.jeg_post_title {
    font-size: 40px;
  }

  #breadcrumbs .breadcrumb_last_link a {
    color: #1090ff;
  }

  #breadcrumbs a {
    color: #1090ff;
  }

  .vajnoe-mobile .jeg_block_title {
    font-size: 22px
  }

  .osoboe-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .jeg_slider_type_4 .jeg_slide_item {}

  .jeg_ad.jeg_ad_article.jnews_content_inline_ads .ads_code ins {
    max-width: 100%;
  }

  .jeg_post_excerpt p {
    font-size: 14px;
    line-height: 22px
  }

  .jeg_share_button a.expanded>span {
    display: none;
  }

  .myTag:before {
    content: '#';
    margin-right: 2px;
  }

  .myTagBlock {
    text-align: right;
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
  }

  @media screen and (max-width:600px) {
    .myTagBlock {
      text-align: left;
      padding-left: 0;
    }

    .myTag {
      padding-left: 0 !important;
    }
  }

  .myTag {
    padding: 4px 16px;
    border-radius: 6px;
    transition: all .4s;
    font-family: Arial;
    line-height: 23px;
  }

  .newsTicker {
    padding-right: 0;
  }

  .tag-column {
    padding-left: 0;
  }

  .myTag:hover {
    color: red !important;
  }

  .fa-twitter:before {
    content: '\e61b' !important;
  }

  .jeg_share_button .jeg_btn-twitter {
    background-color: #000
  }

  .my_related_post .jeg_block_title span {
    color: #174e96;
    font-weight: 700
  }

  .mwl .mwl__metadata {
    display: none;
  }

  .jeg_preview_slider {
    background: #ececec !important;
  }

  .jeg_preview_media_content_navigation .next {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .1) 100%) !important;
  }

  .jeg_preview_media_content_navigation .prev {
    background: linear-gradient(to right, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, 0) 100%) !important;
  }

  .jeg_preview_control .counter {
    color: #000;
  }

  .jeg_preview_bottom_slider {
    background-color: #eee !important;
  }

  .jeg_preview_slider .tns-inner,
  .jeg_preview_slider .tns-ovh {
    background-color: #eee !important;
  }

  .jeg_preview_media_holder .fullscreen-switch {
    color: #000 !important;
  }

  .jeg_preview_control .counter {
    text-shadow: none !important;
    font-weight: 600;
  }

  .jeg_nav_left {
    padding-top: 10px
  }

  .jeg_preview_media_content_navigation .next {
    right: 0 !important;
  }

  .jeg_preview_media_content_navigation .prev {
    left: 0 !important;
  }

  #tns2 .tns-item {
    padding-right: 4px !important;
  }

  .telegram-block-mobile {
    padding: 6px;
    border-top: 1px dashed silver;
    border-bottom: 1px dashed silver;
    max-width: 700px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  @media screen and (max-width:600px) {
    .jeg_preview_control .left_control {
      margin-left: -8px !important;
    }

    .telegram-block {
      display: none !important;
    }

    .custom_post_template h1.jeg_post_title {
      font-size: 26px;
      line-height: 32px
    }
  }

  @media screen and (min-width:600px) {
    .telegram-block-mobile {
      display: none !important;
    }
  }

  #tns2-iw {
    margin: 0 0 0 2px !important;
  }

  .telegram-block {
    padding: 6px;
    border-top: 1px dashed silver;
    border-bottom: 1px dashed silver;
    max-width: 635px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .telegram-block .vc_btn3.vc_btn3-size-sm {
    font-size: 14px;
    padding: 3px 16px;
  }

  .telegram-block .vc_column_container {
    padding: 0 !important;
  }

  .telegram-block-mobile {
    flex-wrap: nowrap !important;
  }

  .tg-mobile-icon {
    width: 15% !important;
    padding: 0 !important;
  }

  .tg-content-mobile {
    width: 85% !important;
    padding: 0 !important;
  }

  .tg-icon {
    margin: 0 !important;
    max-width: 30px !important;
    width: 100%;
  }

  .tg-content p {
    font-size: 15px;
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  }

  .my-post .entry-content {
    margin-bottom: 0;
  }

  .jeg_sharelist {
    justify-content: end;
  }

  .share-icon {
    display: flex;
    justify-content: end;
    padding: 0;
  }

  .podelitsya {
    margin-right: -80px;
  }

  .jnews_related_post_container .jeg_meta_author,
  .custom_post_template .jeg_meta_author+.jeg_meta_date:before,
  .my-post .jeg_meta_date a:before {
    display: none;
  }

  .jeg_postblock_3 .jeg_meta_author,
  .jeg_postblock_16 .jeg_meta_author {
    display: none;
  }

  /* Master */
  .single-post-date,
  .single-post-view-count {
    display: inline-block !important;
  }

  .single-post-view-count {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .custom-post-tag {
    background: red;
    color: white;
    padding: 2px 3px;
    margin: 0 10px;
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: Noto Sans, Arial, sans-serif;
  }

  .alert-dot {
    animation-name: fade;
    -webkit-animation-duration: 1500ms;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    width: 6px;
    height: 6px;
    background: white;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    transform: translateY(-1px);
    margin-right: 2px;
  }

  @-webkit-keyframes fade {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .custom-post-format i {
    color: #1e73be;
    font-size: 14px;
    margin-left: 5px;
  }

  .swiper-slide-thumb-active img {
    border-color: #c4cce1
  }

  @media screen and (min-width:600px) {
    .swiper-slide.swiper-slide-visible {
      width: 100px !important;
    }

    .swiper-container-free-mode>.swiper-wrapper {
      justify-content: center
    }
  }
</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">
  .vc_custom_1724958435528 {
    background-color: #1090ff !important;
  }

  .vc_custom_1723929498034 {
    margin-bottom: 20px !important;
  }

  .vc_custom_1723752516657 {
    padding-top: 40px !important;
  }

  .vc_custom_1723927706885 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 60px !important;
    background-color: #daebfa !important;
  }

  .vc_custom_1723927099062 {
    padding-top: 10px !important;
    padding-right: 100px !important;
    padding-bottom: 10px !important;
    padding-left: 30px !important;
    background-color: #f5f5f5 !important;
  }

  .vc_custom_1723927654658 {
    margin-top: -12px !important;
  }
</style>
<style type="text/css" data-type="vc_custom-css">
  .inner-content {
    max-width: 1320px;
    width: 100%;
  }
</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">
  .vc_custom_1724334024451 {
    margin-top: -30px !important;
    margin-bottom: 20px !important;
  }

  .vc_custom_1724333742572 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724775237473 {
    margin-bottom: -20px !important;
    background-color: #f7f7f7 !important;
  }

  .vc_custom_1724415537783 {
    border-radius: 1px !important;
  }

  .vc_custom_1724416401554 {
    border-radius: 1px !important;
  }

  .vc_custom_1724418308115 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724689005176 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724417856034 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724419372347 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724688735052 {
    margin-bottom: 0px !important;
  }
</style>
<style type="text/css" data-type="vc_shortcodes-default-css">
  .vc_do_custom_heading {
    margin-bottom: 0.625rem;
    margin-top: 0;
  }

  .vc_do_custom_heading {
    margin-bottom: 0.625rem;
    margin-top: 0;
  }

  .vc_do_custom_heading {
    margin-bottom: 0.625rem;
    margin-top: 0;
  }
</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">
  .vc_custom_1724333704725 {
    margin-top: -30px !important;
    margin-bottom: 20px !important;
  }

  .vc_custom_1724333659363 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724333670989 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724404540114 {
    margin-top: 5px !important;
    margin-bottom: -50px !important;
  }

  .vc_custom_1724405518282 {
    margin-top: -20px !important;
    margin-bottom: 0px !important;
  }

  .vc_custom_1724164422140 {
    margin-top: 10px !important;
  }

  .vc_custom_1723832542718 {
    margin-top: 20px !important;
  }

  .vc_custom_1724182102992 {
    margin-bottom: 0px !important;
  }

  .vc_custom_1724421086201 {
    margin-top: 28px !important;
  }

  .vc_custom_1724743942076 {
    margin-top: 0px !important;
  }

  .vc_custom_1724421049520 {
    background-color: #fff !important;
  }

  .vc_custom_1724688396137 {
    margin-top: 10px !important;
    background-color: #eeeeee !important;
  }

  .vc_custom_1724688414657 {
    margin-top: 10px !important;
    background-color: #eeeeee !important;
  }

    .wpb_animate_when_almost_visible {
      opacity: 1;
    }

 /*! This file is auto-generated */
 .wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em
}

.wp-block-file__button {
  background: #32373c;
  color: #fff;
  text-decoration: none
}
</style>
<style id="global-styles-inline-css" type="text/css">
:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
  gap: 0.5em;
}

:where(.is-layout-grid) {
  gap: 0.5em;
}

body .is-layout-flex {
  display: flex;
}

.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}

.is-layout-flex> :is(*, div) {
  margin: 0;
}

body .is-layout-grid {
  display: grid;
}

.is-layout-grid> :is(*, div) {
  margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

.has-black-color {
  color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
  color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:root :where(.wp-block-pullquote) {
  font-size: 1.5em;
  line-height: 1.6;
}

:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
  --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
  --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
  --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
  --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
  gap: 0.5em;
}

:where(.is-layout-grid) {
  gap: 0.5em;
}

body .is-layout-flex {
  display: flex;
}

.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}

.is-layout-flex> :is(*, div) {
  margin: 0;
}

body .is-layout-grid {
  display: grid;
}

.is-layout-grid> :is(*, div) {
  margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

.has-black-color {
  color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
  color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}

:root :where(.wp-block-pullquote) {
  font-size: 1.5em;
  line-height: 1.6;
}

@media only screen and (min-width : 1200px) {

  .container,
  .jeg_vc_content>.vc_row,
  .jeg_vc_content>.vc_element>.vc_row,
  .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
  .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
  }
}

@media only screen and (min-width : 1441px) {

  .container,
  .jeg_vc_content>.vc_row,
  .jeg_vc_content>.vc_element>.vc_row,
  .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
  .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
  }
}

body {
  --j-body-color: #333333;
  --j-accent-color: #174e96;
  --j-alt-color: #174259;
  --j-heading-color: #111111;
}

body,
.jeg_newsfeed_list .tns-outer .tns-controls button,
.jeg_filter_button,
.owl-carousel .owl-nav div,
.jeg_readmore,
.jeg_hero_style_7 .jeg_post_meta a,
.widget_calendar thead th,
.widget_calendar tfoot a,
.jeg_socialcounter a,
.entry-header .jeg_meta_like a,
.entry-header .jeg_meta_comment a,
.entry-header .jeg_meta_donation a,
.entry-header .jeg_meta_bookmark a,
.entry-content tbody tr:hover,
.entry-content th,
.jeg_splitpost_nav li:hover a,
#breadcrumbs a,
.jeg_author_socials a:hover,
.jeg_footer_content a,
.jeg_footer_bottom a,
.jeg_cartcontent,
.woocommerce .woocommerce-breadcrumb a {
  color: #333333;
}

a,
.jeg_menu_style_5>li>a:hover,
.jeg_menu_style_5>li.sfHover>a,
.jeg_menu_style_5>li.current-menu-item>a,
.jeg_menu_style_5>li.current-menu-ancestor>a,
.jeg_navbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
.jeg_midbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
.jeg_side_tabs li.active,
.jeg_block_heading_5 strong,
.jeg_block_heading_6 strong,
.jeg_block_heading_7 strong,
.jeg_block_heading_8 strong,
.jeg_subcat_list li a:hover,
.jeg_subcat_list li button:hover,
.jeg_pl_lg_7 .jeg_thumb .jeg_post_category a,
.jeg_pl_xs_2:before,
.jeg_pl_xs_4 .jeg_postblock_content:before,
.jeg_postblock .jeg_post_title a:hover,
.jeg_hero_style_6 .jeg_post_title a:hover,
.jeg_sidefeed .jeg_pl_xs_3 .jeg_post_title a:hover,
.widget_jnews_popular .jeg_post_title a:hover,
.jeg_meta_author a,
.widget_archive li a:hover,
.widget_pages li a:hover,
.widget_meta li a:hover,
.widget_recent_entries li a:hover,
.widget_rss li a:hover,
.widget_rss cite,
.widget_categories li a:hover,
.widget_categories li.current-cat>a,
#breadcrumbs a:hover,
.jeg_share_count .counts,
.commentlist .bypostauthor>.comment-body>.comment-author>.fn,
span.required,
.jeg_review_title,
.bestprice .price,
.authorlink a:hover,
.jeg_vertical_playlist .jeg_video_playlist_play_icon,
.jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail:before,
.jeg_horizontal_playlist .jeg_video_playlist_play,
.woocommerce li.product .pricegroup .button,
.widget_display_forums li a:hover,
.widget_display_topics li:before,
.widget_display_replies li:before,
.widget_display_views li:before,
.bbp-breadcrumb a:hover,
.jeg_mobile_menu li.sfHover>a,
.jeg_mobile_menu li a:hover,
.split-template-6 .pagenum,
.jeg_mobile_menu_style_5>li>a:hover,
.jeg_mobile_menu_style_5>li.sfHover>a,
.jeg_mobile_menu_style_5>li.current-menu-item>a,
.jeg_mobile_menu_style_5>li.current-menu-ancestor>a {
  color: #174e96;
}

.jeg_menu_style_1>li>a:before,
.jeg_menu_style_2>li>a:before,
.jeg_menu_style_3>li>a:before,
.jeg_side_toggle,
.jeg_slide_caption .jeg_post_category a,
.jeg_slider_type_1_wrapper .tns-controls button.tns-next,
.jeg_block_heading_1 .jeg_block_title span,
.jeg_block_heading_2 .jeg_block_title span,
.jeg_block_heading_3,
.jeg_block_heading_4 .jeg_block_title span,
.jeg_block_heading_6:after,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_readmore:hover,
.jeg_thumb .jeg_post_category a,
.jeg_block_loadmore a:hover,
.jeg_postblock.alt .jeg_block_loadmore a:hover,
.jeg_block_loadmore a.active,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_pagenav_1 .page_number.active,
.jeg_pagenav_1 .page_number.active:hover,
input[type="submit"],
.btn,
.button,
.widget_tag_cloud a:hover,
.popularpost_item:hover .jeg_post_title a:before,
.jeg_splitpost_4 .page_nav,
.jeg_splitpost_5 .page_nav,
.jeg_post_via a:hover,
.jeg_post_source a:hover,
.jeg_post_tags a:hover,
.comment-reply-title small a:before,
.comment-reply-title small a:after,
.jeg_storelist .productlink,
.authorlink li.active a:before,
.jeg_footer.dark .socials_widget:not(.nobg) a:hover .fa,
div.jeg_breakingnews_title,
.jeg_overlay_slider_bottom_wrapper .tns-controls button,
.jeg_overlay_slider_bottom_wrapper .tns-controls button:hover,
.jeg_vertical_playlist .jeg_video_playlist_current,
.woocommerce span.onsale,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.jeg_popup_post .caption,
.jeg_footer.dark input[type="submit"],
.jeg_footer.dark .btn,
.jeg_footer.dark .button,
.footer_widget.widget_tag_cloud a:hover,
.jeg_inner_content .content-inner .jeg_post_category a:hover,
#buddypress .standard-form button,
#buddypress a.button,
#buddypress input[type="submit"],
#buddypress input[type="button"],
#buddypress input[type="reset"],
#buddypress ul.button-nav li a,
#buddypress .generic-button a,
#buddypress .generic-button button,
#buddypress .comment-reply-link,
#buddypress a.bp-title-button,
#buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a,
div#buddypress .standard-form button:hover,
div#buddypress a.button:hover,
div#buddypress input[type="submit"]:hover,
div#buddypress input[type="button"]:hover,
div#buddypress input[type="reset"]:hover,
div#buddypress ul.button-nav li a:hover,
div#buddypress .generic-button a:hover,
div#buddypress .generic-button button:hover,
div#buddypress .comment-reply-link:hover,
div#buddypress a.bp-title-button:hover,
div#buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a:hover,
#buddypress #item-nav .item-list-tabs ul li a:before,
.jeg_inner_content .jeg_meta_container .follow-wrapper a {
  background-color: #174e96;
}

.jeg_block_heading_7 .jeg_block_title span,
.jeg_readmore:hover,
.jeg_block_loadmore a:hover,
.jeg_block_loadmore a.active,
.jeg_pagenav_1 .page_number.active,
.jeg_pagenav_1 .page_number.active:hover,
.jeg_pagenav_3 .page_number:hover,
.jeg_prevnext_post a:hover h3,
.jeg_overlay_slider .jeg_post_category,
.jeg_sidefeed .jeg_post.active,
.jeg_vertical_playlist.jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail img,
.jeg_horizontal_playlist .jeg_video_playlist_item.active {
  border-color: #174e96;
}

.jeg_tabpost_nav li.active,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.jeg_mobile_menu_style_1>li.current-menu-item a,
.jeg_mobile_menu_style_1>li.current-menu-ancestor a,
.jeg_mobile_menu_style_2>li.current-menu-item::after,
.jeg_mobile_menu_style_2>li.current-menu-ancestor::after,
.jeg_mobile_menu_style_3>li.current-menu-item::before,
.jeg_mobile_menu_style_3>li.current-menu-ancestor::before {
  border-bottom-color: #174e96;
}

.jeg_post_meta .fa,
.jeg_post_meta .jpwt-icon,
.entry-header .jeg_post_meta .fa,
.jeg_review_stars,
.jeg_price_review_list {
  color: #174259;
}

.jeg_share_button.share-float.share-monocrhome a {
  background-color: #174259;
}

h1,
h2,
h3,
h4,
h5,
h6,
.jeg_post_title a,
.entry-header .jeg_post_title,
.jeg_hero_style_7 .jeg_post_title a,
.jeg_block_title,
.jeg_splitpost_bar .current_title,
.jeg_video_playlist_title,
.gallery-caption,
.jeg_push_notification_button>a.button {
  color: #111111;
}

.split-template-9 .pagenum,
.split-template-10 .pagenum,
.split-template-11 .pagenum,
.split-template-12 .pagenum,
.split-template-13 .pagenum,
.split-template-15 .pagenum,
.split-template-18 .pagenum,
.split-template-20 .pagenum,
.split-template-19 .current_title span,
.split-template-20 .current_title span {
  background-color: #111111;
}

.jeg_topbar .jeg_nav_row,
.jeg_topbar .jeg_search_no_expand .jeg_search_input {
  line-height: 32px;
}

.jeg_topbar .jeg_nav_row,
.jeg_topbar .jeg_nav_icon {
  height: 32px;
}

.jeg_midbar {
  height: 72px;
}

.jeg_header .jeg_bottombar,
.jeg_header .jeg_bottombar.jeg_navbar_dark,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
.jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
  border-top-width: 3px;
}

.jeg_header_wrapper .jeg_bottombar,
.jeg_header_wrapper .jeg_bottombar.jeg_navbar_dark,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
.jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
  border-top-color: #111111;
}

.jeg_stickybar,
.jeg_stickybar.dark {
  border-bottom-width: 3px;
}

.jeg_stickybar,
.jeg_stickybar.dark,
.jeg_stickybar.jeg_navbar_boxed .jeg_nav_row {
  border-bottom-color: #111111;
}

.jeg_header .socials_widget>a>i.fa:before {
  color: #aaaaaa;
}

.jeg_header .socials_widget.nobg>a>span.jeg-icon svg {
  fill: #aaaaaa;
}

.jeg_header .socials_widget>a>span.jeg-icon svg {
  fill: #aaaaaa;
}

.jeg_aside_item.socials_widget>a>i.fa:before {
  color: #777777;
}

.jeg_aside_item.socials_widget.nobg a span.jeg-icon svg {
  fill: #777777;
}

.jeg_aside_item.socials_widget a span.jeg-icon svg {
  fill: #777777;
}

.jeg_header .jeg_button_1 .btn {
  background: #111111;
}

.jeg_nav_search {
  width: 34%;
}

body,
input,
textarea,
select,
.chosen-container-single .chosen-single,
.btn,
.button {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_header,
.jeg_mobile_wrapper {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_main_menu>li>a {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_post_title,
.entry-header .jeg_post_title,
.jeg_single_tpl_2 .entry-header .jeg_post_title,
.jeg_single_tpl_3 .entry-header .jeg_post_title,
.jeg_single_tpl_6 .entry-header .jeg_post_title,
.jeg_content .jeg_custom_title_wrapper .jeg_post_title {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

h3.jeg_block_title,
.jeg_footer .jeg_footer_heading h3,
.jeg_footer .widget h2,
.jeg_tabpost_nav li {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
}

.jeg_post_excerpt p,
.content-inner p {
  font-family: "Noto Serif", Helvetica, Arial, sans-serif;
}

.jeg_thumb .jeg_post_category a,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_slide_caption .jeg_post_category a {
  background-color: #111111;
}

.jeg_overlay_slider .jeg_post_category,
.jeg_thumb .jeg_post_category a,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_slide_caption .jeg_post_category a {
  border-color: #111111;
}

.no_thumbnail .jeg_thumb,
.thumbnail-container.no_thumbnail {
    display: none !important;
}

.jeg_search_result .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
.jeg_sidefeed .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
.jeg_pl_sm.no_thumbnail .jeg_postblock_content {
    margin-left: 0;
}

.jeg_postblock_11 .no_thumbnail .jeg_postblock_content,
.jeg_postblock_12 .no_thumbnail .jeg_postblock_content,
.jeg_postblock_12.jeg_col_3o3 .no_thumbnail .jeg_postblock_content {
    margin-top: 0;
}

.jeg_postblock_15 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_postblock_19 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_postblock_24 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_sidefeed .jeg_pl_md_box .jeg_postblock_content {
    position: relative;
}

.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
    color: #212121 !important;
}

.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
    color: #fff !important;
}

 /*  additional JNews */

 .jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper {
  min-height: 300px;
}

.jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper .jeg_slide_item {
  min-height: 300px;
  padding-bottom: 0;
}

@media screen and (max-width:1280px) {
  .manshet-right-block {
      width: 30%;
  }

  .vc_col-sm-9 {
      width: 70%;
  }

  .footer-right {
      width: 100%;
  }
}

@media screen and (max-width:991px) {
  .vc_custom_1724164422140 {
      width: 100% !important;
  }
}

@media screen and (max-width:600px) {

  .jeg_news_ticker {
      background: #ffffff45;
      border: none;
  }

  .jeg_owlslider .tns-controls button {
      opacity: 1 !important;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-controls button {
      border-radius: 50%;
      background-color: #ffffff3d;
      color: #fff;
      width: 35px;
      height: 35px;
      line-height: 35px;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev {
      top: 0;
      font-weight: 700;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next {
      top: 0;
      font-weight: 700;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev:before {
      position: absolute;
      left: -2px;
      top: 0;
  }

  .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next:before {
      position: absolute;
      right: -2px;
      top: 0;
  }



}

/*  end of additional JNews */

.jnews_boxed_container .jeg_main .widget {
  background-color: transparent;
}

.jeg_navbar,
.jeg_midbar,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row {
  background-color: transparent;
  background-image: url('https://cdn.minval.az/images/bg-700.jpg');
  background-position: top left;
}

.jeg_navbar_boxed .jeg_nav_row {
  border: 1px solid #ffffff3d;
  border-left: 0;
  border-right: 0;
}

.jeg_content {
  background-image: url('https://cdn.minval.az/images/bg-700.jpg');
  background-repeat: no-repeat;
  background-size: contain;
}

.jeg_news_ticker {
  background: #ffffff00;
  border-bottom: 1px solid #ffffff66;
}

.jeg_slider_type_4 .jeg_slide_item {
  min-height: 300px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden
}

.jeg_slider_type_4 .jeg_slide_caption:after,
.jeg_slider_type_4 .jeg_slide_caption:before {
  display: none;
}

.mobile-manshet .jeg_slider_type_4 .jeg_slide_caption {
  text-align: left;
  width: 90%;
  top: 75%;
  overflow: hidden;
}

.mobile-manshet .jeg_post_category,
.mobile-manshet .jeg_post_meta {
  display: none;
}

.mobile-manshet .jeg_slider_type_4 .jeg_slide_item:before {
  border-radius: 10px;
}

.jeg_mobile_logo img {
  max-height: 50px;
  margin-left: 30px;
}

.jeg_navbar_mobile .jeg_search_toggle {
  color: #9f9d9d;
}

.jeg_news_ticker {
  padding-right: 0;
  padding-left: 6px;
}

.jeg_menu_icon_enable .jeg_font_menu {
  height: 40px;
  margin-right: 0;
}

.jeg_menu_style_5>li:last-child a {
  color: #006A72;
}

.jeg_mobile_menu li:last-child a {
  color: #006A72;
}

.cool-tag-cloud .ctcleft a,
.cool-tag-cloud .ctcleft .tag-cloud-link {
  padding: 3px 10px 0 14px !important;
  border-radius: 4px
}

.cool-tag-cloud .ctcblue .ctcleft a,
.cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link {
  background: none !important;
  background-color: #f1f6fb !important;
}

.cool-tag-cloud a {
  font-size: 14px !important;
  text-transform: uppercase;

}

.cool-tag-cloud .ctcblue .ctcleft a:after,
.cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link:after {
  background: none !important;
}

/* .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev, .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next {
display: none;
} */

.jeg_logo img {
  height: 50px;
}

.manshet-right .jeg_thumb {
  display: none;
}

.manshet-right .jeg_post_title:first-child {
  margin-top: 0 !important;
}

.vajnoe-title {
  margin-top: 0 !important;
  margin-bottom: -2px !important;
}

/* .manshet-right-block {
padding: 0 !important;
} */

.lenta-section {
  border-left: 1px solid #ebe1e1;
}

.lenta-section .jeg_block_container {
  overflow-y: scroll;
  height: 1240px;
  margin-bottom: 11px;
  scrollbar-width: thin;
}

.manshet .jeg_post_title,
.manshet-right .jeg_post_title {
  font-family: Helvetica, Arial, sans-serif;
}

.jeg_pl_sm_2 {
  margin-bottom: 6px;
}

.jeg_pl_sm_2:after {
  margin-top: 6px;
}

.manshet-right .jeg_post_meta,
.manshet .jeg_post_meta {
  display: none;
}

.manshet .jeg_post_category {
  display: none;
}

.jeg_post.format-video .jeg_thumb:after {
  content: "\f04b";
  border: none;
  background: red;
  height: unset;
  border-radius: 0;
}

.jeg_post.format-gallery .jeg_thumb:after {
  content: "\f030";
  border: none;
  background: red;
  height: unset;
  border-radius: 0;
  font-size: 18px;
  line-height: 34px;
  width: 36px;
}

.jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
.jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after {
  content: "\f030";
  border: none;
  background: red;
  height: unset;
  border-radius: 0;
  font-size: 18px;
  line-height: 34px;
  width: 36px;
}

.jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
.jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after,
.jeg_post.format-gallery .jeg_thumb:after,
.jeg_post.format-video .jeg_thumb:after {
  left: unset;
  top: 0;
  right: 0;
  margin: 0;
  width: 36px;
  line-height: 34px;
}

.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row {
  border-top-color: #1090ff;
}



.mneniya-section,
.osoboe-mobile {
  background-color: #eee;
}

.jnews-dark-mode .mneniya-section {
  background-color: #eee0;
}

.jeg_pl_sm_2 .jeg_post_category a {
  text-transform: capitalize;
  font-size: 12px;
}

.top-5-block .jeg_post_excerpt,
.top-5-block .jeg_post_meta {
  display: none;
}

.top-5-block.jeg_postblock_16 .jeg_posts {
  padding-top: 5px;
}

.top-5 .jeg_post.jeg_pl_lg_5 {
  margin-bottom: 0;
}

.top-5-block .jeg_pl_lg_5 .jeg_post_title {
  line-height: 25px;
}

.vse-novosti .vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover {
  background-color: red
}

.vse-novosti.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg {
  font-size: 18px
}

.jeg_block_loadmore a {
  background-color: #505050;
  height: 40px;
  line-height: 40px;
  align-content;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  font-size: 12px
}

.jeg_block_loadmore a:after,
.jeg_block_loadmore a:before {
  background: #174e96;
}

.jeg_main_menu>li>a {
  text-transform: uppercase;
}

.jeg_post_tags>span {
  display: none;
}

.top-5-block .jeg_block_container {
  overflow: hidden;
  height: 100%;
}

.top-5-block.jeg_postblock_16 {
  margin-bottom: 5px;
}

.jeg_post_meta a {
  font-size: 12px;
}

.molniya {
  max-width: 100%;
  width: 100%
}

.thumbnail-container img {
  transition: all .9s;
}

.jeg_thumb .thumbnail-container img:hover {
  transform: scale(1.04);
}

.widget_jnews_module_block_31 .jeg_postblock_31 {
  padding: 0 10px;
}

.lenta .jeg_postblock_content {
  position: relative;
}

.lenta .jeg_post_meta {
  position: absolute;
  top: 0;
  left: 0px;
}

.lenta .jeg_post_meta:after {
  content: "|";
  margin-left: 5px;
}

.lenta .jeg_post_category {
  position: relative;
  top: 0;
  left: 58px;
}

.special .jeg_block_heading_6 .jeg_block_title span {
  font-size: 22px;
}

.lenta .jeg_pl_sm_2 .jeg_post_category a {
  font-size: 13px;
  color: #1e73be;
}

.jeg_pl_sm .jeg_post_title {
  font-weight: 700;
}

.jeg_block_heading_6 .jeg_block_title {
  font-size: 22px;
  font-weight: 500;
  font-family: Fira Sans;
}

.lenta .jeg_block_heading_6 .jeg_block_title {
  font-size: 20px;
}

.jeg_pl_xs_4 .jeg_post_title {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.jeg_block_heading_6 .jeg_block_title span {
  font-size: 22px;
}

.jeg_news_ticker_control {
  display: none;
}

.jeg_news_ticker {
  border-right: 0;
  border-top: 0;
}

.my-post .jeg_meta_author a {
  text-decoration: underline;
  text-decoration-color: #1090ff;
  font-weight: 500;
  font-size: 16px;
  color: #000
}

.my_related_post .jeg_block_title span {
  font-size: 14px;
}

.my-post .jeg_meta_date a {
  font-size: 12px;
  text-transform: none;
}

.jeg_meta_date a {
  font-size: 12px;
  text-transform: none;
}

.molniya .post-date {
  display: none;
}

.my-post .jeg_meta_date a:before {
  content: "\F017";
  font: normal normal normal 12px/1 FontAwesome;
  margin-right: 4px;
}

.my-post .jeg_meta_date a {
  font-size: 14px;
}

.vajnoe-top .jeg_meta_author,
.ne-propustite .jeg_meta_author {
  display: none;
}

.jeg_post_meta .jeg_meta_comment {
  display: none
}

.jeg_block_heading_6 {
  border-bottom: 1px solid #afafaf;
}

.jeg_pl_lg_box .jeg_post_title {
  font-weight: 500;
}



.jeg_slider_wrapper.jeg_owlslider .tns-nav button {
  width: 50px;
  height: 2px;
  border-radius: 0;
}

.tns-nav button {
  border-radius: none;
}

.custom_post_template h1.jeg_post_title {
  font-size: 40px;
}

#breadcrumbs .breadcrumb_last_link a {
  color: #1090ff;
}

#breadcrumbs a {
  color: #1090ff;
}

.vajnoe-mobile .jeg_block_title {
  font-size: 22px
}



.osoboe-mobile {
  padding-left: 0;
  padding-right: 0;
}

.jeg_slider_type_4 .jeg_slide_item {}

.jeg_ad.jeg_ad_article.jnews_content_inline_ads .ads_code ins {
  max-width: 100%;
}

.jeg_post_excerpt p {
  font-size: 14px;
  line-height: 22px
}

.jeg_share_button a.expanded>span {
  display: none;
}

.myTag:before {
  content: '#';
  margin-right: 2px;
}

.myTagBlock {
  text-align: right;
  padding: 8px 20px;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width:600px) {
  .myTagBlock {
      text-align: left;
      padding-left: 0;
  }

  .myTag {
      padding-left: 0 !important;
  }
}

.myTag {
  padding: 4px 16px 4px 0;
  border-radius: 6px;
  transition: all .4s;
  font-family: Arial;
  line-height: 23px;
}

.newsTicker {
  padding-right: 0;
}

.tag-column {
  padding-left: 0;
}

.myTag:hover {
  color: red !important;
}

.fa-twitter:before {
  content: '\e61b' !important;
}

.jeg_share_button .jeg_btn-twitter {
  background-color: #000
}

.my_related_post .jeg_block_title span {
  color: #174e96;
  font-weight: 700
}

.mwl .mwl__metadata {
  display: none;
}

.jeg_preview_slider {
  background: #ececec !important;
}

.jeg_preview_media_content_navigation .next {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .1) 100%) !important;
}

.jeg_preview_media_content_navigation .prev {
  background: linear-gradient(to right, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, 0) 100%) !important;
}

.jeg_preview_control .counter {
  color: #000;
}

.jeg_preview_bottom_slider {
  background-color: #eee !important;
}

.jeg_preview_slider .tns-inner,
.jeg_preview_slider .tns-ovh {
  background-color: #eee !important;
}

.jeg_preview_media_holder .fullscreen-switch {
  color: #000 !important;
}

.jeg_preview_control .counter {
  text-shadow: none !important;
  font-weight: 600;
}

.jeg_nav_left {
  padding-top: 10px
}

.jeg_preview_media_content_navigation .next {
  right: 0 !important;
}

.jeg_preview_media_content_navigation .prev {
  left: 0 !important;
}

#tns2 .tns-item {
  padding-right: 4px !important;
}

.telegram-block-mobile {
  padding: 6px;
  border-top: 1px dashed silver;
  border-bottom: 1px dashed silver;
  max-width: 700px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

@media screen and (max-width:600px) {
  .jeg_preview_control .left_control {
      margin-left: -8px !important;
  }

  .telegram-block {
      display: none !important;
  }

  .custom_post_template h1.jeg_post_title {
      font-size: 26px;
      line-height: 32px
  }

}

@media screen and (min-width:600px) {
  .telegram-block-mobile {
      display: none !important;
  }
}

#tns2-iw {
  margin: 0 0 0 2px !important;
}

.telegram-block {
  padding: 6px;
  border-top: 1px dashed silver;
  border-bottom: 1px dashed silver;
  max-width: 635px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.telegram-block .vc_btn3.vc_btn3-size-sm {
  font-size: 14px;
  padding: 3px 16px;
}

.telegram-block .vc_column_container {
  padding: 0 !important;
}

.telegram-block-mobile {
  flex-wrap: nowrap !important;
}

.tg-mobile-icon {
  width: 15% !important;
  padding: 0 !important;
}

.tg-content-mobile {
  width: 85% !important;
  padding: 0 !important;
}

.tg-icon {
  margin: 0 !important;
  max-width: 30px !important;
  width: 100%;
}

.tg-content p {
  font-size: 15px;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.my-post .entry-content {
  margin-bottom: 0;
}

.jeg_sharelist {
  justify-content: end;
}

.share-icon {
  display: flex;
  justify-content: end;
  padding: 0;
}

.podelitsya {
  margin-right: -80px;
}

.jnews_related_post_container .jeg_meta_author,
.custom_post_template .jeg_meta_author+.jeg_meta_date:before,
.my-post .jeg_meta_date a:before {
  display: none;
}

.jeg_postblock_3 .jeg_meta_author,
.jeg_postblock_16 .jeg_meta_author {
  display: none;
}

/* Master */
.single-post-date,
.single-post-view-count {
  display: inline-block !important;
}

.single-post-view-count {
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 10px;
}

.custom-post-tag {
  background: red;
  color: white;
  padding: 2px 3px;
  margin: 0 10px;
  font-size: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: Noto Sans, Arial, sans-serif;
}

.alert-dot {
  animation-name: fade;
  -webkit-animation-duration: 1500ms;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  width: 6px;
  height: 6px;
  background: white;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  transform: translateY(-1px);
  margin-right: 2px;
}

@-webkit-keyframes fade {
  0% {
      opacity: 0;
  }

  50% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

.custom-post-format i {
  color: #1e73be;
  font-size: 14px;
  margin-left: 5px;
}

.swiper-slide-thumb-active img {
  border-color: #c4cce1
}

@media screen and (min-width:600px) {
  .swiper-slide.swiper-slide-visible {
      width: 100px !important;
  }

  .swiper-container-free-mode>.swiper-wrapper {
      justify-content: center
  }
}

.vc_custom_1724958435528 {
  background-color: #1090ff !important;
}

.vc_custom_1723929498034 {
  margin-bottom: 20px !important;
}

.vc_custom_1723752516657 {
  padding-top: 40px !important;
}

.vc_custom_1723927706885 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 60px !important;
  background-color: #daebfa !important;
}

.vc_custom_1723927099062 {
  padding-top: 20px !important;
  padding-right: 100px !important;
  padding-bottom: 20px !important;
  padding-left: 50px !important;
  background-color: #f5f5f5 !important;
}

.vc_custom_1723927654658 {
  margin-top: -12px !important;
}
</style>
<style type="text/css" data-type="vc_custom-css">
.inner-content {
  max-width: 1320px;
  width: 100%;
}

.vc_custom_1724334024451 {
  margin-top: -30px !important;
  margin-bottom: 20px !important;
}

.vc_custom_1724333742572 {
  margin-bottom: 0px !important;
}

.vc_custom_1725188134824 {
  margin-top: -30px !important;
}

.vc_custom_1724775237473 {
  margin-bottom: -20px !important;
  background-color: #f7f7f7 !important;
}

.vc_custom_1724415537783 {
  border-radius: 1px !important;
}

.vc_custom_1724416401554 {
  border-radius: 1px !important;
}

.vc_custom_1724418308115 {
  margin-bottom: 0px !important;
}

.vc_custom_1724689005176 {
  margin-bottom: 0px !important;
}

.vc_custom_1724417856034 {
  margin-bottom: 0px !important;
}

.vc_custom_1724419372347 {
  margin-bottom: 0px !important;
}

.vc_custom_1724688735052 {
  margin-bottom: 0px !important;
}

@media only screen and (min-width : 1200px) {

  .container,
  .jeg_vc_content>.vc_row,
  .jeg_vc_content>.vc_element>.vc_row,
  .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
  .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
  }
}

@media only screen and (min-width : 1441px) {

  .container,
  .jeg_vc_content>.vc_row,
  .jeg_vc_content>.vc_element>.vc_row,
  .jeg_vc_content>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper,
  .jeg_vc_content>.vc_element>.vc_row[data-vc-full-width="true"]:not([data-vc-stretch-content="true"])>.jeg-vc-wrapper {
      max-width: 1370px;
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
      max-width: 1370px;
  }
}

body {
  --j-body-color: #333333;
  --j-accent-color: #174e96;
  --j-alt-color: #174259;
  --j-heading-color: #111111;
}

body,
.jeg_newsfeed_list .tns-outer .tns-controls button,
.jeg_filter_button,
.owl-carousel .owl-nav div,
.jeg_readmore,
.jeg_hero_style_7 .jeg_post_meta a,
.widget_calendar thead th,
.widget_calendar tfoot a,
.jeg_socialcounter a,
.entry-header .jeg_meta_like a,
.entry-header .jeg_meta_comment a,
.entry-header .jeg_meta_donation a,
.entry-header .jeg_meta_bookmark a,
.entry-content tbody tr:hover,
.entry-content th,
.jeg_splitpost_nav li:hover a,
#breadcrumbs a,
.jeg_author_socials a:hover,
.jeg_footer_content a,
.jeg_footer_bottom a,
.jeg_cartcontent,
.woocommerce .woocommerce-breadcrumb a {
  color: #333333;
}

a,
.jeg_menu_style_5>li>a:hover,
.jeg_menu_style_5>li.sfHover>a,
.jeg_menu_style_5>li.current-menu-item>a,
.jeg_menu_style_5>li.current-menu-ancestor>a,
.jeg_navbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
.jeg_midbar .jeg_menu:not(.jeg_main_menu)>li>a:hover,
.jeg_side_tabs li.active,
.jeg_block_heading_5 strong,
.jeg_block_heading_6 strong,
.jeg_block_heading_7 strong,
.jeg_block_heading_8 strong,
.jeg_subcat_list li a:hover,
.jeg_subcat_list li button:hover,
.jeg_pl_lg_7 .jeg_thumb .jeg_post_category a,
.jeg_pl_xs_2:before,
.jeg_pl_xs_4 .jeg_postblock_content:before,
.jeg_postblock .jeg_post_title a:hover,
.jeg_hero_style_6 .jeg_post_title a:hover,
.jeg_sidefeed .jeg_pl_xs_3 .jeg_post_title a:hover,
.widget_jnews_popular .jeg_post_title a:hover,
.jeg_meta_author a,
.widget_archive li a:hover,
.widget_pages li a:hover,
.widget_meta li a:hover,
.widget_recent_entries li a:hover,
.widget_rss li a:hover,
.widget_rss cite,
.widget_categories li a:hover,
.widget_categories li.current-cat>a,
#breadcrumbs a:hover,
.jeg_share_count .counts,
.commentlist .bypostauthor>.comment-body>.comment-author>.fn,
span.required,
.jeg_review_title,
.bestprice .price,
.authorlink a:hover,
.jeg_vertical_playlist .jeg_video_playlist_play_icon,
.jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail:before,
.jeg_horizontal_playlist .jeg_video_playlist_play,
.woocommerce li.product .pricegroup .button,
.widget_display_forums li a:hover,
.widget_display_topics li:before,
.widget_display_replies li:before,
.widget_display_views li:before,
.bbp-breadcrumb a:hover,
.jeg_mobile_menu li.sfHover>a,
.jeg_mobile_menu li a:hover,
.split-template-6 .pagenum,
.jeg_mobile_menu_style_5>li>a:hover,
.jeg_mobile_menu_style_5>li.sfHover>a,
.jeg_mobile_menu_style_5>li.current-menu-item>a,
.jeg_mobile_menu_style_5>li.current-menu-ancestor>a {
  color: #174e96;
}

.jeg_menu_style_1>li>a:before,
.jeg_menu_style_2>li>a:before,
.jeg_menu_style_3>li>a:before,
.jeg_side_toggle,
.jeg_slide_caption .jeg_post_category a,
.jeg_slider_type_1_wrapper .tns-controls button.tns-next,
.jeg_block_heading_1 .jeg_block_title span,
.jeg_block_heading_2 .jeg_block_title span,
.jeg_block_heading_3,
.jeg_block_heading_4 .jeg_block_title span,
.jeg_block_heading_6:after,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_readmore:hover,
.jeg_thumb .jeg_post_category a,
.jeg_block_loadmore a:hover,
.jeg_postblock.alt .jeg_block_loadmore a:hover,
.jeg_block_loadmore a.active,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_pagenav_1 .page_number.active,
.jeg_pagenav_1 .page_number.active:hover,
input[type="submit"],
.btn,
.button,
.widget_tag_cloud a:hover,
.popularpost_item:hover .jeg_post_title a:before,
.jeg_splitpost_4 .page_nav,
.jeg_splitpost_5 .page_nav,
.jeg_post_via a:hover,
.jeg_post_source a:hover,
.jeg_post_tags a:hover,
.comment-reply-title small a:before,
.comment-reply-title small a:after,
.jeg_storelist .productlink,
.authorlink li.active a:before,
.jeg_footer.dark .socials_widget:not(.nobg) a:hover .fa,
div.jeg_breakingnews_title,
.jeg_overlay_slider_bottom_wrapper .tns-controls button,
.jeg_overlay_slider_bottom_wrapper .tns-controls button:hover,
.jeg_vertical_playlist .jeg_video_playlist_current,
.woocommerce span.onsale,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.jeg_popup_post .caption,
.jeg_footer.dark input[type="submit"],
.jeg_footer.dark .btn,
.jeg_footer.dark .button,
.footer_widget.widget_tag_cloud a:hover,
.jeg_inner_content .content-inner .jeg_post_category a:hover,
#buddypress .standard-form button,
#buddypress a.button,
#buddypress input[type="submit"],
#buddypress input[type="button"],
#buddypress input[type="reset"],
#buddypress ul.button-nav li a,
#buddypress .generic-button a,
#buddypress .generic-button button,
#buddypress .comment-reply-link,
#buddypress a.bp-title-button,
#buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a,
div#buddypress .standard-form button:hover,
div#buddypress a.button:hover,
div#buddypress input[type="submit"]:hover,
div#buddypress input[type="button"]:hover,
div#buddypress input[type="reset"]:hover,
div#buddypress ul.button-nav li a:hover,
div#buddypress .generic-button a:hover,
div#buddypress .generic-button button:hover,
div#buddypress .comment-reply-link:hover,
div#buddypress a.bp-title-button:hover,
div#buddypress.buddypress-wrap .members-list li .user-update .activity-read-more a:hover,
#buddypress #item-nav .item-list-tabs ul li a:before,
.jeg_inner_content .jeg_meta_container .follow-wrapper a {
  background-color: #174e96;
}

.jeg_block_heading_7 .jeg_block_title span,
.jeg_readmore:hover,
.jeg_block_loadmore a:hover,
.jeg_block_loadmore a.active,
.jeg_pagenav_1 .page_number.active,
.jeg_pagenav_1 .page_number.active:hover,
.jeg_pagenav_3 .page_number:hover,
.jeg_prevnext_post a:hover h3,
.jeg_overlay_slider .jeg_post_category,
.jeg_sidefeed .jeg_post.active,
.jeg_vertical_playlist.jeg_vertical_playlist .jeg_video_playlist_item.active .jeg_video_playlist_thumbnail img,
.jeg_horizontal_playlist .jeg_video_playlist_item.active {
  border-color: #174e96;
}

.jeg_tabpost_nav li.active,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.jeg_mobile_menu_style_1>li.current-menu-item a,
.jeg_mobile_menu_style_1>li.current-menu-ancestor a,
.jeg_mobile_menu_style_2>li.current-menu-item::after,
.jeg_mobile_menu_style_2>li.current-menu-ancestor::after,
.jeg_mobile_menu_style_3>li.current-menu-item::before,
.jeg_mobile_menu_style_3>li.current-menu-ancestor::before {
  border-bottom-color: #174e96;
}

.jeg_post_meta .fa,
.jeg_post_meta .jpwt-icon,
.entry-header .jeg_post_meta .fa,
.jeg_review_stars,
.jeg_price_review_list {
  color: #174259;
}

.jeg_share_button.share-float.share-monocrhome a {
  background-color: #174259;
}

h1,
h2,
h3,
h4,
h5,
h6,
.jeg_post_title a,
.entry-header .jeg_post_title,
.jeg_hero_style_7 .jeg_post_title a,
.jeg_block_title,
.jeg_splitpost_bar .current_title,
.jeg_video_playlist_title,
.gallery-caption,
.jeg_push_notification_button>a.button {
  color: #111111;
}

.split-template-9 .pagenum,
.split-template-10 .pagenum,
.split-template-11 .pagenum,
.split-template-12 .pagenum,
.split-template-13 .pagenum,
.split-template-15 .pagenum,
.split-template-18 .pagenum,
.split-template-20 .pagenum,
.split-template-19 .current_title span,
.split-template-20 .current_title span {
  background-color: #111111;
}

.jeg_topbar .jeg_nav_row,
.jeg_topbar .jeg_search_no_expand .jeg_search_input {
  line-height: 32px;
}

.jeg_topbar .jeg_nav_row,
.jeg_topbar .jeg_nav_icon {
  height: 32px;
}

.jeg_midbar {
  height: 72px;
}

.jeg_header .jeg_bottombar,
.jeg_header .jeg_bottombar.jeg_navbar_dark,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
.jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
  border-top-width: 3px;
}

.jeg_header_wrapper .jeg_bottombar,
.jeg_header_wrapper .jeg_bottombar.jeg_navbar_dark,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row,
.jeg_bottombar.jeg_navbar_dark.jeg_navbar_boxed .jeg_nav_row {
  border-top-color: #111111;
}

.jeg_stickybar,
.jeg_stickybar.dark {
  border-bottom-width: 3px;
}

.jeg_stickybar,
.jeg_stickybar.dark,
.jeg_stickybar.jeg_navbar_boxed .jeg_nav_row {
  border-bottom-color: #111111;
}

.jeg_header .socials_widget>a>i.fa:before {
  color: #aaaaaa;
}

.jeg_header .socials_widget.nobg>a>span.jeg-icon svg {
  fill: #aaaaaa;
}

.jeg_header .socials_widget>a>span.jeg-icon svg {
  fill: #aaaaaa;
}

.jeg_aside_item.socials_widget>a>i.fa:before {
  color: #777777;
}

.jeg_aside_item.socials_widget.nobg a span.jeg-icon svg {
  fill: #777777;
}

.jeg_aside_item.socials_widget a span.jeg-icon svg {
  fill: #777777;
}

.jeg_header .jeg_button_1 .btn {
  background: #111111;
}

.jeg_nav_search {
  width: 34%;
}

body,
input,
textarea,
select,
.chosen-container-single .chosen-single,
.btn,
.button {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_header,
.jeg_mobile_wrapper {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_main_menu>li>a {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.jeg_post_title,
.entry-header .jeg_post_title,
.jeg_single_tpl_2 .entry-header .jeg_post_title,
.jeg_single_tpl_3 .entry-header .jeg_post_title,
.jeg_single_tpl_6 .entry-header .jeg_post_title,
.jeg_content .jeg_custom_title_wrapper .jeg_post_title {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

h3.jeg_block_title,
.jeg_footer .jeg_footer_heading h3,
.jeg_footer .widget h2,
.jeg_tabpost_nav li {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
}

.jeg_post_excerpt p,
.content-inner p {
  font-family: "Noto Serif", Helvetica, Arial, sans-serif;
}

.jeg_thumb .jeg_post_category a,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_slide_caption .jeg_post_category a {
  background-color: #111111;
}

.jeg_overlay_slider .jeg_post_category,
.jeg_thumb .jeg_post_category a,
.jeg_pl_lg_box .jeg_post_category a,
.jeg_pl_md_box .jeg_post_category a,
.jeg_postblock_carousel_2 .jeg_post_category a,
.jeg_heroblock .jeg_post_category a,
.jeg_slide_caption .jeg_post_category a {
  border-color: #111111;
}
</style>
<style type="text/css">
.no_thumbnail .jeg_thumb,
.thumbnail-container.no_thumbnail {
  display: none !important;
}

.jeg_search_result .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
.jeg_sidefeed .jeg_pl_xs_3.no_thumbnail .jeg_postblock_content,
.jeg_pl_sm.no_thumbnail .jeg_postblock_content {
  margin-left: 0;
}

.jeg_postblock_11 .no_thumbnail .jeg_postblock_content,
.jeg_postblock_12 .no_thumbnail .jeg_postblock_content,
.jeg_postblock_12.jeg_col_3o3 .no_thumbnail .jeg_postblock_content {
  margin-top: 0;
}

.jeg_postblock_15 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_postblock_19 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_postblock_24 .jeg_pl_md_box.no_thumbnail .jeg_postblock_content,
.jeg_sidefeed .jeg_pl_md_box .jeg_postblock_content {
  position: relative;
}

.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
.jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
  color: #212121 !important;
}

.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a,
.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_title a:hover,
.jnews-dark-mode .jeg_postblock_carousel_2 .no_thumbnail .jeg_post_meta .fa {
  color: #fff !important;
}

  /*  additional JNews */

  .jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper {
    min-height: 300px;
}

.jeg_slider_type_4_wrapper.mobile-manshet .jeg_slide_item_wrapper .jeg_slide_item {
    min-height: 300px;
    padding-bottom: 0;
}

@media screen and (max-width:1280px) {
    .manshet-right-block {
        width: 30%;
    }

    .vc_col-sm-9 {
        width: 70%;
    }

    .footer-right {
        width: 100%;
    }
}

@media screen and (max-width:991px) {
    .vc_custom_1724164422140 {
        width: 100% !important;
    }
}

@media screen and (max-width:600px) {

    .jeg_news_ticker {
        background: #ffffff45;
        border: none;
    }

    .jeg_owlslider .tns-controls button {
        opacity: 1 !important;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button {
        border-radius: 50%;
        background-color: #ffffff3d;
        color: #fff;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev {
        top: 0;
        font-weight: 700;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next {
        top: 0;
        font-weight: 700;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev:before {
        position: absolute;
        left: -2px;
        top: 0;
    }

    .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next:before {
        position: absolute;
        right: -2px;
        top: 0;
    }



}

/*  end of additional JNews */

.jnews_boxed_container .jeg_main .widget {
    background-color: transparent;
}

.jeg_navbar,
.jeg_midbar,
.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row {
    background-color: transparent;
    background-image: url('https://cdn.minval.az/images/bg-700.jpg');
    background-position: top left;
}

.jeg_navbar_boxed .jeg_nav_row {
    border: 1px solid #ffffff3d;
    border-left: 0;
    border-right: 0;
}

.jeg_content {
    background-image: url('https://cdn.minval.az/images/bg-700.jpg');
    background-repeat: no-repeat;
    background-size: contain;
}

.jeg_news_ticker {
    background: #ffffff00;
    border-bottom: 1px solid #ffffff66;
}

.jeg_slider_type_4 .jeg_slide_item {
    min-height: 300px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.jeg_slider_type_4 .jeg_slide_caption:after,
.jeg_slider_type_4 .jeg_slide_caption:before {
    display: none;
}

.mobile-manshet .jeg_slider_type_4 .jeg_slide_caption {
    text-align: left;
    width: 90%;
    top: 75%;
    overflow: hidden;
}

.mobile-manshet .jeg_post_category,
.mobile-manshet .jeg_post_meta {
    display: none;
}

.mobile-manshet .jeg_slider_type_4 .jeg_slide_item:before {
    border-radius: 10px;
}

.jeg_mobile_logo img {
    max-height: 50px;
    margin-left: 30px;
}

.jeg_navbar_mobile .jeg_search_toggle {
    color: #9f9d9d;
}

.jeg_news_ticker {
    padding-right: 0;
    padding-left: 6px;
}

.jeg_menu_icon_enable .jeg_font_menu {
    height: 40px;
    margin-right: 0;
}

.jeg_menu_style_5>li:last-child a {
    color: #006A72;
}

.jeg_mobile_menu li:last-child a {
    color: #006A72;
}

.cool-tag-cloud .ctcleft a,
.cool-tag-cloud .ctcleft .tag-cloud-link {
    padding: 3px 10px 0 14px !important;
    border-radius: 4px
}

.cool-tag-cloud .ctcblue .ctcleft a,
.cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link {
    background: none !important;
    background-color: #f1f6fb !important;
}

.cool-tag-cloud a {
    font-size: 14px !important;
    text-transform: uppercase;

}

.cool-tag-cloud .ctcblue .ctcleft a:after,
.cool-tag-cloud .ctcblue .ctcleft .tag-cloud-link:after {
    background: none !important;
}

/* .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-prev, .jeg_slider_wrapper.jeg_owlslider .tns-controls button.tns-next {
display: none;
} */

.jeg_logo img {
    height: 50px;
}

.manshet-right .jeg_thumb {
    display: none;
}

.manshet-right .jeg_post_title:first-child {
    margin-top: 0 !important;
}

.vajnoe-title {
    margin-top: 0 !important;
    margin-bottom: -2px !important;
}

/* .manshet-right-block {
padding: 0 !important;
} */

.lenta-section {
    border-left: 1px solid #ebe1e1;
}

.lenta-section .jeg_block_container {
    overflow-y: scroll;
    height: 1155px;
    margin-bottom: 11px;
    scrollbar-width: thin;
}

.manshet .jeg_post_title,
.manshet-right .jeg_post_title {
    font-family: Helvetica, Arial, sans-serif;
}

.jeg_pl_sm_2 {
    margin-bottom: 6px;
}

.jeg_pl_sm_2:after {
    margin-top: 6px;
}

.manshet-right .jeg_post_meta,
.manshet .jeg_post_meta {
    display: none;
}

.manshet .jeg_post_category {
    display: none;
}

.jeg_post.format-video .jeg_thumb:after {
    content: "\f04b";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
}

.jeg_post.format-gallery .jeg_thumb:after {
    content: "\f030";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
    font-size: 18px;
    line-height: 34px;
    width: 36px;
}

.jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
.jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after {
    content: "\f030";
    border: none;
    background: red;
    height: unset;
    border-radius: 0;
    font-size: 18px;
    line-height: 34px;
    width: 36px;
}

.jeg_postblock_carousel_2 .jeg_post.format-gallery .jeg_thumb:after,
.jeg_postblock_carousel_2 .jeg_post.format-video .jeg_thumb:after,
.jeg_post.format-gallery .jeg_thumb:after,
.jeg_post.format-video .jeg_thumb:after {
    left: unset;
    top: 0;
    right: 0;
    margin: 0;
    width: 36px;
    line-height: 34px;
}

.jeg_bottombar.jeg_navbar_boxed .jeg_nav_row {
    border-top-color: #1090ff;
}



.mneniya-section,
.osoboe-mobile {
    background-color: #eee;
}

.jnews-dark-mode .mneniya-section {
    background-color: #eee0;
}

.jeg_pl_sm_2 .jeg_post_category a {
    text-transform: capitalize;
    font-size: 12px;
}

.top-5-block .jeg_post_excerpt,
.top-5-block .jeg_post_meta {
    display: none;
}

.top-5-block.jeg_postblock_16 .jeg_posts {
    padding-top: 5px;
}

.top-5 .jeg_post.jeg_pl_lg_5 {
    margin-bottom: 0;
}

.top-5-block .jeg_pl_lg_5 .jeg_post_title {
    line-height: 25px;
}

.vse-novosti .vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover {
    background-color: red
}

.vse-novosti.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg {
    font-size: 18px
}

.jeg_block_loadmore a {
    background-color: #505050;
    height: 40px;
    line-height: 40px;
    align-content;
    color: #fff;
    font-weight: 500;
    text-transform: none;
    font-size: 12px
}

.jeg_block_loadmore a:after,
.jeg_block_loadmore a:before {
    background: #174e96;
}

.jeg_main_menu>li>a {
    text-transform: uppercase;
}

.jeg_post_tags>span {
    display: none;
}

.top-5-block .jeg_block_container {
    overflow: hidden;
    height: 100%;
}

.top-5-block.jeg_postblock_16 {
    margin-bottom: 5px;
}

.jeg_post_meta a {
    font-size: 12px;
}

.molniya {
    max-width: 100%;
    width: 100%
}

.thumbnail-container img {
    transition: all .9s;
}

.jeg_thumb .thumbnail-container img:hover {
    transform: scale(1.04);
}

.widget_jnews_module_block_31 .jeg_postblock_31 {
    padding: 0 10px;
}

.lenta .jeg_postblock_content {
    position: relative;
}

.lenta .jeg_post_meta {
    position: absolute;
    top: 0;
    left: 0px;
}

.lenta .jeg_post_meta:after {
    content: "|";
    margin-left: 5px;
}

.lenta .jeg_post_category {
    position: relative;
    top: 0;
    left: 58px;
}

.special .jeg_block_heading_6 .jeg_block_title span {
    font-size: 22px;
}

.lenta .jeg_pl_sm_2 .jeg_post_category a {
    font-size: 13px;
    color: #1e73be;
}

.jeg_pl_sm .jeg_post_title {
    font-weight: 700;
}

.jeg_block_heading_6 .jeg_block_title {
    font-size: 22px;
    font-weight: 500;
    font-family: Fira Sans;
}

.lenta .jeg_block_heading_6 .jeg_block_title {
    font-size: 20px;
}

.jeg_pl_xs_4 .jeg_post_title {
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.jeg_block_heading_6 .jeg_block_title span {
    font-size: 22px;
}

.jeg_news_ticker_control {
    display: none;
}

.jeg_news_ticker {
    border-right: 0;
    border-top: 0;
}

.my-post .jeg_meta_author a {
    text-decoration: underline;
    text-decoration-color: #1090ff;
    font-weight: 500;
    font-size: 16px;
    color: #000
}

.my_related_post .jeg_block_title span {
    font-size: 14px;
}

.my-post .jeg_meta_date a {
    font-size: 12px;
    text-transform: none;
}

.jeg_meta_date a {
    font-size: 12px;
    text-transform: none;
}

.molniya .post-date {
    display: none;
}

.my-post .jeg_meta_date a:before {
    content: "\F017";
    font: normal normal normal 12px/1 FontAwesome;
    margin-right: 4px;
}

.my-post .jeg_meta_date a {
    font-size: 14px;
}

.vajnoe-top .jeg_meta_author,
.ne-propustite .jeg_meta_author {
    display: none;
}

.jeg_post_meta .jeg_meta_comment {
    display: none
}

.jeg_block_heading_6 {
    border-bottom: 1px solid #afafaf;
}

.jeg_pl_lg_box .jeg_post_title {
    font-weight: 500;
}



.jeg_slider_wrapper.jeg_owlslider .tns-nav button {
    width: 50px;
    height: 2px;
    border-radius: 0;
}

.tns-nav button {
    border-radius: none;
}

.custom_post_template h1.jeg_post_title {
    font-size: 40px;
}

#breadcrumbs .breadcrumb_last_link a {
    color: #1090ff;
}

#breadcrumbs a {
    color: #1090ff;
}

.vajnoe-mobile .jeg_block_title {
    font-size: 22px
}



.osoboe-mobile {
    padding-left: 0;
    padding-right: 0;
}

.jeg_slider_type_4 .jeg_slide_item {}

.jeg_ad.jeg_ad_article.jnews_content_inline_ads .ads_code ins {
    max-width: 100%;
}

.jeg_post_excerpt p {
    font-size: 14px;
    line-height: 22px
}

.jeg_share_button a.expanded>span {
    display: none;
}

.myTag:before {
    content: '#';
    margin-right: 2px;
}

.myTagBlock {
    text-align: right;
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
}

@media screen and (max-width:600px) {
    .myTagBlock {
        text-align: left;
        padding-left: 0;
    }

    .myTag {
        padding-left: 0 !important;
    }
}

.myTag {
    padding: 4px 16px 4px 0;
    border-radius: 6px;
    transition: all .4s;
    font-family: Arial;
    line-height: 23px;
}

.newsTicker {
    padding-right: 0;
}

.tag-column {
    padding-left: 0;
}

.myTag:hover {
    color: red !important;
}

.fa-twitter:before {
    content: '\e61b' !important;
}

.jeg_share_button .jeg_btn-twitter {
    background-color: #000
}

.my_related_post .jeg_block_title span {
    color: #174e96;
    font-weight: 700
}

.mwl .mwl__metadata {
    display: none;
}

.jeg_preview_slider {
    background: #ececec !important;
}

.jeg_preview_media_content_navigation .next {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .1) 100%) !important;
}

.jeg_preview_media_content_navigation .prev {
    background: linear-gradient(to right, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, 0) 100%) !important;
}

.jeg_preview_control .counter {
    color: #000;
}

.jeg_preview_bottom_slider {
    background-color: #eee !important;
}

.jeg_preview_slider .tns-inner,
.jeg_preview_slider .tns-ovh {
    background-color: #eee !important;
}

.jeg_preview_media_holder .fullscreen-switch {
    color: #000 !important;
}

.jeg_preview_control .counter {
    text-shadow: none !important;
    font-weight: 600;
}

.jeg_nav_left {
    padding-top: 10px
}

.jeg_preview_media_content_navigation .next {
    right: 0 !important;
}

.jeg_preview_media_content_navigation .prev {
    left: 0 !important;
}

#tns2 .tns-item {
    padding-right: 4px !important;
}

.telegram-block-mobile {
    padding: 6px;
    border-top: 1px dashed silver;
    border-bottom: 1px dashed silver;
    max-width: 700px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

@media screen and (max-width:600px) {
    .jeg_preview_control .left_control {
        margin-left: -8px !important;
    }

    .telegram-block {
        display: none !important;
    }

    .custom_post_template h1.jeg_post_title {
        font-size: 26px;
        line-height: 32px
    }

}

@media screen and (min-width:600px) {
    .telegram-block-mobile {
        display: none !important;
    }
}

#tns2-iw {
    margin: 0 0 0 2px !important;
}

.telegram-block {
    padding: 6px;
    border-top: 1px dashed silver;
    border-bottom: 1px dashed silver;
    max-width: 715px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.telegram-block .vc_btn3.vc_btn3-size-sm {
    font-size: 14px;
    padding: 3px 16px;
}

.telegram-block .vc_column_container {
    padding: 0 !important;
}

.telegram-block-mobile {
    flex-wrap: nowrap !important;
}

.tg-mobile-icon {
    width: 15% !important;
    padding: 0 !important;
}

.tg-content-mobile {
    width: 85% !important;
    padding: 0 !important;
}

.tg-icon {
    margin: 0 !important;
    max-width: 30px !important;
    width: 100%;
}

.tg-content p {
    font-size: 15px;
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}

.my-post .entry-content {
    margin-bottom: 0;
}

.jeg_sharelist {
    justify-content: end;
}

.share-icon {
    display: flex;
    justify-content: end;
    padding: 0;
}

.podelitsya {
    margin-right: -80px;
}

.jnews_related_post_container .jeg_meta_author,
.custom_post_template .jeg_meta_author+.jeg_meta_date:before,
.my-post .jeg_meta_date a:before {
    display: none;
}

.jeg_postblock_3 .jeg_meta_author,
.jeg_postblock_16 .jeg_meta_author {
    display: none;
}

/* Master */
.single-post-date,
.single-post-view-count {
    display: inline-block !important;
}

.single-post-view-count {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 10px;
}

.custom-post-tag {
    background: red;
    color: white;
    padding: 2px 3px;
    margin: 0 10px;
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: Noto Sans, Arial, sans-serif;
}

.alert-dot {
    animation-name: fade;
    -webkit-animation-duration: 1500ms;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    width: 6px;
    height: 6px;
    background: white;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    transform: translateY(-1px);
    margin-right: 2px;
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.custom-post-format i {
    color: #1e73be;
    font-size: 14px;
    margin-left: 5px;
}

.swiper-slide-thumb-active img {
    border-color: #c4cce1
}

@media screen and (min-width:600px) {
    .swiper-slide.swiper-slide-visible {
        width: 100px !important;
    }

    .swiper-container-free-mode>.swiper-wrapper {
        justify-content: center
    }
}

.vc_custom_1724958435528 {
  background-color: #1090ff !important;
}

.vc_custom_1723929498034 {
  margin-bottom: 20px !important;
}

.vc_custom_1723752516657 {
  padding-top: 40px !important;
}

.vc_custom_1723927706885 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 60px !important;
  background-color: #daebfa !important;
}

.vc_custom_1723927099062 {
  padding-top: 20px !important;
  padding-right: 100px !important;
  padding-bottom: 20px !important;
  padding-left: 50px !important;
  background-color: #f5f5f5 !important;
}

.vc_custom_1723927654658 {
  margin-top: -12px !important;
}

.vc_custom_1724334024451 {
  margin-top: -30px !important;
  margin-bottom: 20px !important;
}

.vc_custom_1724333742572 {
  margin-bottom: 0px !important;
}

.vc_custom_1725188134824 {
  margin-top: -30px !important;
}

.vc_custom_1724775237473 {
  margin-bottom: -20px !important;
  background-color: #f7f7f7 !important;
}

.vc_custom_1724415537783 {
  border-radius: 1px !important;
}

.vc_custom_1724416401554 {
  border-radius: 1px !important;
}

.vc_custom_1724418308115 {
  margin-bottom: 0px !important;
}

.vc_custom_1724689005176 {
  margin-bottom: 0px !important;
}

.vc_custom_1724417856034 {
  margin-bottom: 0px !important;
}

.vc_custom_1724419372347 {
  margin-bottom: 0px !important;
}

.vc_custom_1724688735052 {
  margin-bottom: 0px !important;
}




.three-block-mobile .thumbnail-container::after {
  background: #fff;
  border: 3px solid #1090ff;
  top: 80%;
  content: '';
  display: block;
  height: 75px;
  position: absolute;
  left: 93%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 50px;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

video {
  max-width: 100%;
}





.master-post-thumbnail img {
  min-width: 100%;
}