<!--Прилипающий подвал (Sticky footer)
https://mt-webdesign.ru/sticky-footer-->
<style>
.uc-sticky-footer {
clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
}
.uc-sticky-footer .t396__artboard {
position: fixed;
bottom: 0;
width: 100%;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
var footerElement = document.querySelector('.uc-sticky-footer');
var footerSticky = document.querySelector('.uc-sticky-footer .t396__artboard');
if (footerElement && footerSticky) {
var artboardStickyHeight = footerSticky.offsetHeight;
footerElement.style.height = artboardStickyHeight + 'px';
}
});
</script>