/* overriding the bootstrap header font sizes */
/* overriding the bootstrap header font sizes */
@media (min-width: 1220px) {
  .hide-on-large-screens {
    display: none !important; } }

@media (max-width: 1220px) {
  .hide-on-small-screens {
    display: none !important; } }

.itmm-nav ul {
  list-style: none; }

.itmm-nav__list--level1 {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0; }

.itmm-nav__list--level2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  min-height: 300px;
  padding: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); }
  .itmm-nav__list--level2.has-menu-background-image--true {
    text-align: center;
    align-items: center; }
  .itmm-nav__list--level2.has-menu-background-image--false {
    text-align: left; }
    .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2 {
      min-height: 300px;
      padding: 56px;
      border-top: 1px solid #ccc;
      border-right: 1px solid #ccc;
      transition: all 500ms ease-in-out; }
      .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2 > a {
        margin-bottom: 30px; }
      .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:hover, .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:focus {
        background-color: var(--color-light-brand-color); }
        .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:hover > a, .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:focus > a {
          text-decoration: underline;
          text-decoration-thickness: 2px;
          text-underline-offset: 15px; }
          .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:hover > a:hover, .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:hover > a:focus, .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:focus > a:hover, .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:focus > a:focus {
            text-decoration-thickness: 4px; }
      .itmm-nav__list--level2.has-menu-background-image--false .itmm-nav__item--level2:last-child {
        border-right: none; }

.itmm-nav__list--level3, .itmm-nav__list--level4 {
  padding: 0; }

.itmm-nav__item--level1 {
  border-bottom: 2px solid transparent; }
  .itmm-nav__item--level1:hover, .itmm-nav__item--level1:focus, .itmm-nav__item--level1:focus-visible {
    border-bottom: 2px solid; }
  .itmm-nav__item--level1 > a {
    padding: 20px 30px; }

.itmm-nav__item--hasimage {
  padding: 0;
  height: 100%;
  position: relative; }

.itmm-nav__link {
  display: inline-block; }
  .itmm-nav__link:hover {
    text-decoration: none; }
  .itmm-nav__link--hasimage {
    color: var(--color-light-pure-white);
    text-transform: uppercase;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; }
  .itmm-nav__link--imageoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-brand-color);
    opacity: 0;
    animation: fadeOut 500ms; }
    .itmm-nav__link--imageoverlay.is-hovered {
      left: 0;
      opacity: 1;
      animation: fadeIn 500ms; }
      .itmm-nav__link--imageoverlay.is-hovered .itmm-nav__link--categoryname {
        color: var(--color-dark-brand-color);
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 15px; }
        .itmm-nav__link--imageoverlay.is-hovered .itmm-nav__link--categoryname:hover {
          text-decoration-thickness: 4px; }
  .itmm-nav__link--level2 {
    display: inline-block;
    font-size: 120%;
    font-weight: bold;
    text-transform: uppercase; }
  .itmm-nav__link--level3 {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; }
    .itmm-nav__link--level3:hover {
      border-color: var(--color-dark-brand-color); }

.itmm-nav__dropdown-container {
  background-color: var(--color-light-pure-white);
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 2px;
  z-index: 5;
  width: 100%;
  min-height: 300px; }

.itmm-nav__viewall-container {
  padding: 30px; }

.itmm-nav__viewall-link {
  display: block;
  width: 100%;
  border: 1px solid;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  padding: 15px; }

.js-toggle.is-hidden {
  display: none;
  visibility: hidden; }

.js-toggle.is-visible {
  display: block;
  visibility: visible;
  opacity: 1;
  animation: fadeIn 500ms; }

.js-toggle.fade-out {
  opacity: 0;
  animation: fadeOut 500ms; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

