/* Replace old Twitter icon with new Twitter logo using Font Awesome */
.tm-anomica-icon-twitter::before {
    content: "\f099"; /* Unicode for Twitter icon from Font Awesome */
    font-family: 'FontAwesome';
    font-size: 20px; /* Adjust the size as needed */
    color: #1DA1F2; /* New Twitter blue */
}

/* Alternatively, use a custom image for the new Twitter logo */
.tm-anomica-icon-twitter {
    background-image: url('path-to-your-new-twitter-logo.png'); /* Replace with the URL of the new Twitter logo */
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    text-indent: -9999px; /* Hide the old icon */
}

#site-header-menu #site-navigation div.nav-menu > ul > li:nth-child(4) ul, .tm-mmmenu-override-yes #site-header-menu #site-navigation div.mega-menu-wrap ul.mega-menu.mega-menu-horizontal li.mega-menu-item:nth-child(4) ul.mega-sub-menu {
    background-position: 0% 0%;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
    width: max-content;
}