html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

* {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
     :root {
        scroll-behavior: smooth;
    }
}

html {
    font-size: 1rem;
}

body {
    line-height: 1.5;
    font-size: .95rem;
    font-weight: 400;
    min-height: 100vh;
    color: var(--text-color);
    font-family: var(--default-font);
    overflow-x: hidden;
    background-color: hsl(0, 0%, 100%);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: hsla(0, 0%, 0%, 0);
}

img {
    max-width: 100%;
}

a,
p,
li,
h1,
h2,
h3,
h4 {
    word-break: break-word;
    hyphens: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--default-font);
    font-weight: 500;
}

h4 {
    font-size: 1.21rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp( 1rem, 4.21vw + 1rem, 1.21rem);
}

h3 {
    font-size: 1.4641rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp( 1rem, 4.4641vw + 1rem, 1.4641rem);
}

h2 {
    font-size: 1.771561rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp( 1.18694587rem, 4.58461513vw + 1rem, 1.771561rem);
}

h1 {
    font-size: 2.14358881rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp( 1.4362045027rem, 4.7073843073vw + 1rem, 2.14358881rem);
}

a {
    color: var(--link-color, hsl(210, 40%, 35%));
    transition: var(--transition, .2s ease-in-out);
    text-decoration: underline;
}

a:hover,
a:focus {
    color: var(--link-color-hover, hsl(5, 75%, 30%));
    text-decoration: none;
}

.wrapper {
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .wrapper {
        width: 750px;
        padding: 0
    }
}

@media (min-width: 992px) {
    .wrapper {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .wrapper {
        width: 1170px;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/***** SKIP TO ... LINKS *****/

.quick-access-nav {
    background: #000;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    display: flex;
    flex-direction: row;
}

.quick-access-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.quick-access-nav a:focus {
    outline: 4px solid greenyellow;
    outline-offset: -.25rem;
}