/*.smooth_scrolling.wrapper {
    width: 100%;
    height: 100svh;
    overflow: hidden;
    position: relative;
    padding: 0;
}
  
.smooth_scrolling .scroll_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.15s ease-out;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 100svh;
}

.smooth_scrolling .scroll_wrapper > .content {
    padding-top: 4rem;
    flex: 1 1 0;
    width: 100%;
}
.smooth_scrolling .scroll_wrapper > .footer {
    flex: 0 0 auto;
    width: 100%;
}

@media screen and (min-width:64em){
    .smooth_scrolling .scroll_wrapper > .content {
        padding-top: 6rem;
    }
}



.typo_counter {
    display: inline-block;
}
*/