@charset "UTF-8";
/**
 * Core Assets > SCSS > Components register module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Variables module.
 *
 * @package Media Base Theme
 */
:root {
  --container-width: 1120px;
  --bs-body-font-size: 1rem;
  --animate-duration: 1s;
  --animate-duration-medium: .8s;
  --animate-duration-short: .5s;
  --body-bg-color: #f5f6fb;
  --bloc-bg-color: #fff;
  --bloc-border-color: #f1f1f1;
  --header-bg-color: #000092;
  --header-bg-color-hover: #222;
  --header-menu-color: #fff;
  --header-menu-color-hover: #fff;
  --header-menu-border-opacity: .6;
  --menu-bg-color-hover: #f5f5f5;
  --divider-color: #c5d9e2;
  --text-color: #000;
  --text-color-gray: #666;
  --copyright-text-color: #000092;
  --link-color: #000092;
  --link-color-hover: #000092;
  --content-link-underline-color: #c5d9e2;
  --list-number-color: #000092;
  --btn-main-bg-color: #e32b2b;
  --btn-main-bg-color-hover: #e32b2b;
  --btn-main-color: #fff;
  --btn-main-color-hover: #fff;
  --btn-main-border-color: #e32b2b;
  --btn-main-border-color-hover: #e32b2b;
  --btn-second-bg-color: #fff;
  --btn-second-bg-color-hover: #fff;
  --btn-second-color: #000;
  --btn-second-color-hover: #000;
  --btn-second-border-color: #c5d9e2;
  --btn-second-border-color-hover: #c5d9e2;
  --spinner-border: #dadada;
  --spinner-color: #000092;
  --notification-bg-color: #cadaea;
  --notification-color: #000;
}

@media only screen and (max-width: 767px) {
  :root {
    --bs-body-font-size: 1.125rem;
  }
}
/**
 * Core Assets > SCSS > Helper functions module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Helper mixins module.
 *
 * @package Media Base Theme
 */
/**
 * Core Assets > SCSS > Blocs module.
 *
 * @package Media Base Theme
 */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-container {
  overflow: hidden;
}

a {
  transition: background, color 0.3s ease-in-out;
  outline: none !important;
  color: var(--text-color);
}
a:focus, a:active {
  text-decoration: none;
  cursor: pointer;
}

@media (hover: hover) {
  a:hover {
    text-decoration: none;
    cursor: pointer;
  }
}
.blocs-grid-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}

/* Preloader */
.page-preloader {
  position: fixed;
  top: 0;
  right: unset;
  bottom: 0;
  left: unset;
  z-index: 1000;
  width: 100%;
  background: var(--bloc-bg-color);
  animation-name: preloader-fade;
  animation-delay: 2s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.preloader-complete {
  animation-delay: 0.1s;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.spinner .spinner-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
}
.spinner .spinner-dot::before {
  width: 15%;
  height: 15%;
  content: "";
  display: block;
  margin: 0 auto;
  background-color: #333;
  border-radius: 100%;
  animation: spinner 1.2s infinite ease-in-out both;
}
.spinner .spinner-dot:nth-child(2) {
  transform: rotate(30deg);
}
.spinner .spinner-dot:nth-child(2)::before {
  animation-delay: -1.1s;
}
.spinner .spinner-dot:nth-child(3) {
  transform: rotate(60deg);
}
.spinner .spinner-dot:nth-child(3)::before {
  animation-delay: -1s;
}
.spinner .spinner-dot:nth-child(4) {
  transform: rotate(90deg);
}
.spinner .spinner-dot:nth-child(4)::before {
  animation-delay: -0.9s;
}
.spinner .spinner-dot:nth-child(5) {
  transform: rotate(120deg);
}
.spinner .spinner-dot:nth-child(5)::before {
  animation-delay: -0.8s;
}
.spinner .spinner-dot:nth-child(6) {
  transform: rotate(150deg);
}
.spinner .spinner-dot:nth-child(6)::before {
  animation-delay: -0.7s;
}
.spinner .spinner-dot:nth-child(7) {
  transform: rotate(180deg);
}
.spinner .spinner-dot:nth-child(7)::before {
  animation-delay: -0.6s;
}
.spinner .spinner-dot:nth-child(8) {
  transform: rotate(210deg);
}
.spinner .spinner-dot:nth-child(8)::before {
  animation-delay: -0.5s;
}
.spinner .spinner-dot:nth-child(9) {
  transform: rotate(240deg);
}
.spinner .spinner-dot:nth-child(9)::before {
  animation-delay: -0.4s;
}
.spinner .spinner-dot:nth-child(10) {
  transform: rotate(270deg);
}
.spinner .spinner-dot:nth-child(10)::before {
  animation-delay: -0.3s;
}
.spinner .spinner-dot:nth-child(11) {
  transform: rotate(300deg);
}
.spinner .spinner-dot:nth-child(11)::before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.spinner .spinner-dot:nth-child(12) {
  transform: rotate(330deg);
}
.spinner .spinner-dot:nth-child(12)::before {
  animation-delay: -0.1s;
}

@keyframes preloader-fade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes spinner {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
/* Buttons */
button {
  transition: background 0.3s ease-in-out;
  outline: none !important;
}

.btn-d {
  color: var(--btn-main-color);
  background: rgba(0, 0, 0, 0.3);
  border: 0;
}
.btn-d:hover, .btn-d:focus {
  color: var(--btn-main-color);
  background: rgba(0, 0, 0, 0.3);
}

.btn-rd, #footer-col-1 a {
  border-radius: 40px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 28px;
}

/* Bloc padding multi breakpoint */
.bloc {
  width: 100%;
  clear: both;
  padding: 0 20px;
  position: relative;
  display: flex;
}
.bloc .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.bloc-lg {
  padding: 100px 20px;
}

.bloc-sm {
  padding: 20px;
}

@media (min-width: 576px) {
  .bloc-xxl-sm {
    padding: 200px 20px;
  }
  .bloc-xl-sm {
    padding: 150px 20px;
  }
  .bloc-lg-sm {
    padding: 100px 20px;
  }
  .bloc-md-sm {
    padding: 50px 20px;
  }
  .bloc-sm-sm {
    padding: 20px;
  }
  .bloc-no-padding-sm {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .bloc-xxl-md {
    padding: 200px 20px;
  }
  .bloc-xl-md {
    padding: 150px 20px;
  }
  .bloc-lg-md {
    padding: 100px 20px;
  }
  .bloc-md-md {
    padding: 50px 20px;
  }
  .bloc-sm-md {
    padding: 20px 20px;
  }
  .bloc-no-padding-md {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .bloc-xxl-lg {
    padding: 200px 20px;
  }
  .bloc-xl-lg {
    padding: 150px 20px;
  }
  .bloc-lg-lg {
    padding: 100px 20px;
  }
  .bloc-md-lg {
    padding: 50px 20px;
  }
  .bloc-sm-lg {
    padding: 20px;
  }
  .bloc-no-padding-lg {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .bloc {
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
  }
  .bloc-group {
    display: block;
    width: 100%;
  }
  .bloc-group .bloc {
    display: block;
    width: 100%;
  }
}
/* Custom Style */
#scroll-to-top {
  width: 36px;
  height: 36px;
  position: fixed;
  top: unset;
  right: 20px;
  bottom: 20px;
  left: unset;
  z-index: 2;
  padding: 5px;
  opacity: 0;
  border: none;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
#scroll-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
#scroll-to-top path {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  fill-rule: evenodd;
  stroke-linecap: round;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1140px;
}

/**
 * Core Assets > SCSS > Global.
 *
 * @package Media Base Theme
 */
body {
  background-color: var(--body-bg-color);
  color: var(--text-color);
}

body:not(.wp-admin) #wpadminbar {
  position: absolute;
}

main {
  margin-top: 56px;
}

.admin-bar main {
  margin-top: 100px;
}

.bloc-section {
  background-color: var(--bloc-bg-color);
}

.sidebar .block {
  margin-bottom: 2rem;
}
.sidebar .block h2,
.sidebar .block h2 a {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--link-color);
}
.sidebar .block h2 a:has(img) {
  display: inline-block;
}
.sidebar .block.featured-articles h2,
.sidebar .block.featured-articles h2 a {
  color: #fff;
}

#right-sidebar {
  height: 100%;
  will-change: min-height;
  overflow: hidden;
}

#sticky-widget {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

#custom-background-link:after {
  z-index: 0;
  /*height: 100vh;*/
}

.row.has-custom-background {
  background-color: #fff;
  margin-right: 0;
  margin-left: 0;
}
.row.has-custom-background > * {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
  padding-top: var(--bs-gutter-x);
}

.row-equal-height > [class*=col-] {
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

img.lazy {
  opacity: 0;
  will-change: opacity, visibility;
}
img.lazy.loaded {
  opacity: 1;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loader {
  background-image: url("../../assets/img/loading_2.gif");
  background-position: 50%;
  background-size: 48px;
  background-repeat: no-repeat;
}

.loading-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid;
  border-color: var(--spinner-border);
  border-right-color: var(--spinner-color);
  animation: spinner 0.7s infinite linear;
  position: absolute;
}

.image-na svg {
  width: 60%;
  height: 60%;
  display: block;
  margin: 0 auto;
}
.image-na svg path {
  fill: var(--spinner-border);
}

hr.separator {
  height: 1px;
  border: none;
  background-color: var(--divider-color);
}

.btn, #footer-col-1 a {
  text-align: center;
}

/* Helpers */
.small-shadow, .btn, #footer-col-1 a {
  box-shadow: 0 2px 6px rgba(38, 34, 97, 0.3);
}

.big-shadow, .page .post-content .wp-block-image img,
.single .post-content .wp-block-image img, .page .post-content .wp-block-embed.wp-block-embed-youtube,
.single .post-content .wp-block-embed.wp-block-embed-youtube, #header, .btn-xl {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.reset-list, .breadcrumb, .post-tags, #footer-col-1 ul,
#footer-col-2 ul, .footer-wrapper ul, #menu ul,
#extra-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-gray, .page .post-content figcaption,
.single .post-content figcaption {
  color: var(--text-color-gray);
  font-style: italic;
}

.ratio-16x10 {
  --bs-aspect-ratio: 62.5%;
}

.visually-transparent {
  z-index: 1;
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

/* Admin bar */
#wp-admin-bar-wp-logo,
#wp-admin-bar-customize,
#wp-admin-bar-delete-cache,
#wp-admin-bar-autoptimize-delete-cache {
  display: none !important;
}

#wp-admin-bar-spinupwp > .ab-item {
  cursor: pointer !important;
}
#wp-admin-bar-spinupwp > .ab-item:before {
  content: "\f226";
  top: 2px;
}

@media only screen and (max-width: 767px) {
  .page-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .sm-full-width {
    width: 100% !important;
  }
}
@media only screen and (min-width: 1024px) {
  main {
    margin-top: 130px;
  }
  .admin-bar main {
    margin-top: 164px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: var(--container-width);
  }
  .content-wrapper {
    max-width: 700px;
    margin-right: auto;
  }
  #right-sidebar {
    max-width: 320px;
    margin-left: auto;
  }
  .row.post-list {
    --bs-gutter-x: 40px;
  }
}
/**
 * Core Assets > SCSS > Components.
 *
 * @package Media Base Theme
 */
.link, #footer-col-2 a, .footer-wrapper a {
  background-color: transparent;
  color: var(--link-color);
  border-color: transparent;
}
.link:focus, #footer-col-2 a:focus, .footer-wrapper a:focus, .link:active, #footer-col-2 a:active, .footer-wrapper a:active, .link.active, #footer-col-2 a.active, .footer-wrapper a.active {
  background-color: transparent;
  color: var(--link-color-hover);
}
@media (hover: hover) {
  .link:hover, #footer-col-2 a:hover, .footer-wrapper a:hover {
    background-color: transparent;
    color: var(--link-color-hover);
    border-color: transparent;
  }
}
.link, #footer-col-2 a, .footer-wrapper a, .link + svg, #footer-col-2 a + svg, .footer-wrapper a + svg {
  cursor: pointer;
}
.link + svg path, #footer-col-2 a + svg path, .footer-wrapper a + svg path {
  stroke: var(--link-color);
  fill: var(--link-color);
}

.link-text {
  background-color: transparent;
  color: var(--text-color);
  border-color: transparent;
}
.link-text:focus, .link-text:active, .link-text.active {
  background-color: transparent;
  color: var(--link-color);
}
@media (hover: hover) {
  .link-text:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}

/* Icon */
.popup-menu .icon,
.btn .icon,
#footer-col-1 a .icon {
  display: inline-block;
  margin-right: 3px;
}
.popup-menu svg,
.btn svg,
#footer-col-1 a svg {
  width: 100%;
  height: 100%;
}
.popup-menu path,
.btn path,
#footer-col-1 a path {
  fill: currentColor;
}

.popup-menu .icon {
  width: 28px;
  height: 28px;
}

/* Button */
.btn, #footer-col-1 a {
  display: inline-block;
  border: 1px solid;
}

.btn-sm, #footer-col-1 a,
.btn-md,
.btn-lg {
  font-weight: 700;
}

.btn-md {
  padding: 10px 20px;
}

.btn-main {
  background-color: var(--btn-main-bg-color);
  color: var(--btn-main-color);
  border-color: transparent;
}
.btn-main:focus, .btn-main:active, .btn-main.active {
  background-color: var(--btn-main-bg-color-hover);
  color: var(--btn-main-color-hover);
}
@media (hover: hover) {
  .btn-main:hover {
    background-color: var(--btn-main-bg-color-hover);
    color: var(--btn-main-color-hover);
    border-color: transparent;
  }
}

.btn-second, #footer-col-1 a {
  background-color: var(--btn-second-bg-color);
  color: var(--btn-second-color);
  border-color: var(--btn-second-border-color);
}
.btn-second:focus, #footer-col-1 a:focus, .btn-second:active, #footer-col-1 a:active, .btn-second.active, #footer-col-1 a.active {
  background-color: var(--btn-second-bg-color-hover);
  color: var(--btn-second-color-hover);
}
@media (hover: hover) {
  .btn-second:hover, #footer-col-1 a:hover {
    background-color: var(--btn-second-bg-color-hover);
    color: var(--btn-second-color-hover);
    border-color: var(--btn-second-border-color-hover);
  }
}

/* Popup menu */
.popup-menu {
  position: relative;
}
.popup-menu > .toggle:after {
  position: absolute;
  top: 100%;
  right: unset;
  bottom: unset;
  left: 0;
  width: 100%;
  height: 15px;
  content: "";
}
.popup-menu > ul {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .5s;
  position: absolute;
  top: auto;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--bloc-bg-color);
  border: 1px solid var(--bloc-border-color);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  width: 150px;
  transform: translate(0, 40px);
  will-change: opacity, transform;
}
.popup-menu.expanded > ul, .popup-menu:not(.expanded):hover > ul {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 15px);
}
.popup-menu li + li {
  border-top: 2px solid var(--bloc-border-color);
}
.popup-menu li a {
  display: block;
  font-size: 0.875rem;
  padding: 7px 14px;
}
.popup-menu li:hover > a {
  background-color: var(--menu-bg-color-hover);
}
.popup-menu li:hover > a path {
  fill: currentColor;
}

/* Social share */
#share-widget ul {
  top: 40px;
  right: 0;
  left: unset;
}

/* Featured articles */
.featured-articles .taxonomy-heading a {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: var(--header-bg-color);
  color: #fff;
  border-color: transparent;
}
.featured-articles .taxonomy-heading a:focus, .featured-articles .taxonomy-heading a:active, .featured-articles .taxonomy-heading a.active {
  background-color: var(--header-bg-color);
  color: #fff;
}
@media (hover: hover) {
  .featured-articles .taxonomy-heading a:hover {
    background-color: var(--header-bg-color);
    color: #fff;
    border-color: transparent;
  }
}
.featured-articles .taxonomy-heading a {
  display: block;
}
.featured-articles .load-more {
  font-size: 12px;
  font-size: 0.75rem;
}
.featured-articles .button-wrapper .icon-arrow {
  display: inline-block;
  margin-left: 3px;
}
.featured-articles .button-wrapper .loading-indicator {
  width: 16px;
  height: 16px;
  border-width: 2px;
  display: none;
  position: relative;
}
.featured-articles .button-wrapper.disable .icon-arrow {
  display: none;
}
.featured-articles .button-wrapper.disable .loading-indicator {
  display: inline-block;
  vertical-align: middle;
}

/* Most popular articles */
.also-read-articles h2,
.toplytics-popular-posts h2,
.toplytics-rss-feed h2 {
  font-size: 18px;
  font-size: 1.125rem;
}

.also-read-articles ol, .also-read-articles ul,
.toplytics-popular-posts ol,
.toplytics-popular-posts ul,
.toplytics-rss-feed ol,
.toplytics-rss-feed ul {
  padding-left: 0;
}
.also-read-articles ol,
.toplytics-popular-posts ol,
.toplytics-rss-feed ol {
  list-style: none;
  counter-reset: item;
}
.also-read-articles li,
.toplytics-popular-posts li,
.toplytics-rss-feed li {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
  position: relative;
}
.also-read-articles .post-title,
.toplytics-popular-posts .post-title,
.toplytics-rss-feed .post-title {
  font-size: 20px;
  font-size: 1.25rem;
}
.also-read-articles a,
.toplytics-popular-posts a,
.toplytics-rss-feed a {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .8s;
}

.toplytics-popular-posts li,
.toplytics-rss-feed li {
  border-bottom: 1px solid var(--divider-color);
  counter-increment: item;
  padding-left: 4rem;
  position: relative;
}
.toplytics-popular-posts li:before,
.toplytics-rss-feed li:before {
  font-size: 28px;
  font-size: 1.75rem;
  color: var(--list-number-color);
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 1rem;
}

/* RSS Feed */
.toplytics-rss-feed h2 img {
  max-height: 36px;
  max-width: 175px;
}
.toplytics-rss-feed .post-title {
  font-size: 16px;
  font-size: 1rem;
}
.toplytics-rss-feed li {
  padding-left: 3rem;
}
.toplytics-rss-feed li:before {
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--list-number-color);
}
.toplytics-rss-feed.template-2 li {
  padding-left: 0;
}
.toplytics-rss-feed.template-2 li:before {
  display: none;
}
.toplytics-rss-feed .link, .toplytics-rss-feed #footer-col-2 a, #footer-col-2 .toplytics-rss-feed a, .toplytics-rss-feed .footer-wrapper a, .footer-wrapper .toplytics-rss-feed a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
#bottom-sidebar .also-read-articles h2,
#bottom-sidebar .also-read-articles h2 a,
#bottom-sidebar .toplytics-rss-feed h2,
#bottom-sidebar .toplytics-rss-feed h2 a,
#bottom-sidebar #article_bottom_widget_mobile h2,
#bottom-sidebar #article_bottom_widget_mobile h2 a,
#bottom-sidebar-desktop .also-read-articles h2,
#bottom-sidebar-desktop .also-read-articles h2 a,
#bottom-sidebar-desktop .toplytics-rss-feed h2,
#bottom-sidebar-desktop .toplytics-rss-feed h2 a,
#bottom-sidebar-desktop #article_bottom_widget_mobile h2,
#bottom-sidebar-desktop #article_bottom_widget_mobile h2 a,
#bottom-sidebar-mobile .also-read-articles h2,
#bottom-sidebar-mobile .also-read-articles h2 a,
#bottom-sidebar-mobile .toplytics-rss-feed h2,
#bottom-sidebar-mobile .toplytics-rss-feed h2 a,
#bottom-sidebar-mobile #article_bottom_widget_mobile h2,
#bottom-sidebar-mobile #article_bottom_widget_mobile h2 a,
.widget .also-read-articles h2,
.widget .also-read-articles h2 a,
.widget .toplytics-rss-feed h2,
.widget .toplytics-rss-feed h2 a,
.widget #article_bottom_widget_mobile h2,
.widget #article_bottom_widget_mobile h2 a {
  font-size: 18px;
  font-size: 1.125rem;
}

/* Notification */
.featured-articles .taxonomy-heading a,
.notification a {
  border-radius: 4px;
  display: block;
  padding: 8px 12px;
}

.notification a {
  font-size: 16px;
  font-size: 1rem;
  background-color: var(--notification-bg-color);
  color: var(--notification-color);
}

/* Ultimate blocks */
.ub_table-of-contents li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* Rank Match block */
.rank-math-block .rank-math-question {
  font-size: 20px;
  font-size: 1.25rem;
}

/* Banner Ads */
.adspot-wrapper {
  text-align: center;
}
.adspot-wrapper > *:first-of-type {
  margin: 0 auto !important;
}
.adspot-wrapper > *:first-of-type:not(:empty) {
  margin-bottom: 2rem !important;
}
.adspot-wrapper > iframe:first-of-type {
  margin-bottom: 2rem !important;
}

#main > .adspot-wrapper > *:first-of-type {
  margin-bottom: 0 !important;
}

/* Google Ads */
.adsbygoogle {
  text-align: left;
}
.adsbygoogle[data-ad-status=unfilled] {
  /*background-color: red;*/
  display: none !important;
  height: 0 !important;
}
.adsbygoogle[data-ad-status=unfilled] * {
  display: none !important;
  height: 0 !important;
}

@media only screen and (max-width: 767px) {
  .also-read-articles li,
  .toplytics-popular-posts li,
  .toplytics-rss-feed li {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .also-read-articles .post-title,
  .toplytics-popular-posts .post-title,
  .toplytics-rss-feed .post-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .toplytics-rss-feed .post-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .notification a {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .rank-math-block .rank-math-question {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .ub_table-of-contents li {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* Carousel */
.recommendation-carousel {
  overflow: hidden;
}
.recommendation-carousel .swiper-wrapper {
  display: flex;
  overflow-x: auto;
}
.recommendation-carousel .swiper-slide {
  min-width: 55%;
}
.recommendation-carousel .swiper-slide:not(:last-child) {
  margin-right: 25px;
}

/**
 * Core Assets > SCSS > Animation module.
 *
 * @package Media Base Theme
 */
.fx, .page .post-content a,
.single .post-content a, .post-image img, .footer-wrapper a, img.lazy {
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
}

.fx-short, #header {
  --animate-duration: .5s;
}

.fx-medium, .page .post-content a,
.single .post-content a, .footer-wrapper a, img.lazy {
  --animate-duration: .8s;
}

.fx-long {
  --animate-duration: 1s;
}

.fx-text-border > a::before, .breadcrumb li > a::before {
  width: 100%;
  height: 4px;
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
  --animate-duration: .5s;
  content: "";
  background-color: var(--link-color-hover);
  transform: scale3d(0, 1, 1);
  transform-origin: 50% 50%;
  will-change: transform;
}
.fx-text-border:hover > a, .breadcrumb li:hover > a, .fx-text-border:focus > a, .breadcrumb li:focus > a, .fx-text-border.active > a, .breadcrumb li.active > a {
  color: var(--link-color-hover);
}
.fx-text-border:hover > a::before, .breadcrumb li:hover > a::before, .fx-text-border:focus > a::before, .breadcrumb li:focus > a::before, .fx-text-border.active > a::before, .breadcrumb li.active > a::before {
  transform: scale3d(1, 1, 1);
}

.fx-fadein,
.fx-fadeinout {
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  visibility: hidden;
  will-change: opacity, visibility;
}
.fx-fadein.visible,
.fx-fadeinout.visible {
  opacity: 1;
  transform: none;
}

.fx-fadeinout.invisible {
  opacity: 0;
  transform: translate3d(0, -80px, 0);
  visibility: hidden;
}

@keyframes menu-scroll {
  0% {
    transform: translateY(-130px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loader {
  100% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(360deg);
  }
}
/**
 * Core Assets > SCSS > Header.
 *
 * @package Media Base Theme
 */
#header {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 1000;
  width: 100%;
}

#header-overlay {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.88);
  display: none;
}

#header.expanded ~ #header-overlay {
  display: block;
}
#header.expanded ~ main, #header.expanded ~ footer {
  filter: blur(10px);
}

.admin-bar #header {
  top: 32px;
}

.navbar {
  --bs-navbar-padding-y: 0;
}

/* Logo */
.navbar-brand img {
  max-width: 245px;
  max-height: 48px;
}

/* Menu */
#menu li,
#extra-menu li {
  position: relative;
}
#menu a,
#extra-menu a {
  font-weight: 700;
  display: block;
  position: relative;
}

#extra-menu-wrapper {
  order: 3;
}
#extra-menu-wrapper::after {
  position: absolute;
  top: 100%;
  right: -20px;
  bottom: unset;
  left: unset;
  width: 200px;
  height: 20px;
  content: "";
}
#extra-menu-wrapper > ul {
  transform: translate(0, 95px);
}
#extra-menu-wrapper:hover > ul {
  animation-delay: 1s;
  transform: translate(0, 65px);
}

/* Menu toggle */
#nav-toggle {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  padding: 0;
}
#nav-toggle.absolute {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

#extra-menu-toggle {
  background-color: transparent;
  color: #fff;
  border-color: transparent;
}
#extra-menu-toggle:focus, #extra-menu-toggle:active, #extra-menu-toggle.active {
  background-color: transparent;
  color: #fff;
}
@media (hover: hover) {
  #extra-menu-toggle:hover {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
}

.line {
  fill: none;
  stroke: var(--text-color);
  stroke-width: 4;
  will-change: stroke-dasharray, stroke-dashoffset;
}

.line-1 {
  stroke-dasharray: 60 207;
}

.line-2 {
  stroke-dasharray: 60 60;
}

.line-3 {
  stroke-dasharray: 60 207;
}

.opened .line-1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.opened .line-2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.opened .line-3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/* Mobile menu */
@media only screen and (max-width: 768px) {
  .admin-bar #header {
    top: 47px;
  }
}
@media only screen and (max-width: 1023px) {
  .navbar-brand {
    --bs-navbar-brand-margin-end: 0;
  }
  .nav-wrapper,
  .menu-wrapper {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--animate-duration-short) ease-in-out;
    will-change: grid-template-rows;
  }
  .nav-wrapper.expanded,
  #menu .expanded > .menu-wrapper {
    grid-template-rows: 1fr;
  }
  #menu {
    display: block;
    overflow: hidden;
    width: 100%;
    /* Sub menu */
    /* Menu item */
  }
  #menu .toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: unset;
    left: unset;
    z-index: 1;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
  }
  #menu .toggle::before, #menu .toggle::after {
    position: absolute;
    top: 50%;
    right: unset;
    bottom: unset;
    left: 50%;
    width: 70%;
    height: 2px;
    content: "";
    display: block;
    background-color: var(--bloc-bg-color);
    opacity: 0.75;
    transition: var(--animate-duration-short) ease;
    will-change: opacity, transform;
  }
  #menu .toggle::before {
    transform: translate(-50%, -50%);
  }
  #menu .toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #menu .expanded > a {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
    border-color: transparent;
  }
  #menu .expanded > a:focus, #menu .expanded > a:active, #menu .expanded > a.active {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
  }
}
@media only screen and (max-width: 1023px) and (hover: hover) {
  #menu .expanded > a:hover {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color-hover);
    border-color: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  #menu .expanded > .toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }
  #menu .expanded > .toggle::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  #menu .sub-menu {
    overflow: hidden;
  }
  #menu > li:first-child {
    margin-top: 16px;
  }
  #menu > li:last-child {
    margin-bottom: 16px;
  }
  #menu li::after {
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
    left: -50%;
    width: 200%;
    height: 2px;
    content: "";
    background: var(--bloc-border-color);
    opacity: var(--header-menu-border-opacity);
  }
  #menu li:first-child::after {
    display: none;
  }
  #menu li a {
    background-color: transparent;
    color: var(--text-color);
    border-color: transparent;
  }
  #menu li a:focus, #menu li a:active, #menu li a.active {
    background-color: transparent;
    color: var(--link-color);
  }
}
@media only screen and (max-width: 1023px) and (hover: hover) {
  #menu li a:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  #menu li a {
    padding: 15px 10px;
  }
  #menu ul li a {
    padding-left: 20px;
  }
  #menu ul li li a {
    padding-left: 30px;
  }
  #menu ul li li li a {
    padding-left: 40px;
  }
  #menu ul li li li li a {
    padding-left: 50px;
  }
  #menu ul li li li li li a {
    padding-left: 60px;
  }
  #menu ul li li li li li li a {
    padding-left: 70px;
  }
  #menu ul li li li li li li li a {
    padding-left: 80px;
  }
  #menu ul li li li li li li li li a {
    padding-left: 90px;
  }
  #menu ul li li li li li li li li li a {
    padding-left: 100px;
  }
}
/* Desktop menu */
@media only screen and (min-width: 1024px) {
  #header {
    background-color: var(--header-bg-color);
  }
  #header.sticky {
    animation: menu-scroll 1s forwards;
    position: fixed;
  }
  #header.sticky .navbar-brand img {
    max-width: 100px;
    height: auto;
  }
  #menu .toggle {
    display: none;
  }
  #menu {
    position: relative;
    text-transform: uppercase;
    flex-wrap: nowrap;
  }
  #menu > li > a::before {
    width: 100%;
    height: 4px;
    position: absolute;
    top: unset;
    right: unset;
    bottom: -3px;
    left: 0;
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    content: "";
    background-color: var(--header-menu-color-hover);
    transform: scale3d(0, 1, 1);
    transform-origin: 50% 50%;
    will-change: transform;
  }
  #menu > li:hover > a, #menu > li:focus > a, #menu > li.active > a {
    color: var(--header-menu-color-hover);
  }
  #menu > li:hover > a::before, #menu > li:focus > a::before, #menu > li.active > a::before {
    transform: scale3d(1, 1, 1);
  }
  #menu > li {
    display: inline-block;
    padding: 0 20px;
  }
  #menu > li:first-child {
    padding-left: 0;
  }
  #menu > li:last-child {
    padding-right: 0;
  }
  #menu > li:last-child > .menu-wrapper {
    left: auto;
    right: 0;
  }
  #menu > li > a {
    background-color: transparent;
    color: var(--header-menu-color);
    border-color: transparent;
  }
  #menu > li > a:focus, #menu > li > a:active, #menu > li > a.active {
    background-color: transparent;
    color: var(--header-menu-color-hover);
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #menu > li > a:hover {
    background-color: transparent;
    color: var(--header-menu-color-hover);
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #menu > li > a {
    padding: 18px 0;
  }
  #menu > li > a::before {
    position: absolute;
    top: 0;
    right: unset;
    bottom: unset;
    left: 0;
  }
  #menu a {
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    background-color: transparent;
    color: var(--text-color);
    border-color: transparent;
  }
  #menu a:focus, #menu a:active, #menu a.active {
    background-color: transparent;
    color: var(--link-color);
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #menu a:hover {
    background-color: transparent;
    color: var(--link-color);
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #extra-menu {
    background-color: var(--header-bg-color);
    border: 0;
    right: -20px;
    left: unset;
    min-width: 200px;
  }
  #extra-menu::before {
    position: absolute;
    top: -10px;
    right: 20px;
    bottom: unset;
    left: unset;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-width: 0 10px 12px 10px;
    border-color: transparent transparent var(--header-bg-color) transparent;
  }
  #extra-menu li + li {
    border-color: rgba(0, 0, 0, 0.2);
  }
  #extra-menu > li > a {
    font-size: 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
  #extra-menu > li > a:focus, #extra-menu > li > a:active, #extra-menu > li > a.active {
    background-color: transparent;
    color: #fff;
  }
}
@media only screen and (min-width: 1024px) and (hover: hover) {
  #extra-menu > li > a:hover {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  #extra-menu > li > a {
    padding: 10px 14px;
  }
  #menu .menu-wrapper,
  #extra-menu .menu-wrapper {
    transition: all var(--animate-duration) cubic-bezier(0, 0, 0.2, 1);
    --animate-duration: .5s;
    position: absolute;
    top: auto;
    right: unset;
    bottom: unset;
    left: 0;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--bloc-bg-color);
    border: 1px solid var(--bloc-border-color);
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    width: 200px;
    transform: translate(0, 40px);
    will-change: opacity, transform;
  }
  #menu li:hover > .menu-wrapper,
  #extra-menu li:hover > .menu-wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
  }
  #menu ul,
  #extra-menu ul {
    padding: 16px 0;
  }
  #menu ul li,
  #extra-menu ul li {
    display: block;
    padding: 0;
    position: relative;
  }
  #menu ul li.menu-item-has-children > a::after,
  #extra-menu ul li.menu-item-has-children > a::after {
    position: absolute;
    top: 6px;
    right: 20px;
    bottom: unset;
    left: unset;
    content: "●";
    font-size: 18px;
  }
  #menu ul li:hover > a,
  #extra-menu ul li:hover > a {
    background-color: var(--menu-bg-color-hover);
    color: var(--link-color);
  }
  #menu ul li a,
  #extra-menu ul li a {
    font-size: 14px;
    padding: 10px 30px;
    text-transform: capitalize;
  }
  #menu ul li > .menu-wrapper,
  #extra-menu ul li > .menu-wrapper {
    left: 100%;
    top: -16px;
  }
  #menu ul li > .menu-wrapper.left,
  #extra-menu ul li > .menu-wrapper.left {
    left: -100%;
  }
}
/**
 * Core Assets > SCSS > Footer.
 *
 * @package Media Base Theme
 */
footer {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 10px solid var(--header-bg-color);
}
footer .site-brand {
  padding: 1rem 0;
}

.footer-wrapper {
  padding: 35px 0;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}
.footer-wrapper p {
  margin: 0;
}
.footer-wrapper a::before {
  content: "●";
  font-size: 14px;
  margin-right: 8px;
  vertical-align: text-bottom;
}

.site-tagline {
  font-size: 10px;
  font-size: 0.625rem;
  color: var(--copyright-text-color);
}

.copyright-text {
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--copyright-text-color);
}
.copyright-text a {
  color: var(--copyright-text-color);
}

#footer-col-1 li,
#footer-col-2 li {
  display: inline-block;
  transition-delay: calc(0.25s * var(--index));
}
#footer-col-1 a,
#footer-col-2 a {
  font-size: 12px;
  font-size: 0.75rem;
}

#footer-col-1 a {
  box-shadow: none;
  border-radius: 8px;
  margin: 5px 5px 5px 0;
  padding: 4px 8px;
  text-transform: uppercase;
}

#footer-col-2 a {
  display: inline-block;
  margin: 5px 10px 5px 0;
  text-transform: uppercase;
}
#footer-col-2 a:hover {
  text-decoration: underline;
}

/**
 * Core Assets > SCSS > Article page.
 *
 * @package Media Base Theme
 */
/* Post list > Post item */
.post-list div:not(.col-md-6) .post-item .post-title {
  font-size: 25px;
  font-size: 1.5625rem;
}

.post-item {
  flex-grow: 1;
  /*&:hover .post-image img {
    transform: scale3d(1.1,1.1,1.1);
  }*/
}
.post-item .post-content {
  flex-grow: 2;
}
.post-item .post-title,
.post-item .post-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.post-item .post-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-clamp: 5;
  -webkit-line-clamp: 5;
}
.post-item .post-description {
  line-clamp: 4;
  -webkit-line-clamp: 4;
}
.post-item .post-description p {
  margin: 0;
}

.post-image {
  border-radius: 6px;
  overflow: hidden;
}
.post-image img {
  z-index: 1;
  background-color: var(--bloc-bg-color);
  flex-shrink: 0;
  position: relative;
}

.image-caption,
.video-caption {
  font-size: 12px;
  font-size: 0.75rem;
}

.page .post-content,
.single .post-content {
  line-height: 1.4;
}
.page .post-content .wp-block-embed,
.page .post-content .wp-block-image,
.single .post-content .wp-block-embed,
.single .post-content .wp-block-image {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.page .post-content .wp-block-embed.wp-block-embed-youtube,
.single .post-content .wp-block-embed.wp-block-embed-youtube {
  border-radius: 6px;
  overflow: hidden;
}
.page .post-content .wp-block-embed.wp-block-embed-youtube iframe,
.single .post-content .wp-block-embed.wp-block-embed-youtube iframe {
  width: 100%;
}
.page .post-content .wp-block-image,
.single .post-content .wp-block-image {
  text-align: center;
}
.page .post-content .wp-block-image img,
.single .post-content .wp-block-image img {
  border-radius: 6px;
  display: inherit;
  margin: 0 auto;
}
.page .post-content .wp-block-heading,
.single .post-content .wp-block-heading {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.page .post-content .wp-block-image .alignleft,
.page .post-content .wp-block-image .alignright,
.single .post-content .wp-block-image .alignleft,
.single .post-content .wp-block-image .alignright {
  float: none;
  margin: 0;
}
.page .post-content .wp-block-image.no-shadow img,
.single .post-content .wp-block-image.no-shadow img {
  box-shadow: none !important;
}
.page .post-content figcaption,
.single .post-content figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: left;
}
.page .post-content figure.alignright figcaption,
.single .post-content figure.alignright figcaption {
  text-align: right;
}
.page .post-content figure.aligncenter figcaption,
.single .post-content figure.aligncenter figcaption {
  text-align: center;
}
.page .post-content a,
.single .post-content a {
  border-bottom: 3px solid var(--content-link-underline-color);
}
.page .post-content .tiktok-embed,
.single .post-content .tiktok-embed {
  max-width: 325px !important;
  margin-left: 0;
}
.page .post-content .featured-articles a,
.single .post-content .featured-articles a {
  border-bottom: 0;
}
.page .post-content .toplytics-popular-posts li,
.single .post-content .toplytics-popular-posts li {
  border: 0;
}
.page .post-content .adspot-wrapper > *:first-of-type:not(:empty),
.single .post-content .adspot-wrapper > *:first-of-type:not(:empty) {
  margin-bottom: 1rem !important;
}

.single .also-read-articles:not(.block) {
  border-top: 1px solid var(--divider-color);
}

.post-action {
  border-top: 1px solid var(--divider-color);
}

.post-tags li {
  display: inline-block;
  transition-delay: calc(0.25s * var(--index));
}
.post-tags li:nth-child(1) {
  --index: 1;
}
.post-tags li:nth-child(2) {
  --index: 2;
}
.post-tags li:nth-child(3) {
  --index: 3;
}
.post-tags li:nth-child(4) {
  --index: 4;
}
.post-tags li:nth-child(5) {
  --index: 5;
}
.post-tags li:nth-child(6) {
  --index: 6;
}
.post-tags li:nth-child(7) {
  --index: 7;
}
.post-tags li:nth-child(8) {
  --index: 8;
}
.post-tags li:nth-child(9) {
  --index: 9;
}
.post-tags li:nth-child(10) {
  --index: 10;
}
.post-tags li:nth-child(11) {
  --index: 11;
}
.post-tags li:nth-child(12) {
  --index: 12;
}
.post-tags li:nth-child(13) {
  --index: 13;
}
.post-tags li:nth-child(14) {
  --index: 14;
}
.post-tags li:nth-child(15) {
  --index: 15;
}
.post-tags li:nth-child(16) {
  --index: 16;
}
.post-tags li:nth-child(17) {
  --index: 17;
}
.post-tags li:nth-child(18) {
  --index: 18;
}
.post-tags li:nth-child(19) {
  --index: 19;
}
.post-tags li:nth-child(20) {
  --index: 20;
}
.post-tags li a {
  font-size: 11px;
  font-size: 0.6875rem;
  box-shadow: none;
  border-radius: 8px;
  margin: 5px 5px 5px 0;
  padding: 4px 8px;
  text-transform: uppercase;
}

.post-meta {
  font-size: 13px;
  font-size: 0.8125rem;
  word-wrap: break-word;
}
.post-meta span + span::before {
  content: "/";
  margin: 0;
}
.post-meta span:empty::before {
  display: none;
}
.post-meta time {
  display: none;
}

.post-title + .post-meta {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .post-list div:not(.col-md-6) .post-item .post-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .post-item .post-title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .page .post-content .wp-block-heading,
  .single .post-content .wp-block-heading {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .page .post-content figcaption,
  .single .post-content figcaption {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1024px) {
  .post-item.hero-item .post-title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .post-item.hero-item .post-meta {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page:not(.page-template-page-no-sidebar-ads),
  .single {
    /*.also-read-articles:not(.block) {
      margin-left: 10%;
    }*/
  }
  .page:not(.page-template-page-no-sidebar-ads) .post-content .instagram-media,
  .single .post-content .instagram-media {
    margin-left: 10% !important;
  }
  .page:not(.page-template-page-no-sidebar-ads) .post-content > *,
  .single .post-content > * {
    margin-left: 10%;
  }
  .page:not(.page-template-page-no-sidebar-ads) .post-content > .video-ads, .page:not(.page-template-page-no-sidebar-ads) .post-content > #sportivo-video-wrapper,
  .single .post-content > .video-ads,
  .single .post-content > #sportivo-video-wrapper {
    margin-left: 0;
  }
}
/**
 * Core Assets > SCSS > Category page.
 *
 * @package Media Base Theme
 */
.breadcrumb {
  font-weight: 700;
}
.breadcrumb li {
  display: inline-block;
  position: relative;
}
.breadcrumb .separator {
  margin: 0 8px;
}

.taxonomy-description a {
  text-decoration: underline;
}
.taxonomy-description h2,
.taxonomy-description .wp-block-heading {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

/**
 * Core Assets > SCSS > 404 page.
 *
 * @package Media Base Theme
 */
.error404 h1 {
  font-size: 60px;
}

/**
 * Core Assets > SCSS > Typography module.
 *
 * @package Media Base Theme
 */
.roboto-regular, body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-condensed-bold, .also-read-articles .post-title,
.toplytics-popular-posts .post-title,
.toplytics-rss-feed .post-title, .featured-articles .taxonomy-heading a,
.notification a {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.roboto-mono-regular, .toplytics-popular-posts li:before,
.toplytics-rss-feed li:before, .toplytics-rss-feed .link, .toplytics-rss-feed .footer-wrapper a, .footer-wrapper .toplytics-rss-feed a, #footer-col-1 a,
#footer-col-2 a, .image-caption,
.video-caption, .page .post-content figcaption,
.single .post-content figcaption {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.kontrapunkt-light, .toplytics-rss-feed.kontrapunkt li:before, .toplytics-rss-feed.kontrapunkt .link, .toplytics-rss-feed.kontrapunkt .footer-wrapper a, .footer-wrapper .toplytics-rss-feed.kontrapunkt a, .toplytics-rss-feed.kontrapunkt #footer-col-2 a, #footer-col-2 .toplytics-rss-feed.kontrapunkt a {
  font-family: "kontrapunktlight";
}

.kontrapunkt-bold, .toplytics-rss-feed.kontrapunkt .post-title {
  font-family: "kontrapunktbold";
}

/*# sourceMappingURL=style_2025.css.map */
