.dropdown .nav__menu-item-active::after {
bottom: 0px;
}
.current_page_ancestor > a::after, .nav__menu-item-active::after {
content: '';
width: 100%;
height: 3px;
display: block;
position: absolute;
left: 0;
bottom: -22px;
background-color: #dd482d;
}
$('.hamburger').click(function (e) {
e.preventDefault();
$(this).toggleClass('is-active');
$('.main-menu').toggleClass('active');
});