@charset "UTF-8";
:root {
  --mtxh-color-none: rgba(0,0,0,0);
  --mtxh-color-white: #fff;
  --mtxh-font-weight-heading-bold: 700;
  --mtxh-color-main: #007bc7;
  --mtxh-color-main-rgb: 72, 171, 255;
  --mtxh-color-main-light: #EBF5FD;
  --mtxh-color-alt: #001441;
  --mtxh-color-alt-rgb: 0, 20, 65;
  --mtxh-color-dark-grey: #1e1e1e;
  --mtxh-color-medium-grey: #757575;
  --mtxh-color-light-grey: #cccccc;
  --mtxh-color-faint-grey: #f2f2f2;
  --mtxh-color-black: #000;
  --mtxh-color-black-rgb: 0, 0, 0;
  --mtxh-color-border-main: var(--mtxh-color-medium-grey);
  --mtxh-color-error: #ea3d3d;
  --mtxh-color-success: #49873e;
  --mtxh-color-info: #ff9100;
}

/**
 * global.css
 * Global styling used across theme
 * @package Motrolix_Headlines
 */
/**
 * typeface imports
 */
@font-face {
  font-family: "SuisseIntl";
  font-weight: 400;
  src: url("../fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntl";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/SuisseIntl-RegularItalic-WebS.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntl";
  font-weight: 600;
  src: url("../fonts/SuisseIntl-Medium-WebS.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntl";
  font-weight: 700;
  src: url("../fonts/SuisseIntl-SemiBold-WebS.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntlCondensed";
  font-weight: 600;
  src: url("../fonts/SuisseIntlCond-Semibold-WebS.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntlCondensed";
  font-weight: 500;
  src: url("../fonts/SuisseIntlCond-Medium-WebS.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "motrolix-icons";
  src: url("../fonts/motrolix-icons.eot");
  src: url("../fonts/motrolix-icons.eot") format("embedded-opentype"), url("../fonts/motrolix-icons.woff2") format("woff2"), url("../fonts/motrolix-icons.woff") format("woff"), url("../fonts/motrolix-icons.ttf") format("truetype"), url("../fonts/motrolix-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'motrolix-icons';
    src: url('../font/motrolix-icons.svg?54990691#motrolix-icons') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "motrolix-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\e800";
} /* '' */
.icon-twitter:before {
  content: "\e801";
} /* '' */
.icon-linkedin-1:before {
  content: "\e802";
} /* '' */
.icon-pinterest:before {
  content: "\e803";
} /* '' */
.icon-email:before {
  content: "\e804";
} /* '' */
.icon-print:before {
  content: "\e805";
} /* '' */
.icon-search:before {
  content: "\e806";
} /* '' */
.icon-search-1:before {
  content: "\e807";
} /* '' */
.icon-paper-plane-1:before {
  content: "\e808";
} /* '' */
.icon-cancel:before {
  content: "\e809";
  color: white;
} /* '' */
.icon-chat-empty:before {
  content: "\f0e6";
} /* '' */
.icon-paper-plane:before {
  content: "\f1d8";
} /* '' */
.icon-user-o:before {
  content: "\f2c0";
} /* '' */
/**
 * properties
 */
:root {
  --mtxh-border-main: 1px solid var(--mtxh-color-border-main);
  /* --mtxh-typeface-body: 'Noto Sans KR', sans-serif; */
  --mtxh-typeface-body: "SuisseIntl", sans-serif;
  --mtxh-typeface-heading: "SuisseIntlCondensed", sans-serif;
}

/**
 * typography
 */
html, body {
  font-family: var(--mtxh-typeface-body);
  font-size: 18px;
  color: var(--mtxh-color-black);
}

@media (max-width: 767px) {
  html, body {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mtxh-typeface-heading);
  font-weight: 600;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--mtxh-color-main);
}

/**
 * globally-used elements
 */

 /* YouTube Embed Responsive */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.container {
  position: relative;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 576px) and (min-width: 767px) {
  .container {
    max-width: 1300px;
  }
}
.container-wide {
  max-width: 1600px;
}

.mtxh-triangle-right {
  position: absolute;
  left: 100%;
  height: 100%;
  width: auto;
  top: 0;
}

.mtxh-triangle-right polygon,
.mtxh-triangle-alt-right polygon {
  fill: #000;
  transition: fill 0.25s ease;
}

.mtxh-rhombus {
  display: block;
  position: relative;
  margin-top: 0.25em;
  height: 0.2em;
}

.mtxh-rhombus .mtxh-path-1 {
  fill: var(--mtxh-color-rhombus-left);
}

.mtxh-rhombus .mtxh-path-2 {
  fill: var(--mtxh-color-rhombus-middle);
}

.mtxh-rhombus .mtxh-path-3 {
  fill: var(--mtxh-color-rhombus-right);
}

.mtxh-rhombus polygon {
  fill: var(--mtxh-color-main);
  transition: fill 0.25s ease;
}

.mtxh-title {
  line-height: 1.25em;
  font-weight: 700;
}

h2.mtxh-title {
  text-transform: uppercase;
}

.mtxh-title-like {
  text-transform: uppercase;
  line-height: 1.35em;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: var(--mtxh-typeface-heading);
  font-weight: 600 !important;
}

.mtxh-block-link {
  display: block;
  text-decoration: none !important;
}

.mtxh-ad-indicator {
  display: block;
  font-size: 0.65rem;
  color: var(--mtxh-color-dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 0.25rem;
  display: inline-block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.clear {
  clear: both;
}

.container {
  position: relative;
}

.badge {
  border-radius: 0;
  padding: 0.5em 1em 0.5em 1em;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--mtxh-typeface-heading);
  font-weight: 700;
  line-height: 1em;
}

.badge-primary {
  color: var(--mtxh-color-white);
  background-color: var(--mtxh-color-main);
}

.badge-secondary {
  color: var(--mtxh-color-white);
  background-color: var(--mtxh-color-black);
}

.mtxh-section-header {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--mtxh-typeface-heading);
  font-weight: 700;
  line-height: 1em;
  color: var(--mtxh-color-main);
  border-bottom: 1px dotted var(--mtxh-color-black);
  margin-bottom: 1em;
}

.btn {
  border-radius: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--mtxh-typeface-heading);
  border: none;
}

.btn-primary,
.btn-primary-black-bg {
  background-color: var(--mtxh-color-main);
}

.btn-primary:hover {
  background-color: var(--mtxh-color-black);
}

.btn-primary-black-bg:hover {
  background-color: var(--mtxh-color-white);
  color: var(--mtxh-color-black) !important;
}

.mtxh-breadcrumbs .breadcrumb {
  font-family: var(--mtxh-typeface-heading);
  padding: 0;
  background-color: var(--mtxh-color-none);
  border-radius: 0;
  margin-bottom: 10px;
}

.mtxh-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}

.mtxh-breadcrumbs a {
  color: var(--mtxh-color-black);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mtxh-breadcrumbs a:hover {
  color: var(--mtxh-color-main);
}

.mtxh-content-header {
  margin-bottom: 2rem;
}

.modal-backdrop.show {
  opacity: 0.8 !important;
}

.modal-content {
  border-radius: 0;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--mtxh-color-main);
  box-shadow: 0 0 0 0.2rem rgba(var(--mtxh-color-main-rgb), 0.5);
}

/**
 * layout
 */
.mtxh-ad-container {
  text-align: center;
  background-color: var(--mtxh-ad-container-bg);
  padding: var(--mtxh-ad-container-padding);
  margin-bottom: var(--mtxh-ad-container-margin-bottom);
}

.mtxh-title-section {
  margin-bottom: 0.5rem;
}

.ad-widget-area .below-content-ad:first-of-type .mtxh-ad-indicator {
  display: none;
}

/**
 * header.css
 * Styling for header
 * @package Motrolix_Headlines
 */
/**
* header
*/
#mtxh-header {
  margin-bottom: 1rem;
  /* background-color: var(--mtxh-color-black); */
  z-index: 999;
}

@media (max-width: 1199px) {
  #mtxh-header {
    display: none;
  }
}
#mtxh-header.sticky {
  position: sticky;
  top: 0;
}

#mtxh-navbar-secondary {
  background-color: var(--mtxh-color-black) !important;
  padding: 8px 12px 4px 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--mtxh-typeface-heading);
}

#mtxh-navbar-secondary .container {
  padding: 0;
  max-width: 1600px;
}

#mtxh-navbar-secondary li {
  padding: 0 15px;
}

#mtxh-navbar-secondary a {
  color: var(--mtxh-color-white);
  border-bottom: 2px solid var(--mtxh-color-none);
  transition: border 0.25s ease;
  padding: 0 0 2px 0;
  line-height: 1em;
}

#mtxh-navbar-secondary a:hover {
  border-bottom-color: var(--mtxh-color-main);
}

#mtxh-navbar-primary {
  clear: both;
  background-color: var(--mtxh-color-white) !important;
  /* border-bottom: 1px solid var(--mtxh-color-light-grey); */
  border-bottom: 1px solid var(--mtxh-color-none);
  font-family: var(--mtxh-typeface-heading);
  font-weight: var(--mtxh-font-weight-heading-bold);
  padding: 0;
  text-transform: uppercase;
  position: sticky;
  top: 0;
}

#mtxh-navbar-primary-pseudo-bg {
  position: absolute;
  background-color: var(--mtxh-color-main);
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
}

#mtxh-navbar-primary .container {
  padding: 0;
  position: relative;
  padding-left: 315px;
  padding-right: 90px;
  z-index: 2;
  overflow: hidden;
  transition: padding-top 0.25s ease;
  height: 50px;
}

#mtxh-navbar-primary-container .container {
  max-width: 1600px;
}

#mtxh-navbar-primary .container.search-activated {
  padding-top: 50px;
}

#mtxh-logo-min-box {
  position: absolute;
  width: 235px;
  height: 100%;
  top: 0px;
  border-right: 0px solid var(--mtxh-color-none);
  left: 15px;
  overflow: hidden;
  padding: 10px 10px 10px 0;
}

#mtxh-brand-min {
  height: 100%;
  width: auto;
  display: inline-block;
  margin-top: 0px;
}

#mtxh-brand-min img {
  height: 100%;
  width: auto;
}

#mtxh-logo-min-box .mtxh-triangle-alt-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

#mtxh-logo-min-box .mtxh-triangle-alt-right polygon {
  fill: var(--mtxh-color-white);
  stroke-width: 2px;
  stroke: var(--mtxh-color-white);
}

#mtxh-search-icon-box {
  position: absolute;
  width: 65px;
  height: 100%;
  left: 250px;
  top: 0px;
  text-align: center;
  background-color: var(--mtxh-color-white);
  overflow: none;
  color: var(--mtxh-color-black);
}

#mtxh-search-icon-box i {
  line-height: 48px;
}

#mtxh-search-icon-box::after {
  content: "";
  position: absolute;
  right: -26px;
  height: 50px;
  background-image: url("../images/nav-bookend-left.svg");
  background-size: 100% 100%;
  width: 26px;
  top: 0;
  z-index: 2;
}

#mtxh-desktop-search-container {
  position: absolute;
  top: -100%;
  width: calc(100% - 65px - 105px - 235px);
  height: 100%;
  z-index: 999;
  transition: top 0.25s ease;
}

#mtxh-desktop-search-container.search-activated {
  top: 0;
}

#mtxh-desktop-search {
  background-color: var(--mtxh-color-black);
  height: 50px;
  display: block;
  width: 100%;
  color: var(--mtxh-color-white);
  border: none;
  border-radius: 0;
  font-size: 1.5rem;
}

#mtxh-desktop-search::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--mtxh-color-medium-grey);
  opacity: 1;
}

#mtxh-desktop-search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--mtxh-color-medium-grey);
  opacity: 1;
}

#mtxh-desktop-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--mtxh-color-medium-grey);
}

#mtxh-desktop-search::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--mtxh-color-medium-grey);
}

#mtxh-navbar-primary-nav {
  overflow: hidden;
  background-color: var(--mtxh-color-white);
  border-top: 1px solid var(--mtxh-color-white);
  border-bottom: 1px solid var(--mtxh-color-white);
}

#mtxh-navbar-primary-nav > .navbar-nav {
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#mtxh-navbar-primary-nav > .navbar-nav li:first-of-type {
  padding-left: 26px;
}

#mtxh-navbar-primary-nav > .navbar-nav li:last-of-type {
  padding-right: 26px;
}

#mtxh-navbar-primary-nav > .navbar-nav::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

#mtxh-navbar-primary-nav > .navbar-nav .nav-link {
  color: var(--mtxh-color-black);
  transition: color 0.25s ease;
  /* font-weight: 700; */
  font-weight: 600;
}

#mtxh-navbar-primary-nav > .navbar-nav ul {
  display: none !important;
}

#mtxh-navbar-primary-nav > .navbar-nav > li > a {
  letter-spacing: 0.03em;
  transition: color 0.25s ease, background-color 0.25s ease;
  border: 2px solid var(--mtxh-color-none);
}

#mtxh-navbar-primary-nav > .navbar-nav > li > a:not(.active):hover {
  color: var(--mtxh-color-main);
}

#mtxh-navbar-primary-nav > .navbar-nav > li > a.active {
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-main);
  /* border: 2px solid var(--mtxh-color-black); */
  /* border-bottom: none; */
}

@media (min-width: 992px) {
  #mtxh-navbar-primary-nav > .navbar-nav > ul {
    position: absolute;
  }
}
#mtxh-dropdown {
  display: block;
  width: 100%;
  background-color: var(--mtxh-color-black);
  position: absolute;
  margin-top: -2px;
  z-index: 9999;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-bottom: 2px solid var(--mtxh-color-black);
  padding: 0;
}

#mtxh-dropdown::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

#mtxh-dropdown ul {
  list-style: none;
}

#mtxh-dropdown > li {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  padding: 1rem 15px;
}

#mtxh-dropdown > li > a {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--mtxh-typeface-heading);
  font-weight: 700;
  color: var(--mtxh-color-white);
  border-bottom: 1px dotted var(--mtxh-color-none);
  padding: 0 !important;
  line-height: 1em !important;
  transition: border 0.25s ease, color 0.25s ease;
}

#mtxh-dropdown > li > a::after {
  display: none !important;
}

#mtxh-dropdown > li > a:hover {
  border-bottom: 1px dotted var(--mtxh-color-main);
  color: var(--mtxh-color-main);
}

#mtxh-dropdown a {
  color: var(--mtxh-color-white);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}

#mtxh-dropdown a:hover {
  background-color: var(--mtxh-color-none);
  color: var(--mtxh-color-main);
}

#mtxh-dropdown > li > ul { 
  display: none;
}

#mtxh-dropdown > li:hover > ul {
  display: block !important;
}

#mtxh-dropdown ul {
  margin-top: 16px;
  padding: 0;
}

#mtxh-dropdown ul li {
  margin-bottom: 5px;
}

#mtxh-dropdown ul:last-of-type {
  position: fixed;
  background-color: var(--mtxh-color-black);
  width: auto;
  padding: .5rem;
}

#mtxh-dropdown ul li:last-of-type {
  margin-bottom: 0;
}

#mtxh-user-icon-box {
  position: absolute;
  width: 90px;
  height: 100%;
  right: 0px;
  top: 1px;
  /* border-left: 1px dotted var(--mtxh-color-black); */
  /* border-right: 1px dotted var(--mtxh-color-black); */
  text-align: center;
  background-color: var(--mtxh-color-white);
  text-align: right;
  padding: 0 15px 0 0;
  background-size: 15px;
  background-position: right 25px bottom;
  background-repeat: no-repeat;
  background-image: url("../images/blank.svg");
  transition: background 0.125s ease;
}

#mtxh-user-icon-box::before {
  content: "";
  position: absolute;
  left: -26px;
  height: 50px;
  background-image: url("../images/nav-bookend-right.svg");
  background-size: 100% 100%;
  width: 26px;
  top: 0;
  z-index: 2;
}

#mtxh-user-icon-box.active {
  background-image: url("../images/dropdown-triangle.svg");
}

#mtxh-user-icon {
  height: 35px;
  width: 35px;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  border-radius: 9999em;
  overflow: hidden;
  display: inline-block;
  padding: 0;
  transition: background-color 0.25s ease;
  cursor: pointer;
}

#mtxh-user-icon img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

#mtxh-user-icon-login {
  width: 100%;
  height: 100%;
  line-height: 35px;
  text-align: center;
  display: block;
  font-size: 24px;
  color: var(--mtxh-color-main);
}

#mtxh-user-dropdown {
  display: block;
  width: 300px;
  background-color: var(--mtxh-color-black);
  position: absolute;
  z-index: 9999999;
  padding: 0;
  right: 15px;
  top: -1px;
  list-style-type: none;
  color: var(--mtxh-color-white);
}

#mtxh-user-dropdown p {
  font-family: var(--mtxh-typeface-heading);
  font-size: 1.2rem;
  margin: 0;
  padding: 15px;
  color: var(--mtxh-color-white);
  /* background-color: var(--mtxh-color-main); */
}

/* #mtxh-user-dropdown p polygon {
  fill: var(--mtxh-color-black);
} */
#mtxh-user-dropdown a {
  padding: 8px 15px;
  display: block;
  font-weight: 700;
  transition: background-color 0.25s ease;
  text-decoration: none;
  color: var(--mtxh-color-white);
}

#mtxh-user-dropdown a:hover {
  background-color: var(--mtxh-color-main);
}

#mtxh-user-dropdown a i {
  margin-right: 10px;
  opacity: 0.6;
}

#mtxh-user-dropdown hr {
  margin: 0 auto;
  height: 1px;
  width: calc(100% - 30px);
  background-color: var(--mtxh-color-white);
  opacity: 0.4;
}

/**
 * header mobile
 */
#mtxh-header-mobile {
  height: 50px;
  width: 100%;
  position: sticky;
  top: 0;
  margin-bottom: 20px;
  /* border-bottom: 1px solid var(--mtxh-color-light-grey); */
  background-color: var(--mtxh-color-main);
  z-index: 999;
}

@media (min-width: 1200px) {
  #mtxh-header-mobile {
    display: none;
  }
}
body.mobile-menu-open #mtxh-header-mobile {
  position: fixed;
}

body.mobile-menu-open #mtxh-main-container {
  margin-top: 70px;
}

#mtxh-menu-button-box {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 15px;
  width: 50px;
  height: 100%;
  z-index: 999999;
  /* border-right: 1px dotted var(--mtxh-color-black); */
}

#mtxh-menu-button {
  overflow: hidden;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#mtxh-menu-button img {
  height: 100% !important;
  width: auto !important;
  position: absolute;
  top: 0;
  left: -6.4px;
  max-width: 41px !important;
}

#mtxh-brand-mobile {
  height: 32px;
  position: absolute;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#mtxh-brand-mobile img {
  height: 100%;
  width: auto;
}

#mtxh-user-icon-box-mobile {
  position: absolute;
  width: 100px;
  height: 100%;
  right: 0px;
  top: 0px;
  /* border-left: 1px dotted var(--mtxh-color-black); */
  /* border-right: 1px dotted var(--mtxh-color-black); */
  line-height: 50px;
  text-align: center;
  background-color: var(--mtxh-color-white);
  text-align: right;
  padding: 0 15px 0 0;
}

#mtxh-user-icon-box-mobile .mtxh-mobile-header-decor {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

#mtxh-user-icon-box-mobile .mtxh-mobile-header-decor .mtxh-mobile-header-decor-color {
  fill: var(--mtxh-color-main);
  /* stroke: var(--mtxh-color-main); */
}

#mtxh-user-icon-mobile {
  height: 34px;
  width: 34px;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  border-radius: 9999em;
  overflow: hidden;
  padding: 0;
  /* border: 2px solid var(--mtxh-color-black); */
  display: inline-block;
}

#mtxh-user-icon-mobile-login {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 34px;
  color: var(--mtxh-color-main);
  text-align: center;
  font-size: 1.2rem;
}

#mtxh-user-icon-mobile img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

#mtxh-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: 99999;
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-white);
  padding: 15px 15px 15px 15px;
  transition: left 0.5s ease-in-out;
  height: 100vh;
}

#mtxh-mobile-menu-inner {
  overflow: scroll;
  height: 100%;
}

#mtxh-mobile-menu.active {
  left: 0;
}

#mtxh-navbar-primary-nav-mobile > ul {
  padding: 0;
  list-style: none;
}

#mtxh-navbar-primary-nav-mobile a {
  color: var(--mtxh-color-white);
  width: 100%;
  display: block;
  transition: color 0.25s ease, border 0.25s ease;
  border-bottom: 1px solid var(--mtxh-color-medium-grey);
}

#mtxh-navbar-primary-nav-mobile a:hover {
  /* color: var(--mtxh-color-main);
  border-bottom: 1px dotted var(--mtxh-color-main); */
  background-color: var(--mtxh-color-mobile-nav) !important;
}

#mtxh-navbar-primary-nav-mobile a span {
  width: calc(100% - 20px);
  display: inline-block;
}

#mtxh-navbar-primary-nav-mobile a:after {
  font-family: var(--mtxh-typeface-heading);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

#mtxh-navbar-primary-nav-mobile a.dropdown-toggle.expanded:after {
  transform: rotate(180deg);
}

#mtxh-navbar-primary-nav-mobile > ul > li > a {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--mtxh-typeface-heading);
  display: block;
  width: 100%;
  padding: 0.5rem 0;
}

#mtxh-navbar-primary-nav-mobile > ul > li > ul {
  padding: 0;
  list-style: none;
}

#mtxh-navbar-primary-nav-mobile > ul > li > ul > li a {
  color: var(--mtxh-color-white);
}

#mtxh-navbar-primary-nav-mobile .dropdown-menu {
  display: block;
  position: relative;
  float: none;
  background-color: var(--mtxh-color-none);
  border: none;
  border-radius: 0;
  padding: 0 0 0 20px;
  max-height: 0;
  transition: max-height 0.25s ease-in-out;
  overflow: hidden;
}

#mtxh-navbar-primary-nav-mobile .dropdown-menu.expanded {
  max-height: 3000px;
  transition: max-height 0.75s ease-in-out;
}

#mtxh-navbar-primary-nav-mobile .dropdown-menu a {
  padding: 0.5rem 0;
}

#mtxh-mobile-menu-overlay {
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(var(--mtxh-color-main-rgb), 0.9);
  /* background-color: rgba(64, 64, 204, 0.5); */
  position: fixed;
  z-index: 9999;
  display: none;
  -webkit-backdrop-filter: saturate(0);
          backdrop-filter: saturate(0);
}

#mtxh-navbar-secondary-nav-mobile > ul {
  padding: 0;
  margin-top: 2em;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#mtxh-navbar-secondary-nav-mobile > ul li {
  flex: 0 50%;
}

#mtxh-navbar-secondary-nav-mobile a {
  color: var(--mtxh-color-main);
  width: 100%;
  display: block;
  transition: color 0.25s ease, border 0.25s ease;
  border-bottom: 1px dotted var(--mtxh-color-none);
}

#mtxh-navbar-secondary-nav-mobile a:hover {
  /* color: var(--mtxh-color-white);
  border-bottom: 1px dotted var(--mtxh-color-white); */
  background-color: var(--mtxh-color-none) !important;
}

#mtxh-navbar-secondary-nav-mobile a span {
  color: var(--mtxh-color-mobile-secondary-nav-color);
  width: calc(100% - 20px);
  display: inline-block;
}

#mtxh-navbar-secondary-nav-mobile > ul > li {
  margin-bottom: 5px;
}

#mtxh-navbar-secondary-nav-mobile > ul > li > a {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--mtxh-typeface-heading);
  display: block;
  width: 100%;
  padding: 0;
}

#mtxh-mobile-search-container {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 40px;
}

#mtxh-mobile-search-container button {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 0;
  line-height: 43px;
  color: var(--mtxh-color-medium-grey);
  cursor: pointer;
  border: 0;
  border-radius: 0.25rem;
  background: none;
  color: white;
  white-space: nowrap;
}

#mtxh-mobile-search {
  background-color: var(--mtxh-color-black);
  display: block;
  float: right;
  width: 15rem;
  height: 45px;
  margin-right: 0.25em;
  color: var(--mtxh-color-white);
  border-radius: 0;
  border: 1px solid var(--mtxh-color-medium-grey);
  transition: border-color 0.25s ease;
  padding-right: 50px;
  font-family: var(--mtxh-typeface-heading);
}

#mtxh-mobile-search:focus {
  border-color: var(--mtxh-color-white);
  /* outline: none !important; */
  box-shadow: none !important;
}

#mtxh-mobile-search::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--mtxh-color-medium-grey);
  opacity: 1;
}

#mtxh-mobile-search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--mtxh-color-medium-grey);
  opacity: 1;
}

#mtxh-mobile-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--mtxh-color-medium-grey);
}

#mtxh-search-input::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--mtxh-color-medium-grey);
}

/**
 * mobile user menu
 */
#mtxh-mobile-user-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  z-index: 9999999;
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-white);
  padding: 45px 15px 15px 15px;
  transition: right 0.5s ease-in-out;
  height: 100vh;
}

#mtxh-mobile-user-menu.active {
  right: 0;
}

#mtxh-mobile-user-menu-button-close {
  overflow: hidden;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

#mtxh-mobile-user-menu-button-close img {
  height: 100% !important;
  width: auto !important;
  position: absolute;
  top: 0;
  left: -6.4px;
  max-width: 41px !important;
}

#mtxh-mobile-user-menu-inner {
  overflow: scroll;
  height: 100%;
}

#mtxh-mobile-user-menu-inner p {
  font-family: var(--mtxh-typeface-heading);
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  color: var(--mtxh-color-white);
  /* background-color: var(--mtxh-color-main); */
}

#mtxh-mobile-user-menu-links {
  padding: 0;
  margin-top: 20px;
  list-style-type: none;
}

#mtxh-mobile-user-menu-links li a {
  color: var(--mtxh-color-white);
  width: 100%;
  display: block;
  transition: color 0.25s ease, border 0.25s ease;
  border-bottom: 1px solid var(--mtxh-color-faint-grey);
  text-decoration: none;
  padding: 1rem 0;
}
#mtxh-mobile-user-menu-links li:first-child a {
  border-top: 1px solid var(--mtxh-color-faint-grey);
}

#mtxh-mobile-user-menu-links a:hover {
  /* color: var(--mtxh-color-main);
  border-bottom: 1px dotted var(--mtxh-color-main); */
  background-color: var(--mtxh-color-none) !important;
}

#mtxh-mobile-user-menu-overlay {
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(var(--mtxh-color-main-rgb), 0.9);
  /* background-color: rgba(64, 64, 204, 0.5); */
  position: fixed;
  z-index: 999999;
  display: none;
  -webkit-backdrop-filter: saturate(0);
          backdrop-filter: saturate(0);
}

/**
 * top ad
 */
#mtxh-top-ad {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  #mtxh-top-ad {
    display: none;
  }
}
@media (max-width: 767px) {
  #mtxh-below-featured-ad {
    display: none;
  }
}
/*
 * login modal
 */
.modal .modal-dialog {
  max-width: 700px;
}

@media (min-width: 1200px) {
  .modal .modal-dialog {
    max-width: 1000px;
  }
}
.modal .modal-content {
  border: none;
  font-size: 0;
}

@media (min-width: 1200px) {
  .modal .modal-content {
    height: 500px;
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
.mtxh-modal-left,
.mtxh-modal-right {
  font-size: 1rem;
  height: 100%;
  padding: 30px;
}

@media (min-width: 1200px) {
  .mtxh-modal-left,
  .mtxh-modal-right {
    flex: 0 0 50%;
  }
}
.mtxh-modal-left {
  color: var(--mtxh-color-white);
  background-color: var(--mtxh-color-black);
}

.mtxh-modal-left h3 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

@media (max-width: 1199px) {
  .mtxh-modal-left h3 {
    font-size: 2.25rem;
  }
}
.mtxh-modal-form-submit {
  width: 100%;
  min-height: 51px;
}

.mtxh-modal-form-submit.loading {
  font-size: 0;
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

#mtxh-modal-login-form-lost {
  margin-top: 30px;
}

.mtxh-modal-close-left,
.mtxh-modal-close-right {
  position: absolute;
  right: 12px;
  top: 12px;
}

/**
 * alert box
 */
#mtxh-alert-box-container {
  position: fixed;
  top: 120px;
  right: 15px;
  list-style-type: none;
  width: 400px;
  z-index: 9999999;
}

body.modal-open #mtxh-alert-box-container {
  top: 1.75rem;
}

#mtxh-alert-box {
  padding: 0;
  list-style-type: none;
  position: relative;
  margin: 0;
}

.mtxh-alert {
  color: var(--mtxh-color-white);
  padding: 1em 3em 1.5em 1em;
  font-size: 0.9rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 16px;
  cursor: pointer;
  position: relative;
  width: 370px;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: 0;
  z-index: 99999999;
}

.mtxh-alert i {
  margin-left: 10px;
  position: absolute;
  top: 22px;
  right: 15px;
}

.mtxh-alert a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--mtxh-color-white);
}

.mtxh-alert-error {
  background-color: var(--mtxh-color-error);
}

.mtxh-alert-success {
  background-color: var(--mtxh-color-success);
}

.mtxh-alert-info {
  background-color: var(--mtxh-color-info);
}

.mtxh-alert-status {
  height: 0.5em;
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  right: 0;
  animation: mtxh-alert-status-elapse 10s linear forwards;
}

@keyframes mtxh-alert-status-elapse {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.mtxh-top-alert {
  font-size: 0.9rem;
  padding: 0.15rem;
}
.mtxh-top-alert p {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .mtxh-sidebar {
    display: none;
  }
}
.mtxh-sidebar-inner {
  /* border: 1px solid var(--mtxh-color-black); */
  height: 100%;
}

.mtxh-sidebar-sticky-ad {
  position: sticky;
  top: 120px;
}

.mtxh-sidebar-inner .mtxh-sponsored-content-square-item {
  text-align: center;
}

.mtxh-sidebar h2 {
  font-size: 1.3rem !important;
  margin-bottom: 1rem;
}

#mtxh-sidebar-forums {
  margin-top: 2rem;
}

.mtxh-sidebar-trending-item {
  margin-bottom: 0.5rem;
}
.mtxh-sidebar-trending-item a {
  display: flex;
  align-items: center;
  color: var(--mtxh-color-black) !important;
  transition: color 0.25s ease;
  text-decoration: none;
}
.mtxh-sidebar-trending-item a:hover {
  color: var(--mtxh-color-main) !important;
}
.mtxh-sidebar-trending-item a .mtxh-sidebar-trending-item-thumbnail-container {
  padding-right: 0.5rem;
}
.mtxh-sidebar-trending-item a .mtxh-sidebar-trending-item-thumbnail-container .mtxh-sidebar-trending-item-thumbnail {
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  width: 100px;
  height: auto;
}
.mtxh-sidebar-trending-item a h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

#mtxh-sidebar-forums ul {
  list-style-type: none;
  padding: 0;
}

#mtxh-sidebar-forums ul li h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

#mtxh-sidebar-forums ul li h3 a {
  color: var(--mtxh-color-black);
  text-decoration: none;
  transition: color 0.25s ease;
}

#mtxh-sidebar-forums ul li h3 a:hover {
  color: var(--mtxh-color-main);
}

/**
 * footer.css
 * Styling for the footer area
 * @package Motrolix_Headlines
 */
#mtxh-footer {
  padding: 2rem 0;
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-white);
  margin-top: 2rem;
}

#mtxh-footer h2 {
  font-size: 1.5rem;
  color: var(--mtxh-color-light-grey);
  margin-bottom: 1rem;
}

#mtxh-footer a {
  color: var(--mtxh-color-main);
  font-weight: 700;
}

#mtxh-footer-forums-col ul {
  list-style-type: none;
  padding: 0;
}

#mtxh-footer-forums-col ul li h3 {
  font-size: 1rem;
}

#mtxh-footer-forums-col ul li h3 a {
  color: var(--mtxh-color-white);
}

.mtxh-footer-trending-item {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 130px;
  min-height: 58px;
}

.mtxh-footer-trending-item h3 {
  font-size: 1rem;
}

.mtxh-footer-trending-item h3 a {
  color: var(--mtxh-color-white) !important;
}

.mtxh-footer-trending-item-thumbnail-container {
  height: 58px;
  overflow: hidden;
  width: 120px;
  position: absolute;
  left: 0;
  top: 0;
}

.mtxh-footer-trending-item-thumbnail {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
}

.mtxh-footer-trending-item-thumbnail-container .mtxh-triangle-alt-right {
  height: 100%;
  width: auto;
  left: 102px;
  top: 0;
  z-index: 1;
  position: absolute;
}

.mtxh-footer-trending-item-thumbnail-container .mtxh-triangle-alt-right polygon {
  fill: var(--mtxh-color-black);
}

@media (max-width: 991px) {
  #mtxh-footer-forums-col,
  #mtxh-footer-trending-col {
    margin-top: 40px;
  }
}
#mtxh-footer-nav {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

#mtxh-footer-nav ul {
  margin-bottom: 0;
}

#mtxh-footer-nav ul li {
  display: inline-block;
}

#mtxh-footer-social-media {
  margin-top: 40px;
  margin-bottom: 0;
  text-align: center;
}

#mtxh-footer-social-media a {
  font-size: 2rem;
  padding: 0 1rem;
  color: var(--mtxh-color-white);
  transition: color 0.25s ease;
}

@media (min-width: 768px) {
  #mtxh-footer-social-media a:hover {
    color: var(--mtxh-color-main);
  }
}
#mtxh-footer-colophon {
  margin-top: 40px;
  margin-bottom: 0;
  text-align: center;
}

#mtxh-profile-nav {
  margin-top: 50px;
}

/* comments */
.mtxh-profile-comments {
  line-height: 2em;
}

.mtxh-profile-comments h2 {
  margin-bottom: 30px;
}

#mtxh-profile-comments-load {
  width: 100%;
  min-height: 51px;
  margin-bottom: 20px;
}

#mtxh-profile-comments-load.loading {
  font-size: 0;
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

.mtxh-profile-comments p {
  color: var(--mtxh-color-dark-grey);
}

.mtxh-profile-comments ol {
  list-style-type: none;
}

.mtxh-profile-comments-list {
  padding: 0;
}

.mtxh-profile-comments ol ol {
  padding-left: 60px;
}

.mtxh-profile-comment {
  margin-bottom: 20px;
  transition: background-color 0.25s ease;
}

.mtxh-profile-comment-meta-author,
.mtxh-profile-comment-meta-datetime {
  display: inline-block;
}

.mtxh-profile-comment-meta-author {
  font-weight: bold;
  color: var(--mtxh-color-main);
  margin-right: 10px;
}

.mtxh-profile-comment-meta-author-avatar {
  overflow: hidden;
  display: inline-block;
  height: 55px;
  width: 55px;
  float: left;
  margin: 10px 10px 0 0;
}

.mtxh-profile-comment-meta-author-avatar img {
  height: 100%;
  width: auto;
  border-radius: 50%;
}

.mtxh-profile-comment-meta-datetime {
  color: var(--mtxh-color-medium-grey);
}

.mtxh-profile-comment-content {
  /* margin-bottom: 30px; */
}

.mtxh-profile-comment-content p {
  margin-bottom: 0;
}

.mtxh-profile-comment.new > .mtxh-profile-comment-body {
  background-color: rgba(var(--mtxh-color-main-rgb), 0.2);
  padding: 0.2rem 0.5rem;
}

.mtxh-profile-comment-reply-link {
  color: var(--mtxh-color-main) !important;
}

.mtxh-profile-comment-reply-link,
.mtxh-profile-comment-edit-link {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  margin-top: 0.5em;
  cursor: pointer;
  margin-bottom: 30px;
  transition: border 0.25s ease;
  margin-right: 10px;
}

.mtxh-profile-comment-reply-link:hover,
.mtxh-profile-comment-edit-link:hover {
  border-color: inherit !important;
}

.mtxh-profile-comment-reply-form,
.mtxh-profile-comment-edit-form {
  margin: 12px 0;
  background-color: var(--mtxh-color-faint-grey);
  padding: 15px;
  /* color: var(--mtxh-color-white); */
}

.mtxh-profile-comment-edit-form.hidden {
  display: none;
}

.mtxh-profile-comment .mtxh-profile-comment-reply-form,
.mtxh-profile-comment .mtxh-profile-comment-edit-form {
  margin-left: 60px;
}

.mtxh-profile-comment-reply-form label,
.mtxh-profile-comment-edit-form label {
  margin-bottom: 0;
}

.mtxh-profile-comment-reply-form-textbox,
.mtxh-profile-comment-edit-form-textbox {
  display: block;
  width: 100%;
  resize: none;
  height: 150px !important;
  /* color: var(--mtxh-color-black);
  border-radius: 0 !important;
  border: 1px solid var(--mtxh-color-black); */
}

.mtxh-profile-comment-reply-form-cancel,
.mtxh-profile-comment-edit-form-cancel {
  cursor: pointer;
}

.mtxh-profile-comment-reply-form-cancel {
  display: none;
}

.mtxh-profile-comment-reply-form-submit,
.mtxh-profile-comment-edit-form-submit {
  min-height: 51px;
}

.mtxh-profile-comment-reply-form-submit.loading,
.mtxh-profile-comment-edit-form-submit.loading {
  color: rgba(0, 0, 0, 0);
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

.mtxh-profile-comment-reply-form-submit.loading:hover,
.mtxh-profile-comment-edit-form-submit.loading:hover {
  background-color: var(--mtxh-color-main) !important;
}

.mtxh-profile-comment-children {
  margin-top: 20px;
}

/* disable reply to elements 5 levels down */
.mtxh-profile-comments-list > li > ol > li > ol > li > ol > li > ol > li > a.mtxh-profile-comment-reply-link {
  display: none !important;
}

/* hide elements lower than 5 levels down */
.mtxh-profile-comments-list > li > ol > li > ol > li > ol > li > ol > li > ol li {
  display: none !important;
}

/**
 * body
 */
body {
  /* background-color: var(--mtxh-color-faint-grey); */
}

/**
 * special reel
 */
.mtxh-archive-special-reel {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .mtxh-archive-special-reel {
    overflow: hidden;
  }
}

.mtxh-archive-special-reel.mtxh-archive-featured-qty-1:not(.mtxh-archive-trending-qty-0),
.mtxh-archive-special-reel.mtxh-archive-trending-qty-1:not(.mtxh-archive-featured-qty-0) {
  overflow: scroll;
}

@media (max-width: 991px) {
  .mtxh-archive-special-reel.mtxh-archive-total-qty-2 {
    overflow: scroll;
  }
}
@media (max-width: 1199px) {
  .mtxh-archive-special-reel.mtxh-archive-total-qty-3 {
    overflow: scroll;
  }
}
.mtxh-archive-special-reel article {
  border-left: 5px solid var(--mtxh-color-white);
  border-right: 5px solid var(--mtxh-color-white);
}

.mtxh-archive-special-reel article:first-of-type {
  border-left: none;
}

.mtxh-archive-special-reel article:last-of-type {
  border-right: none;
}

/**
 * featured news
 */
.mtxh-archive-featured-item {
  position: relative;
  overflow: hidden;
}
.mtxh-archive-featured-item .mtxh-featured-item-thumbnail-container {
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}
.mtxh-archive-featured-item .mtxh-featured-item-thumbnail {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
}
.mtxh-archive-featured-item img {
  width: 100%;
  height: auto;
}

.mtxh-archive-featured-item-link {
  display: flex;
  flex-direction: column;
  min-width: 40%;
}
@media (min-width: 768px) {
  .mtxh-archive-featured-item-link {
    min-width: 20%;
  }
}

.mtxh-archive-featured-item-badge .mtxh-triangle-alt-right,
.mtxh-archive-featured-item-badge .mtxh-triangle-right {
  height: 100%;
  position: absolute;
  top: 0;
}

.mtxh-archive-featured-item-badge .mtxh-triangle-alt-right {
  left: -11px;
}

@media (max-width: 767px) {
  .mtxh-archive-featured-item-badge .mtxh-triangle-alt-right {
    left: -10px;
  }
}
.mtxh-archive-featured-item-badge .mtxh-triangle-right {
  right: -11px;
}

.mtxh-archive-featured-item-badge .mtxh-triangle-alt-right polygon,
.mtxh-archive-featured-item-badge .mtxh-triangle-right polygon {
  fill: var(--mtxh-color-main);
}

.mtxh-archive-featured-item-title {
  font-family: var(--mtxh-typeface-body);
  font-size: 0.8rem;
  margin-top: 8px;
  padding: 0 10px;
  color: var(--mtxh-color-black);
  text-transform: uppercase;
}

.mtxh-archive-total-qty-1 .mtxh-archive-featured-item-title {
  font-size: 3rem;
}

.mtxh-archive-total-qty-2 .mtxh-archive-featured-item-title {
  font-size: 2rem;
}

@media (max-width: 991px) {
  .mtxh-archive-total-qty-2 .mtxh-archive-featured-item-title {
    font-size: 1.65rem;
  }
}
/**
 * trending news
 */
.mtxh-archive-special-reel:not(.mtxh-archive-featured-qty-0) .mtxh-archive-trending,
.mtxh-archive-special-reel:not(.mtxh-archive-featured-qty-1) .mtxh-archive-trending {
  margin-top: 2px;
}

.mtxh-archive-special-reel:not(.mtxh-archive-featured-qty-1) .mtxh-archive-trending {
  overflow: scroll;
}

.mtxh-archive-trending-item {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex: 0 0 500px;
  height: 400px;
}

.mtxh-archive-total-qty-1 .mtxh-archive-trending-item {
  height: 600px;
  flex: 0 0 100% !important;
}

.mtxh-archive-total-qty-2 .mtxh-archive-trending-item {
  flex: 0 0 50%;
}

@media (max-width: 991px) {
  .mtxh-archive-total-qty-2 .mtxh-archive-trending-item {
    flex: 0 0 500px;
  }
}
.mtxh-archive-total-qty-3 .mtxh-archive-trending-item {
  flex: 0 0 34%;
}

@media (max-width: 1199px) {
  .mtxh-archive-total-qty-3 .mtxh-archive-trending-item {
    flex: 0 0 500px;
  }
}
.mtxh-archive-trending-item-link {
  color: var(--mtxh-color-white);
  height: 100%;
  width: 100%;
  position: relative;
}

.mtxh-archive-trending-item-link::before,
.mtxh-archive-trending-item-link::after {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.mtxh-archive-trending-item-link::after {
  opacity: 0;
}

.mtxh-archive-trending-item-link:hover {
  color: var(--mtxh-color-white);
}

.mtxh-archive-trending-item-link:hover::after {
  opacity: 1;
}

.mtxh-archive-trending-item-inner {
  position: absolute;
  z-index: 2;
  padding: 30px;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.mtxh-archive-trending-item-badge {
  background-color: var(--mtxh-color-main);
  position: relative;
  white-space: nowrap;
  margin-bottom: 20px;
}

.mtxh-archive-trending-item-badge .mtxh-triangle-alt-right,
.mtxh-archive-trending-item-badge .mtxh-triangle-right {
  height: 100%;
  position: absolute;
  top: 0;
}

.mtxh-archive-trending-item-badge .mtxh-triangle-alt-right {
  left: -11px;
}

@media (max-width: 767px) {
  .mtxh-archive-trending-item-badge .mtxh-triangle-alt-right {
    left: -10px;
  }
}
.mtxh-archive-trending-item-badge .mtxh-triangle-right {
  right: -11px;
}

.mtxh-archive-trending-item-badge .mtxh-triangle-alt-right polygon,
.mtxh-archive-trending-item-badge .mtxh-triangle-right polygon {
  fill: var(--mtxh-color-main);
}

.mtxh-archive-total-qty-1 .mtxh-archive-trending-item-title {
  font-size: 3rem;
}

.mtxh-archive-total-qty-2 .mtxh-archive-trending-item-title {
  font-size: 2rem;
}

@media (max-width: 991px) {
  .mtxh-archive-total-qty-2 .mtxh-archive-trending-item-title {
    font-size: 1.65rem;
  }
}
/**
 * content (post, page, sponsored item
 */
.mtxh-archive-content {
  position: relative;
}

.mtxh-archive-content .row {
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 1rem;
}

.mtxh-archive-content .col,
.mtxh-archive-content [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.mtxh-archive-content-item {
  margin-bottom: 1rem;
}

.mtxh-archive-content-post-item,
.mtxh-archive-content-page-item {
  background-color: var(--mtxh-color-white);
  transition: background-color 0.25s ease;
}

.mtxh-archive-content-post-item h3,
.mtxh-archive-content-page-item h3 {
  transition: color 0.25s ease !important;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .mtxh-archive-content-post-item h3:hover,
  .mtxh-archive-content-page-item h3:hover {
    color: var(--mtxh-color-main);
  }
}
.mtxh-archive-content-item-thumbnail-link {
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  position: relative;
}

.mtxh-archive-content-item-thumbnail-container {
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.mtxh-archive-content-item-thumbnail {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
}

.mtxh-archive-content-item-text {
  /* padding: 15px; */
  margin-top: -10px;
}
.mtxh-archive-content-item-text .mtxh-read-more {
  color: var(--mtxh-color-main);
  font-size: 0.9rem;
}
.mtxh-archive-content-item-text .mtxh-read-more:hover {
  text-decoration: none;
}

.mtxh-archive-content-item-text a {
  color: inherit;
}

.mtxh-archive-content-item-summary {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.mtxh-archive-content-item-author {
  margin-bottom: 0.3em;
  font-family: var(--mtxh-typeface-heading);
  text-decoration: none;
  font-size: 0.8rem;
}

.mtxh-archive-content-item-author a {
  transition: color 0.25s ease;
}

@media (min-width: 768px) {
  .mtxh-archive-content-item-author a:hover {
    color: var(--mtxh-color-main);
    text-decoration: none;
  }
}
.mtxh-archive-content-item-comments {
  font-family: var(--mtxh-typeface-heading);
  font-weight: 400;
  font-size: 1rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  background-color: var(--mtxh-color-main);
  color: var(--mtxh-color-white);
  transition: 0.2s ease background-color, 0.2s ease color;
}
.mtxh-archive-content-item-comments .fa-comments {
  padding-right: 2px;
}
.mtxh-archive-content-item-comments:hover {
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-white);
}

.mtxh-archive-content-item-meta .mtxh-rhombus-divider {
  height: 1em;
  margin: 0 10px;
  width: auto;
}

.mtxh-archive-content-item-meta .mtxh-rhombus-divider polygon {
  fill: var(--mtxh-color-main);
}

.mtxh-archive-content-sponsored-item {
  position: relative;
}

@media (max-width: 767px) {
  .mtxh-archive-content-sponsored-item {
    height: 400px;
  }
}
.mtxh-archive-content-sponsored-item-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/**
 * load more
 */
.mtxh-archive-content-load-more {
  width: 100%;
  min-height: 51px;
}

.mtxh-archive-content-load-more.loading {
  font-size: 0;
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

/* author */
.mtxh-author-section {
  display: flex;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--mtxh-color-light-grey);
  padding-top: 1rem;
  border-top: 1px solid var(--mtxh-color-light-grey);
}

.mtxh-author-title {
  text-align: center;
}
.mtxh-author-title span {
  color: var(--mtxh-color-medium-grey);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  padding-bottom: 0;
}

.mtxh-author-bio p {
  margin-bottom: 0;
}

.mtxh-author-image {
  margin-right: 1em;
}

.mtxh-byline {
  color: var(--mtxh-color-medium-grey);
  margin-bottom: 0;
}

.mtxh-byline a {
  font-weight: 700;
  color: var(--mtxh-color-black);
}

.mtxh-posted-on {
  margin-bottom: 0;
  color: var(--mtxh-color-medium-grey);
}

.mtxh-article-content {
  line-height: 1.75rem;
  color: var(--mtxh-color-black);
}
.mtxh-article-content > *:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mtxh-article-content > p {
  color: var(--mtxh-color-black);
}
.mtxh-article-content p a:not(.mtxh-link-contains-object), .mtxh-article-content ul a:not(.mtxh-link-contains-object) {
  color: var(--mtxh-color-black);
  text-decoration: none !important;
  box-shadow: inset 0px -2px 0px 0px var(--mtxh-color-main);
  transition: box-shadow 0.25s ease, color 0.25s ease;
}
.mtxh-article-content p a:not(.mtxh-link-contains-object):hover, .mtxh-article-content ul a:not(.mtxh-link-contains-object):hover {
  color: var(--mtxh-color-white);
  box-shadow: inset 0px -28px 0px 0px var(--mtxh-color-main);
}

.mtxh-article-content #bbpress-forums a:hover, .mtxh-article-content #bbpress-forums p a:hover {
  color: var(--mtxh-color-main);
}

.mtxh-article-content .aligncenter,
.mtxh-article-content .alignleft,
.mtxh-article-content .alignright {
  display: block;
  padding: 0;
}

.mtxh-article-content .aligncenter {
  float: none;
  margin: 0 auto;
}

.mtxh-article-content .alignright {
  float: right;
  margin: 0 0 0 0.5em;
}

.mtxh-article-content .alignleft {
  float: left;
  margin: 0 0.5em 0 0;
}

.mtxh-article-content img {
  max-width: 100%;
  height: auto;
}

.mtxh-article-content .wp-caption {
  max-width: 100%;
}

.mtxh-article-content .wp-caption img {
  display: inline;
  max-width: 100%;
  height: auto;
}

.mtxh-article-content .wp-caption p.wp-caption-text {
  margin-bottom: 0;
  /* max-width: 800px; */
  padding: 0;
  font-size: 0.75rem;
  color: var(--mtxh-color-medium-grey);
  text-align: center;
  font-style: italic;
}

.mtxh-article-content .wp-caption a,
.mtxh-article-content .wp-caption {
  max-width: 100%;
}

.mtxh-article-content h1,
.mtxh-article-content h2,
.mtxh-article-content h3,
.mtxh-article-content h4,
.mtxh-article-content h5,
.mtxh-article-content h6 {
  text-align: left;
}

.mtxh-link-contains-object {
  display: block;
}

.mtxh-link-lightbox picture:not(.lazyload) .mtxh-link-lightbox-indicator {
  height: 40px;
  width: 40px;
  z-index: 3;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--mtxh-color-black);
  color: var(--mtxh-color-white);
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}

.mtxh-link-lightbox picture:not(.lazyload)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mtxh-color-black);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
  .mtxh-link-lightbox:hover picture:not(.lazyload)::after {
    opacity: 0.3;
  }
}
picture.lazyload,
picture.lazyloaded {
  position: relative;
}

picture.lazyload::before,
picture.lazyloaded::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mtxh-color-faint-grey);
  opacity: 1;
  z-index: 2;
  transition: opacity 0.5s ease;
}

picture.lazyloaded::before {
  opacity: 0;
}

/*
 * typography
 */
.mtxh-alert {
  border-radius: 0;
  border: none;
}

.mtxh-toggle .card,
.mtxh-toggle .card .card-header {
  border-radius: 0;
  border: none;
}

.mtxh-toggle .card-header {
  padding: 0;
}

.mtxh-toggle .card-header .btn {
  padding: 0.75rem 1.25rem;
  width: 100%;
  text-decoration: none;
  background-color: var(--mtxh-color-main);
  color: var(--mtxh-color-white);
}

.mtxh-toggle .card-header .btn:hover {
  background-color: var(--mtxh-color-black);
}

.mtxh-toggle-title, .mtxh-toggle-subtitle {
  display: block;
}

.mtxh-toggle-title {
  margin-bottom: 2px;
}

.mtxh-toggle-subtitle {
  text-align: left;
  position: relative;
  visibility: hidden;
}

.mtxh-toggle-subtitle::after {
  top: 0;
  left: 0;
  text-align: left;
  visibility: visible;
}

.mtxh-toggle .card-header .btn[aria-expanded=false] .mtxh-toggle-subtitle::after {
  content: "Click to expand";
}

.mtxh-toggle .card-header .btn[aria-expanded=true] .mtxh-toggle-subtitle::after {
  content: "Click to contract";
}

.mtxh-toggle .card-body {
  border: 1px solid var(--mtxh-color-light-grey);
}

/**
 * featured image
 */
.mtxh-single-featured-image-container {
  position: relative;
  margin-bottom: 0.5rem;
}

.mtxh-single-featured-image {
  width: 100%;
  height: auto;
}

/* title section */
.mtxh-single-post-title {
  font-size: 2rem;
}

@media (max-width: 1199px) {
  .mtxh-single-post-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .mtxh-single-post-title {
    font-size: 1.75rem;
  }
}
.mtxh-single-post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.mtxh-share-buttons {
  display: flex;
}
.mtxh-share-buttons a {
  display: flex;
  color: var(--mtxh-color-white);
  font-size: 1.25rem;
  margin-left: 0.25rem;
  padding: 0.4rem;
  width: 2rem;
  align-items: center;
  background-color: var(--mtxh-color-dark-grey);
  height: 2rem;
  justify-content: center;
  transition: 0.25s color ease, 0.25s background-color ease;
}
.mtxh-share-buttons a:hover {
  text-decoration: none;
  color: var(--mtxh-color-white);
  background-color: var(--mtxh-color-main);
}
.mtxh-share-buttons a span {
  display: none;
}

.alert {
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
}
.alert img {
  width: 4rem;
  height: auto;
}
.alert .alert-content {
  padding: 0.5em;
  font-size: 0.9rem;
}
.alert .alert-content p:last-child {
  margin-bottom: 0;
}

/* content area */
.mtxh-article-content {
  /* border-bottom: 1px dotted var(--mtxh-color-black); */
  margin-bottom: 1rem;
}

/* related posts */
.mtxh-single-related {
  margin-bottom: 1rem;
}

.mtxh-single-related .mtxh-title {
  margin-bottom: 1rem;
}

.mtxh-single-related-item {
  margin-bottom: 1rem;
}

.mtxh-single-related-item-title {
  font-size: 1.25rem;
  color: var(--mtxh-color-dark-grey);
  transition: color 0.25s ease;
}

.mtxh-single-related-item-thumbnail-link {
  display: block;
}
.mtxh-single-related-item-thumbnail-link:hover .mtxh-single-related-item-title {
  color: var(--mtxh-color-main);
}

.mtxh-single-related-item-thumbnail-container {
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.mtxh-single-related-item-thumbnail {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
}

/* comments */
.mtxh-single-comments h2 {
  margin-bottom: 1rem;
}

#mtxh-single-comments-load {
  width: 100%;
  min-height: 51px;
  margin-bottom: 20px;
}

#mtxh-single-comments-load.loading {
  font-size: 0;
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

.mtxh-single-comments p {
  color: var(--mtxh-color-dark-grey);
}

.mtxh-single-comments ol {
  list-style-type: none;
}

.mtxh-single-comments-list {
  padding: 0;
}

.mtxh-single-comments ol ol {
  border-left: 1px solid var(--mtxh-color-light-grey);
  padding-left: 1rem;
}

.mtxh-single-comment {
  margin-bottom: 1rem;
  transition: background-color 0.25s ease;
}

.mtxh-single-comment-meta {
  font-size: 0.75rem;
}

.mtxh-single-comment-meta-author,
.mtxh-single-comment-meta-datetime {
  display: inline-block;
}

.mtxh-single-comment-meta-author {
  font-weight: bold;
  color: var(--mtxh-color-main);
  margin-right: 0.5rem;
}

.mtxh-single-comment-meta-author-avatar {
  overflow: hidden;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  float: left;
  margin: 0.5rem 0.5rem 0 0;
}

.mtxh-single-comment-meta-author-avatar img {
  height: 100%;
  width: auto;
  border-radius: 50%;
}

.mtxh-single-comment-meta-datetime {
  color: var(--mtxh-color-medium-grey);
}

.mtxh-single-comment-content {
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.mtxh-single-comment.new > .mtxh-single-comment-body {
  padding: 0.2rem 0.5rem;
}

.mtxh-single-comment-reply-link {
  color: var(--mtxh-color-main) !important;
}

.mtxh-single-comment-reply-link,
.mtxh-single-comment-edit-link {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  margin-top: 0.5em;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: border 0.25s ease;
  margin-right: 0.5rem;
}

.mtxh-single-comment-reply-link:hover,
.mtxh-single-comment-edit-link:hover {
  border-color: inherit !important;
  text-decoration: none;
}

.mtxh-single-comment-reply-form,
.mtxh-single-comment-edit-form {
  margin: 12px 0;
  background-color: var(--mtxh-color-faint-grey);
  padding: 15px;
  /* color: var(--mtxh-color-white); */
}

.mtxh-single-comment-edit-form.hidden {
  display: none;
}

@media screen and (min-width: 1199px) {
  .mtxh-single-comment .mtxh-single-comment-reply-form,
  .mtxh-single-comment .mtxh-single-comment-edit-form {
    margin-left: 2rem;
  }
}
.mtxh-single-comment-reply-form label,
.mtxh-single-comment-edit-form label {
  margin-bottom: 0;
}

.mtxh-single-comment-reply-form-textbox,
.mtxh-single-comment-edit-form-textbox {
  display: block;
  width: 100%;
  resize: none;
  height: 150px !important;
  /* color: var(--mtxh-color-black);
  border-radius: 0 !important;
  border: 1px solid var(--mtxh-color-black); */
}

.mtxh-single-comment-reply-form-cancel,
.mtxh-single-comment-edit-form-cancel {
  cursor: pointer;
}

.mtxh-single-comment-reply-form-cancel {
  display: none;
}

.mtxh-single-comment-reply-form-submit.loading,
.mtxh-single-comment-edit-form-submit.loading {
  color: rgba(0, 0, 0, 0);
  background-image: url("../images/load-more-icon.svg");
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center;
}

.mtxh-single-comment-reply-form-submit.loading:hover,
.mtxh-single-comment-edit-form-submit.loading:hover {
  background-color: var(--mtxh-color-main) !important;
}

.mtxh-single-comment-children {
  margin-top: 1rem;
}

/* disable reply to elements 5 levels down */
.mtxh-single-comments-list > li > ol > li > ol > li > ol > li > ol > li > a.mtxh-single-comment-reply-link {
  display: none !important;
}

/* hide elements lower than 5 levels down */
.mtxh-single-comments-list > li > ol > li > ol > li > ol > li > ol > li > ol li {
  display: none !important;
}

.mtxh-single-author {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--mtxh-color-light-grey);
  border-bottom: 1px solid var(--mtxh-color-light-grey);
}
.mtxh-single-author .mtxh-single-author-image {
  margin-right: 0.5rem;
}
.mtxh-single-author .mtxh-single-author-image img {
  height: 4rem;
  width: 4rem;
}
.mtxh-single-author .mtxh-byline {
  font-size: 1rem;
}
.mtxh-single-author .mtxh-single-author-description {
  color: var(--mtxh-color-medium-grey);
  margin-bottom: 0;
  font-size: 0.75rem;
}

.pswp__bg {
  opacity: 0.75 !important;
}

/*  legacy css for column shortcode
/* ------------------------------------ */
.grid {
  padding-right: 15px;
  float: left;
  display: inline;
  position: relative;
  box-sizing: border-box;
  margin: 0 !important;
}

.grid > p {
  margin-bottom: 0.5rem;
}

.last {
  clear: right;
}

.grid + br {
  display: none;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  margin-bottom: 0 !important;
}

p:empty {
  display: none;
}

.one-full {
  margin-right: 0;
  width: 100%;
  overflow: hidden;
}

.one-half {
  width: 50%;
}

.one-third {
  width: 33%;
}

.two-third {
  width: 66%;
}

.one-fourth {
  width: 25%;
}

.three-fourth {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.two-fifth {
  width: 40%;
}

.three-fifth {
  width: 60%;
}

.four-fifth {
  width: 80%;
}

.content-part .grid {
  padding-right: 15px;
}

.content-part .one-half {
  width: 50%;
}

.content-part .one-third {
  width: 33%;
}

.content-part .two-third {
  width: 66%;
}

.content-part .one-fourth {
  width: 25%;
}

.content-part .three-fourth {
  width: 75%;
}

.content-part .one-fifth {
  width: 20%;
}

.content-part .two-fifth {
  width: 40%;
}

.content-part .three-fifth {
  width: 60%;
}

.content-part .four-fifth {
  width: 80%;
}

hr {
  border: 0;
  background: #eee;
  border-bottom: 3px solid #eee;
  height: 1px;
  margin: 1rem 0;
}

.accordion br {
  display: none;
}

.ngg-gallery-thumbnail img {
  border: 0;
  padding: 0;
}

/* ------------------------------------ */
.table {
  border: 0;
  font-size: 0.9rem;
  line-height: 1rem;
}
.table caption {
  caption-side: top;
  font-weight: bold;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: var(--mtxh-color-black);
}
.table thead {
  text-align: center;
}

.page .mtrlx-newsletter-form {
  border-top: 1px solid var(--mtxh-color-light-grey);
  padding-top: 1rem;
}

.mtrlx-newsletter-form {
  border-bottom: 1px solid var(--mtxh-color-light-grey);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.mtrlx-newsletter-form .mtrlx-newsletter-title {
  margin-bottom: 0;
  font-size: 2.5rem;
}
.mtrlx-newsletter-form .input-group {
  margin: 0.5rem auto;
  max-width: 600px;
}
.mtrlx-newsletter-form .mtxh-rhombus {
  margin: 0.5rem auto;
}
.mtrlx-newsletter-form p {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .mtrlx-newsletter-form p {
    margin-bottom: 0;
  }
}

/* Could move these to a _page.scss file */
.mtxh-child-pages-list {
  list-style-type: none;
  padding: 0;
}
.mtxh-child-pages-list a {
  display: block;
  padding: 0.25rem;
}
.mtxh-child-pages-list > li {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dotted var(--mtxh-color-main);
}
.mtxh-child-pages-list > li:last-child {
  border-bottom: 0;
}
.mtxh-child-pages-list > li > a {
  font-size: 1.2rem;
  font-weight: 600;
}
.mtxh-child-pages-list ul.children {
  list-style-type: none;
  padding: 0;
}
.mtxh-child-pages-list > li > ul.children > li > a {
  background-color: var(--mtxh-color-faint-grey);
  color: var(--mtxh-color-dark-grey);
  margin: 0.25rem;
  border: 1px dotted var(--mtxh-color-faint-grey);
  transition: 0.25s color ease, 0.25s border-color ease;
}
.mtxh-child-pages-list > li > ul.children > li > a:hover {
  border-color: var(--mtxh-color-main);
  color: var(--mtxh-color-main);
  text-decoration: none;
}
.mtxh-child-pages-list > li > ul.children > li > ul.children > li > a {
  font-size: 0.9rem;
  color: var(--mtxh-color-dark-grey);
  padding-left: 1rem;
}

.error-page {
  overflow: hidden;
  position: relative;
}
.error-page .error-page-background-container {
  min-height: 45vh;
  position: relative;
}
.error-page .error-page-background-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
}/*# sourceMappingURL=main.css.map */