html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Roboto', san-serif;
    color: #1E1E1E;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

a, a:visited { color: #6b7688; text-decoration: none; }
a:hover, a:focus { color: #313bac; }


.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.display-block { display: block; }
.inline-block { display: inline-block; }
.hide { display: none; }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.absolute.full { width: 100%; height: 100%; top: 0; left: 0; }
.relative.full { width: 100%; height: 100%; top: 0; left: 0; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.caps { text-transform: uppercase; }

.one-column { width: 100%; }
.two-column { width: 50%; }
.three-column { width: 33.3333%; }
.four-column { width: 25%; }
.seventy-five { width: 75%; }

.bg-center { background-position: center; }
.bg-cover { background-size: cover; background-repeat: no-repeat; }

.no-list,
.no-list ul,
ul.no-list > li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

@media(max-width: 768px) {
    .sm-hide { display: none; }
    .sm-display-block { display: block; }

    .sm-one-column { width: 100%; }
    .sm-two-column { width: 50%; }
    .sm-three-column { width: 33.3333%; }
    .sm-four-column { width: 25%; }
    .sm-seventy-five { width: 75%; }
}





