border: none
box-sizing: border-box
.top_info {
position: relative;
top: 100px;
}
.top_info {
position: absoute;
width: 100%;
top: 40px;
}
document.addEventListener('DOMContentLoaded', function () {
if (window.innerWidth < 640) {
document.querySelector('.my-element').classList.remove('class-name');
} else {
document.querySelector('.my-element').classList.add('class-name');
}
});