/**
 * @file
 * NavKit menu styles.
 */

 .block-navkit {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

.navkit__link {
  width: 100%;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "Atilla";
  color: #ffffff;
  padding: 5px 8px 20px 8px;
  line-height: 1;
}

.navkit__link:hover {
  background: #C20F2D;
}

.navkit__item--parent:hover,
.navkit__item--parent:focus,
.navkit__item--parent:active {
  background: #C20F2D;
}

body.about-page .navkit__menu > *:nth-child(1),
body.company-page .navkit__menu > *:nth-child(3),
body.locator-page .navkit__menu > *:nth-child(2),
body.shop-page .navkit__menu > *:nth-child(4) {
  background: #C20F2D;
}

.navkit__submenu {
  background: #C20F2D;
}

.navkit__submenu .navkit__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.navkit__submenu .navkit__link:hover {
  background: #1A1717;
}