Drop downs in main NavBar not working in IE

Help…the main NavBar it doesn’t work in IE but it does with Chrome and Firefox, what is going on there please?

Hey there

Please add this css code in appearance > customize > additional css and let me know if it worked:

.main-navigation .menu>li>ul li:hover>a {
opacity: 1;
}

this is the final version of the complete code:

/IE menu fix/
.main-navigation .menu>li>ul li:hover>ul {
opacity: 1;
transform: translate3d(0,0px,0);
-webkit-transform: translate3d(0,0px,0);
-moz-transform: translate3d(0,0px,0);
visibility: visible;
}
.main-navigation .menu>li>ul li:hover>a {
opacity: 1;
}