/* CSS Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="text"], input[type="email"], select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

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

/* CSS Variables */
:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --site-language-margin-left: 0;
    --site-language-margin-right: auto;
    --viewport-height: 100vh;
}

/* Base Styles */
html {
    font-size: 18pt;
}

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
}

body:before {
    content: '';
    display: block;
    background-attachment: scroll;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    width: 100vw;
    z-index: 0;
    background-image: 
        url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.5%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'),
        radial-gradient(82% 94% at 0% 0%, rgba(250,252,250,0.753) 0%, rgba(0,5,1,0.753) 72%),
        url('assets/images/bg.jpg');
    background-size: 512px, cover, cover;
    background-position: center, 0% 0%, center;
    background-repeat: repeat, repeat, no-repeat;
    background-color: #FFFFFF;
}

/* Typography */
u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    text-indent: 0;
}

mark {
    background-color: rgba(144,144,144,0.25);
}

s {
    text-decoration: line-through;
}

sub {
    font-size: smaller;
    vertical-align: sub;
}

sup {
    font-size: smaller;
    vertical-align: super;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}

a[onclick]:not([href]) {
    cursor: pointer;
}

/* Layout */
#wrapper {
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: var(--viewport-height);
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 0 0 2.25rem 0;
}

#main {
    --alignment: var(--site-language-alignment);
    --flex-alignment: var(--site-language-flex-alignment);
    --indent-left: var(--site-language-indent-left);
    --indent-right: var(--site-language-indent-right);
    --margin-left: var(--site-language-margin-left);
    --margin-right: var(--site-language-margin-right);
    --border-radius-tl: 0;
    --border-radius-tr: 0;
    --border-radius-br: 0;
    --border-radius-bl: 0;
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    background-color: transparent;
}

#main > .inner {
    --padding-horizontal: 3rem;
    --padding-vertical: 0.25rem;
    --spacing: 0.75rem;
    --width: 70rem;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    max-width: 100%;
    position: relative;
    width: var(--width);
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
    margin-top: var(--spacing);
    margin-bottom: var(--spacing);
}

#main > .inner > :first-child {
    margin-top: 0 !important;
}

#main > .inner > :last-child {
    margin-bottom: 0 !important;
}

/* Images */
.image {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

.image .frame {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
}

.image .frame img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

#image01 .frame {
    width: 15rem;
    transition: none;
}

#image01 .frame img {
    transition: none;
}

/* Text */
h1, h2, h3, p {
    direction: var(--site-language-direction);
    position: relative;
}

#text01 {
    color: #FFFFFF;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 1em;
    line-height: 1.5;
    font-weight: 400;
}

#text01 a {
    color: #E8EDE4;
    text-decoration: underline;
}

#text01 a:hover {
    text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

/* Forms */
form {
    display: flex;
    justify-content: var(--flex-alignment);
}

form .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 100%;
}

form label {
    direction: var(--site-language-direction);
    display: block;
}

form input[type="text"], 
form input[type="email"], 
form input[type="tel"], 
form input[type="number"], 
form textarea, 
form select, 
form .file, 
form .date {
    background-color: transparent;
    border: 0;
    direction: var(--site-language-direction);
    display: block;
    outline: 0;
    text-align: var(--site-language-alignment);
    width: 100%;
}

form textarea {
    height: 10rem;
    line-height: normal;
}

form .actions button {
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

form .actions button:disabled {
    cursor: default;
    opacity: 0.35;
    pointer-events: none;
}

/* Form Specific Styles */
#form01 {
    justify-content: flex-start;
    text-align: left;
}

#form01 .inner {
    width: 25rem;
}

#form01 .inner > * {
    margin: 1rem 0 0 0;
    max-width: 100%;
}

#form01 .inner > :first-child {
    margin: 0;
}

#form01 label:first-child {
    margin: 0.25rem 0 0.75rem 0;
    font-size: 1em;
    line-height: 1.5;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-weight: 400;
    color: #000000;
}

#form01 input[type="text"], 
#form01 input[type="email"], 
#form01 input[type="tel"], 
#form01 input[type="number"], 
#form01 textarea, 
#form01 select, 
#form01 .file, 
#form01 .date {
    font-size: 1em;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-weight: 400;
    border-radius: 0rem;
    color: #E8EDE4;
    border: solid 1px #DDE3D8;
}

#form01 input[type="text"], 
#form01 input[type="email"], 
#form01 input[type="tel"], 
#form01 input[type="number"], 
#form01 select, 
#form01 .file, 
#form01 .date {
    height: 2.5rem;
    padding: 0 0.875rem;
    line-height: calc(2.5rem - 2px);
}

#form01 textarea {
    padding: 0.875rem;
    height: 10rem;
    line-height: 1.5;
    padding-top: 0.6125rem;
}

#form01 .actions button {
    display: inline-block;
    width: auto;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.25rem;
    vertical-align: middle;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 1em;
    font-weight: 400;
    border-radius: 0.375rem;
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #C9CFC6;
    color: #0B0D0B;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    position: relative;
}

/* Placeholder Styles */
#form01 ::-webkit-input-placeholder {
    color: #E8EDE4;
    opacity: 0.55;
}

#form01 :-moz-placeholder {
    color: #E8EDE4;
    opacity: 0.55;
}

#form01 ::-moz-placeholder {
    color: #E8EDE4;
    opacity: 0.55;
}

#form01 :-ms-input-placeholder {
    color: #E8EDE4;
    opacity: 0.55;
}

/* Hidden Elements */
#form01 input[name="page-url"] {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 11pt;
    }
    
    #main > .inner {
        --padding-horizontal: 2rem;
        --padding-vertical: 0.25rem;
        --spacing: 0.75rem;
    }
    
    #image01 .frame {
        width: 15rem;
    }
    
    #text01 {
        width: 100%;
        font-size: 1em;
        line-height: 1.5;
    }
    
    #form01 .actions button {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    #main > .inner {
        --spacing: 0.65625rem;
    }
    
    #form01 .actions button {
        max-width: 32rem;
        width: 100%;
    }
}

@media (max-width: 360px) {
    #main > .inner {
        --padding-horizontal: 1.5rem;
        --padding-vertical: 0.1875rem;
        --spacing: 0.5625rem;
    }
    
    #text01 {
        font-size: 1em;
    }
}