.ServiceNavigation {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.ServiceNavigation-bgImage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
  z-index: -1;
}

.ServiceNavigation-bgImage img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.ServiceNavigation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ServiceNavigation-item {
  position: relative;
  width: 100%;
}

@media (min-width: 32rem) {
  .ServiceNavigation-item {
    width: calc(100% / 4);
  }
}

@media (min-width: 64rem) {
  .ServiceNavigation-item {
    width: calc(100% / 7);
  }
}

.ServiceNavigation-item:nth-child(odd)::before {
  background-color: var(--colorBrand);
}

.ServiceNavigation-item:nth-child(odd) a:hover, .ServiceNavigation-item:nth-child(odd) a:active, .ServiceNavigation-item:nth-child(odd) a:focus {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
}

.ServiceNavigation-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--colorText);
  z-index: 0;
  mix-blend-mode: multiply;
}

.ServiceNavigation-item::after {
  content: " ";
  display: none;
  position: absolute;
  right: 0;
  top: 23%;
  height: 56%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.ServiceNavigation-item:last-child::after {
  display: none;
}

.ServiceNavigation-item a {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  align-items: center;
  min-height: 100%;
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  padding: var(--spaceSm) 20%;
  text-align: center;
  line-height: 1.1;
  font-size: var(--textRg);
  font-weight: 600;
  z-index: 1;
  transition: var(--animationBase);
}

@media (min-width: 48rem) {
  .ServiceNavigation-item a {
    padding: var(--spaceRg) 20%;
  }
}

@media (min-width: 64rem) {
  .ServiceNavigation-item a {
    padding: var(--spaceLg) 20%;
  }
}

.ServiceNavigation-item a:hover, .ServiceNavigation-item a:active, .ServiceNavigation-item a:focus {
  text-decoration: none;
  background: hsl(var(--colorText-h), calc(var(--colorText-s) * 1%), calc(var(--colorText-l) * 0.8 * 1%));
}

.ServiceNavigation-image {
  display: flex;
  max-height: 55px;
  max-width: 70px;
  width: auto;
  margin-bottom: var(--spaceMd);
}

.ServiceNavigation-image img {
  height: 50px;
  max-height: 100%;
  width: auto;
}

/*# sourceMappingURL=service-navigation.min.css.map */
