
  /* Цвет неактивного пункта */
  #rec1067231866 .t-menu__item a {
    color: #FBF4D4;
    text-decoration: none;
    transition: color 0.3s;
  }

  /* Цвет активного пункта */
  #rec1067231866 .t-menu__item.active a {
    color: #4C67C0;
  }



  
    О нас
    Услуги
    Меню
    Портфолио
    Контакты
  



  function setActiveMenuItem() {
    var currentUrl = window.location.href;
    var menuItems = document.querySelectorAll('#rec1067231866 .t-menu__item a');

    for (var i = 0; i < menuItems.length; i++) {
      var menuItem = menuItems[i];
      var menuItemUrl = menuItem.href;

      if (currentUrl === menuItemUrl || window.location.pathname === new URL(menuItemUrl).pathname) {
        menuItem.parentNode.classList.add('active');
        menuItem.style.color = '#4C67C0';
      } else {
        menuItem.style.color = '#FBF4D4';
      }
    }
  }

  window.onload = setActiveMenuItem;
