.content-split-holder {
max-width: 600px;
margin-top: 30px;
}
.content-inner{
margin-bottom: 60px;
}
.content-split-holder h1 {
display: none;
}
document.addEventListener("DOMContentLoaded", function(event) {
var urlChangeInt = setInterval(function(){
var searchParams = new URLSearchParams(window.location.search)
if(searchParams.has('_mt')){
var mtparam = searchParams.get('_mt');
if(mtparam == '/account/personal-information'){
window.location.replace("/login?redirect_to=/subscribe");
clearInterval(urlChangeInt);
}
}
}, 2000);
});