/* Variables */
:root {
    --scrollbarwidth: 0px;
    --viewportwidth: calc(100vw - var(--scrollbarwidth));
}

/* native smooth scroll support */
html { scroll-behavior: smooth; }


/* CSS Reset */
/* 1. Use a more-intuitive box-sizing model. */
*, *::before, *::after {
    box-sizing: border-box;
}
/* 2. Remove default margin */
* {
    margin: 0;
}
/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
*/
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
/*
5. Improve media defaults
*/
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
/*
6. Remove built-in form typography styles
*/
input, button, textarea, select {
    font: inherit;
}
/*
7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* END CSS Reset */

/* basics */
img {
    height: auto;
}


.site-content{
    background: #FFF;
}

.site-content > .container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1600px) {
    .site-content > .container{
        max-width: 1200px;
    }
}
@media (max-width: 1300px) {
    .site-content > .container{
        max-width: calc(100% - 60px);
    }
}
@media (max-width: 999.9px) {
    .site-content > .container{
        max-width: calc(100% - 40px);
    }
}


.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1600px) {
    .container{
        max-width: 1200px;
    }
}
@media (max-width: 1300px) {
    .container{
        max-width: calc(100% - 60px);
    }
}
@media (max-width: 999.9px) {
    .container{
        max-width: calc(100% - 40px);
    }
}


/* TNS */
.tns-outer {
    max-width: 100%;
}
