@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

/* ------------------ style --------------------- */

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #474747;
    overflow-x: hidden;
}

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

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
}
main {
    display: block;
}

img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}

a {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

a:hover {
    color: #ff5901;
}
p {
    line-height: 150%;
}
p + p {
    margin-top: 1em;
}
h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin: 1em 0;
}
h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 1em 0;
}
h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 1em 0;
}
.align-center {
    text-align: center;
}
.list {
    padding-left: 2em;
    list-style: disc;
    margin-bottom: 1em;
}
.list li {
    line-height: 150%;
}
.margin-top-3 {
    margin-top: 3em;
}
#main-header {
    padding: 2em 0;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .2);
}
#main-banner {
    padding: 10vh 0;
    background: url("../images/banner-bg.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
}
#main-banner--title {
    color: #fff;
    font-size: calc(2.5vw + 2rem);
    font-weight: 800;
    margin: 0;
    line-height: 130%;
}
.content {
    margin: 4em 0;
}
.page-height {
    min-height: 60vh;
}
.content--title {
    font-size: calc(1vw + 2rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 1em 0;
}
.divider {
    padding: 7vh 0;
    background: url("../images/divider-bg.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
}
.divider--title {
    color: #fff;
    font-size: calc(1vw + 2rem);
    font-weight: 700;
    margin: 0;
    line-height: 130%;
}
#main-footer {
    padding: 4em 0;
    background: #26004d url("../images/dark-dotted-2-80.png") top left repeat;
    text-align: center;
}
#main-footer a,
#main-footer small {
    color: rgba(255, 255, 255, .7);
}
#main-footer small {
    font-size: 80%;
}
#main-footer a {
    text-decoration: none;
}
#main-footer a:hover,
#main-footer a:active,
#main-footer a:focus {
    color: #ff5901;
}
.contact--data a + a {
    margin-left: 1em;
}
.footer--logo {
    margin: 1.5em 0;
}
.footer--nav {
    margin-top: 1.5em;
}
.footer--nav ul li + li {
    margin-top: 1em;
}
.footer--nav ul li a {
    font-size: 90%;
}
@media (min-width: 450px) {
    .footer--nav ul li {
        display: inline-block;
    }
    .footer--nav ul li + li {
        margin-left: 1em;
        margin-top: 0;
    }
}


.form-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.form-row + .form-row {
    margin-top: 1em;
}
.form label,
.form input,
.form textarea {
    display: block;
    width: 100%;
}
.form label {
    margin-bottom: .3em;
}
.form label > span {
    color: #ff5901;
    font-weight: 800;
}
.form input,
.form textarea {
    padding: .5em .8em;
    border: 2px solid #ccc;
    border-radius: 3px;
    font-family: "Open Sans", sans-serif;
    font-size: 1.8rem;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.form input:hover,
.form textarea:hover,
.form input:active,
.form textarea:active,
.form input:focus,
.form textarea:focus {
    border-color: #26004d;
}
.form textarea {
    resize: vertical;
}
.btn-form {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #ff5901;
    border: 2px solid #ff5901;
    border-radius: 3px;
    padding: .4em 2em;
    cursor: pointer;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.btn-form:hover,
.btn-form:active,
.btn-form:focus {
    background-color: #26004d;
    border-color: #26004d;
}

.thankyou-note {
    text-align: center;
}
.thankyou-note p {
    font-size: 120%;
    margin-bottom: 5em;
}
#toTop {
    width: 30px;
    height: 30px;
    background: #ff5901 url("../images/arrow-toTop.png") center center no-repeat;
    background-size: contain;
    text-align: center;
    padding: 10px;
    line-height: 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    z-index: 40;
    border: 1px solid #ff5901;
    border-radius: 2px;
}
.big-btn {
    position: relative;
    background-color: #ff5901;
    border: 2px solid #ff5901;
    border-radius: 3px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: .6em 3.5em .6em 2em;
}
.big-btn::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    top: 25%;
    right: 1em;
    background: url("../images/icon.png") center no-repeat;
    background-size: contain;
    z-index: 1;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.big-btn:hover,
.big-btn:active,
.big-btn:focus {
    background-color: #fff;
    border: 2px solid #26004d;
    color: #26004d;
}
.big-btn:hover::after,
.big-btn:active::after,
.big-btn:focus::after {
    background: url("../images/icon-v.png") center no-repeat;
    background-size: contain;
    top: 10%;
    right: .5em;
}

































