@media (min-width: 768px) {
  .fitted .navigation-in ul {
      justify-content: center;
  }
}
.top-navigation-contacts .top-phone-number span
{
    color: #767676;
    font-size: 13px !important;
}

.top-navigation-contacts .top-phone-number span:hover
{
   color: #56c5d0
}

.top-phone-number img
{
  width: 17px;
  height: 17px;
}

/* Phone icon hover color approximation for external SVG <img> */
.top-phone-number img {
  transition: filter 160ms ease;
}

.top-phone-number:hover img,
.top-phone-number:focus-visible img {
  /*
    Converts the SVG-as-image to an approximate #56c5d0.
    If you need 100% exact color, the SVG must be inline (not via <img>).
  */
  filter: brightness(0) saturate(100%) invert(73%) sepia(45%) saturate(541%)
    hue-rotate(131deg) brightness(84%) contrast(105%);
} 