.pageMainNav {
  color: var(--menu-text-color) !important;
}
.pageMainNav .container {
  border-bottom: none;
}

.qm-nav * {
  box-sizing: border-box;
}
.qm-nav a {
  text-decoration: none;
}

.qm-nav {
  position: relative;
  background-color: var(--menu-color);
  max-height: 0;
  overflow: hidden !important;
  visibility: hidden;
  transition: all 100ms ease-in;
}
@media (min-width: 992px) {
  .qm-nav {
    max-height: 600px;
    overflow: visible !important;
    visibility: visible;
  }
}
.qm-nav-items {
  flex-direction: column;
  position: relative;
  display: flex;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .qm-nav-items {
    flex-direction: row;
  }
}
.qm-nav-item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.qm-nav-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 992px) {
  .qm-nav-item:first-child {
    border-top: none;
  }
}
@media (min-width: 992px) {
  .qm-nav-item {
    position: static;
    justify-content: center;
    border-bottom: none;
    font-size: 0.875rem;
  }
}
.qm-nav-item_haschildren .qm-nav-item-link:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 0.8em;
  font-weight: 900;
  float: right;
  margin-left: 1em;
}
.qm-nav-item_haschildren.active .qm-nav-item-link:after {
  content: "\f106";
}
.qm-nav-item .qm-nav-item-link {
  width: 100%;
  padding: 1.3rem 1rem;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
.qm-nav-item .qm-nav-item-link:hover, .qm-nav-item .qm-nav-item-link:focus {
  color: inherit;
}
@media (min-width: 992px) {
  .qm-nav-item .qm-nav-item-link {
    padding: 1rem 0.7rem;
    position: relative;
  }
  .qm-nav-item .qm-nav-item-link::before {
    content: "";
    display: block;
    width: calc(100% - 1.4rem);
    height: 2px;
    position: absolute;
    bottom: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top left;
  }
  .qm-nav-item .qm-nav-item-link:hover::before {
    transition: transform 0.5s ease;
    transform: scaleX(1);
  }
}
.qm-nav-item.qm-has-submenu-flyout {
  position: relative;
}
.qm-nav-item > .qm-submenu {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}
.qm-nav-item.active > .qm-submenu {
  display: flex;
  flex-wrap: wrap;
}
.qm-nav.active {
  max-height: 600px;
  overflow: visible !important;
  visibility: visible;
}

/*Animations*/
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/*Mega*/
.qm-has-submenu-mega .qm-submenu-type-mega {
  background: #ffffff;
  border-top: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 9999;
}
@media screen and (min-width: 992px) {
  .qm-has-submenu-mega .qm-submenu-type-mega {
    width: 100%;
    padding: 1em;
  }
}
.qm-has-submenu-mega .qm-submenu-type-mega:has(.qm-type-tabs) {
  padding: 0;
}
@media screen and (min-width: 992px) {
  .qm-has-submenu-mega .qm-submenu-type-mega .qm-submenu:not(.qm-tabs-panel) .qm-link {
    max-width: max-content;
    position: relative;
    text-decoration: none; /* Remove default underline */
  }
  .qm-has-submenu-mega .qm-submenu-type-mega .qm-submenu:not(.qm-tabs-panel) .qm-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  .qm-has-submenu-mega .qm-submenu-type-mega .qm-submenu:not(.qm-tabs-panel) .qm-link:hover::after {
    transition: transform 0.3s ease-out;
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}
.qm-has-submenu-mega.active .qm-submenu-type-mega {
  display: flex;
  flex-wrap: wrap;
}

/*Flyout*/
.qm-submenu-type-flyout {
  flex-direction: column;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
}
@media screen and (min-width: 992px) {
  .qm-submenu-type-flyout {
    width: max-content;
  }
}
.qm-submenu-type-flyout .qm-item {
  position: relative !important;
  min-width: 200px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .qm-submenu-type-flyout .qm-item {
    border-bottom: 1px solid #e1e1e1;
    max-width: 400px;
  }
}
.qm-submenu-type-flyout .qm-item:hover {
  background-color: #e0e0e0;
}
.qm-submenu-type-flyout .qm-item .qm-link {
  padding: 1em !important;
}
.qm-submenu-type-flyout .qm-item .qm-submenu {
  border: none;
  background-color: #ffffff;
  width: 100%;
  display: none !important;
}
@media screen and (min-width: 992px) {
  .qm-submenu-type-flyout .qm-item .qm-submenu {
    width: max-content;
    position: absolute;
    left: 100%;
    top: 0;
  }
}
.qm-submenu-type-flyout .qm-item.active > .qm-submenu {
  display: block !important;
}
.qm-submenu-type-flyout .qm-item.qm-item-haschildren > .qm-link:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 0.8em;
  font-weight: 900;
  color: #0e141c;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .qm-submenu-type-flyout .qm-item.qm-item-haschildren > .qm-link:after {
    content: "\f105";
  }
}
.qm-submenu-type-flyout .qm-item.qm-item-haschildren.active > .qm-link {
  background: #e3e3e3;
}
@media screen and (min-width: 992px) {
  .qm-submenu-type-flyout .qm-item.qm-item-haschildren.active > .qm-link:after {
    content: "\f105";
  }
}
.qm-submenu-type-flyout.active {
  display: block;
}

/*Column*/
.qm-type-column {
  color: var(--main-text-color);
  flex: 1 0 0;
}
.qm-type-column.qm-column-width-auto, .qm-type-column.qm-column-width-1_1, .qm-type-column.qm-column-width-1_2, .qm-type-column.qm-column-width-1_3, .qm-type-column.qm-column-width-1_4, .qm-type-column.qm-column-width-1_5, .qm-type-column.qm-column-width-3_4 {
  flex: 0 1 100%;
}
@media (min-width: 480px) {
  .qm-type-column.qm-column-width-auto .qm-submenu .qm-item-type-link, .qm-type-column.qm-column-width-1_2 .qm-submenu .qm-item-type-link, .qm-type-column.qm-column-width-1_3 .qm-submenu .qm-item-type-link, .qm-type-column.qm-column-width-1_4 .qm-submenu .qm-item-type-link, .qm-type-column.qm-column-width-1_5 .qm-submenu .qm-item-type-link, .qm-type-column.qm-column-width-3_4 .qm-submenu .qm-item-type-link {
    border-top: none;
  }
  .qm-type-column.qm-column-width-auto {
    flex: 0 1 auto;
    min-width: 220px;
  }
  .qm-type-column.qm-column-width-1_1 {
    flex: 0 1 calc(100% - 20px);
  }
  .qm-type-column.qm-column-width-1_2 {
    flex: 0 1 calc(50% - 20px);
  }
  .qm-type-column.qm-column-width-1_3 {
    flex: 0 1 calc(50% - 20px);
  }
  .qm-type-column.qm-column-width-1_4 {
    flex: 0 1 calc(50% - 20px);
  }
  .qm-type-column.qm-column-width-1_5 {
    flex: 0 1 calc(50% - 20px);
  }
  .qm-type-column.qm-column-width-3_4 {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (min-width: 768px) {
  .qm-type-column.qm-column-width-1_2 {
    flex: 0 1 calc(50% - 20px);
  }
  .qm-type-column.qm-column-width-1_3 {
    flex: 0 1 calc(33.33% - 20px);
  }
  .qm-type-column.qm-column-width-1_4 {
    flex: 0 1 calc(25% - 20px);
  }
  .qm-type-column.qm-column-width-1_5 {
    flex: 0 1 calc(20% - 20px);
  }
  .qm-type-column.qm-column-width-3_4 {
    flex: 0 1 calc(75% - 20px);
  }
}
.qm-type-column .qm-submenu .qm-item {
  height: inherit;
}
.qm-type-column .qm-submenu .qm-item-type-link {
  width: 100%;
  border-top: 1px solid #e1e1e1;
}
.qm-type-column .qm-submenu .qm-item-type-link:first-child {
  border-bottom: none;
}
.qm-type-column .qm-submenu .qm-item-type-link .qm-item-externallink {
  padding: 1em;
  width: inherit;
}
.qm-type-column img {
  max-width: 100%;
}

/*Tabs*/
.qm-type-tabs {
  display: flex;
  width: 100%;
}
.qm-type-tabs > .qm-submenu {
  height: max-content;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.qm-type-tabs > .qm-submenu > .qm-item {
  position: relative;
  color: var(--main-text-color);
}
.qm-type-tabs > .qm-submenu > .qm-item > .qm-link {
  background: #f5f5f5;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .qm-type-tabs > .qm-submenu > .qm-item > .qm-link {
    border-bottom: 1px solid #e1e1e1;
  }
}
.qm-type-tabs > .qm-submenu > .qm-item > .qm-link:hover {
  background: #e3e3e3;
}
.qm-type-tabs > .qm-submenu > .qm-item > .qm-link::after {
  content: "\f105";
  font-family: "FontAwesome";
  float: right;
}
.qm-type-tabs > .qm-submenu > .qm-item > .qm-submenu {
  max-height: 0;
  visibility: hidden;
  background: #ffffff;
  width: 100%;
  opacity: 0;
  z-index: 9999;
  transition: visibility 250ms, opacity 250ms ease, max-height 250ms ease;
}
@media (min-width: 768px) {
  .qm-type-tabs > .qm-submenu > .qm-item > .qm-submenu {
    transition: none;
  }
}
@media (min-width: 992px) {
  .qm-type-tabs > .qm-submenu > .qm-item > .qm-submenu {
    width: calc(100% - 300px);
    flex-direction: row;
    flex-wrap: wrap;
    display: flex !important;
    max-height: unset;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
  }
}
@media (min-width: 992px) {
  .qm-type-tabs > .qm-submenu > .qm-item.active > .qm-link {
    background: var(--menu-color);
    color: #fff;
  }
}
.qm-type-tabs > .qm-submenu > .qm-item.active > .qm-submenu {
  max-height: 2400px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 992px) {
  .qm-type-tabs > .qm-submenu > .qm-item.active > .qm-submenu {
    max-height: 1200px;
    row-gap: 2em;
  }
  .qm-type-tabs > .qm-submenu > .qm-item.active > .qm-submenu > .qm-type-link {
    margin-right: 4em;
  }
  .qm-type-tabs > .qm-submenu > .qm-item.active > .qm-submenu .qm-type-link {
    max-width: max-content;
  }
}
@media screen and (min-width: 992px) {
  .qm-type-tabs > .qm-submenu > .qm-item {
    position: static;
  }
}
@media screen and (min-width: 992px) {
  .qm-type-tabs > .qm-submenu {
    width: 300px;
    height: 100%;
    background: #f5f5f5;
    border-right: 1px solid #e1e1e1;
  }
}

/*Link*/
.qm-type-link {
  display: flex;
  flex-direction: column;
  color: var(--main-header-submenu-font-color);
  width: 100%;
}
@media screen and (min-width: 992px) {
  .qm-type-link {
    width: auto;
  }
}
.qm-type-link .qm-link {
  color: currentColor;
  cursor: pointer;
  width: 100%;
  padding: 1em;
  border-bottom: 1px solid #e1e1e1;
}
.qm-type-link .qm-link:hover {
  color: var(--menu-text-color-hover);
  background-color: #d2d2d2;
}
@media screen and (min-width: 992px) {
  .qm-type-link .qm-link:hover {
    background-color: unset;
  }
}
@media screen and (min-width: 992px) {
  .qm-type-link .qm-link {
    border-bottom: none;
  }
}
.qm-type-link.qm-item-haschildren > .qm-link {
  font-weight: 600;
}
.qm-type-link.qm-item-haschildren > .qm-link::after {
  float: right;
  content: "\f107";
  font-family: "FontAwesome";
}
@media screen and (min-width: 992px) {
  .qm-type-link.qm-item-haschildren > .qm-link::after {
    content: "";
  }
}
.qm-type-link.qm-item-haschildren .qm-submenu {
  max-height: 0;
  display: none;
  opacity: 0;
  transition: opacity 1s ease, max-height 0.5s ease;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .qm-type-link.qm-item-haschildren .qm-submenu {
    flex-direction: column;
    font-weight: normal;
    display: block;
    opacity: 1;
    max-height: 2400px;
  }
}
@media screen and (min-width: 992px) {
  .qm-type-link.qm-item-haschildren .qm-submenu .qm-link {
    padding: 0.5em 0;
    margin: 0 1em;
  }
}
.qm-type-link.qm-item-haschildren.active {
  border-bottom: none;
  position: relative;
}
.qm-type-link.qm-item-haschildren.active > .qm-link::after {
  content: "";
}
.qm-type-link.qm-item-haschildren.active > .qm-submenu {
  max-height: 2400px;
  display: block;
  opacity: 1;
}
.qm-type-link.qm-item-haschildren.active .submenu-close-btn {
  padding: 1em;
  display: flex;
  color: currentColor;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .qm-type-link.qm-item-haschildren.active .submenu-close-btn {
    display: none;
  }
}
.qm-type-link.qm-item-haschildren.active .submenu-close-btn:after {
  color: currentColor;
  font-family: "FontAwesome";
  float: right;
  content: "\f00d";
}
@media screen and (min-width: 992px) {
  .qm-type-link.qm-item-haschildren.active {
    position: static;
  }
}

/*Row*/
.qm-type-row > ul {
  display: flex !important;
  flex-direction: column !important;
}
@media screen and (min-width: 992px) {
  .qm-type-row > ul {
    flex-direction: row !important;
  }
}

/*# sourceMappingURL=main.css.map */
