html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
	padding: 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    background: #fff1e7;
    position: relative;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Graphik', Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

.site-header {
    z-index: 100;
    background: transparent;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: white;
}

.site-header__nav {
    z-index: 100;
    overflow: hidden;
    position: relative;
	background: #fff url("data:image/svg+xml,%3Csvg width='160' height='4' viewBox='0 0 160 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='nonzero' fill='none'%3E%3Cpath fill='%230F3274' d='M22.1 0l4.2 4h42.5l4.1-4H25.1z'/%3E%3Cpath fill='%23FFF1E7' d='M22.3 0H0v4h26.4z'/%3E%3Cpath fill='%23F05183' d='M68.5 4l4.1-4h70.1l-4 4H71.5z'/%3E%3Cpath fill='%23FFF1E7' d='M160 0h-17.3l-4 4H160z'/%3E%3C/g%3E%3C/svg%3E") repeat-x top;
    height: 56px;
}

.site-header__navWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding: 16px 16px 12px 16px;
    margin-left: auto;
    margin-right: auto;
    height: 56px;
}

.site-header__navWrapper .site-header__logo {
    width: 4rem;
    height: auto;
    order: 1;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translate(-50%, -50%);
}

.site-header__logoWrapper {
    height: 24px;
}

.site-header__logoImage {
    position: relative;
    width: 100%;
}

.site-commonMessage {
    display: flex;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
}

.site-commonMessage__text {
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
    font-family: "Graphik";
    font-weight: 400;
}

small {
    margin-top: 24px;
    line-height: 20px;
    font-size: 12px;
    display: block;
}

strong {
        font-family: "Graphik-Semibold", Arial, Helvetica, sans-serif;
        font-weight: 700;
}

.site-commonMessage__heading {
    font-size: 2.5rem;
    line-height: 1;
    font-family: "Austin-Bold", "Times New Roman", Times, serif;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: center;
    color: #0f3274;
    margin-top: 0.5rem;
    font-style: normal;
}

@media only screen and (min-width: 768px) {
    .site-commonMessage__heading {
        font-size: 3.5rem;
    }

    .site-header {
        height: 90px;
    }

    .site-header__nav {
        height: 90px;
		background: #fff url("data:image/svg+xml,%3Csvg width='320' height='8' viewBox='0 0 320 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='nonzero' fill='none'%3E%3Cpath fill='%230F3274' d='M44.3 0l8.3 8h85l8.3-8H50.3z'/%3E%3Cpath fill='%23FFF1E7' d='M44.5 0H0v8h52.9z'/%3E%3Cpath fill='%23F05183' d='M137 8l8.3-8h140l-8 8H143z'/%3E%3Cpath fill='%23FFF1E7' d='M320 0h-34.7l-8 8H320z'/%3E%3C/g%3E%3C/svg%3E") repeat-x top;
    }

    .site-header__navWrapper {
        height: 90px;
        align-items: center;
        padding-top: 20px;
    }

    .site-header__logoWrapper {
        height: 24px;
    }

    .site-header__navWrapper .site-header__logo {
        position: relative;
        width: 5rem;
        height: auto;
        top: 0;
        left: auto;
        right: auto;
        transform: none;
    }
}

.site-commonMessage__icon {

}

