jQuery(document).ready(function(){
jQuery('.toggle__target .cancel').on('click',function () {
jQuery(".toggle__target").removeClass("is-opened");
history.pushState(null, null, "/");
location.reload();
});
});
jQuery('.services').click(function() {
history.pushState(null, null, "/services");
});
jQuery('.products').click(function() {
history.pushState(null, null, "/products");
});