@charset "UTF-8";


/*! ---------- =reset ---------- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

ul {
  list-style: disc;
}

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

img {
  -ms-interpolation-mode: bicubic;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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


/*! ---------- =typography ---------- */

body {
  font: 18px/24px "Open Sans", Helvetica, Arial, sans-serif;
  color: #2e3848;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

p,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 24px;
}
p:last-child,
ol:last-child,
ul:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
p,
ol,
ul {
  orphans: 2;
  widows: 2;
}
ol,
ul {
  margin-left: 2em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #163a50;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  display: inline-block;
  vertical-align: middle;
}
h1 {
  font-size: 50px;
  line-height: 48px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  font-size: 38px;
  line-height: 36px;
}
h3 {
  font-size: 30px;
  line-height: 36px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 22px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 28.8px;
  }
}


/*! ---------- =common =components ---------- */

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #6244bb;
}
a:hover,
a:focus {
  color: #ff8200;
}
a,
button {
  -webkit-transition: color 0.15s ease-out,
                        background-color 0.15s ease-out,
                        border 0.15s ease-out,
                        box-shadow 0.15s ease-out,
                        opacity 0.15s ease-out;
  transition: color 0.15s ease-out,
                background-color 0.15s ease-out,
                border 0.15s ease-out,
                box-shadow 0.15s ease-out,
                opacity 0.15s ease-out;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.margin {
  margin-bottom: 24px;
}

.margin-large {
  margin-bottom: 48px;
}

.margin-small {
  margin-bottom: 12px;
}

.margin-top {
  margin-top: 24px;
}

.margin-top-large {
  margin-top: 48px;
}

.margin-top-small {
  margin-top: 12px;
}

.more {
  display: inline-block;
  font-weight: 700;
}
.more .fa-arrow-right {
  margin-left: 0.3em;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.more:hover .fa-arrow-right,
.more:focus .fa-arrow-right {
  -webkit-transform: translateX(0.2em);
  -ms-transform: translateX(0.2em);
  transform: translateX(0.2em);
}

.img-left,
.img-right {
  display: block;
  max-width: 40%;
  margin: 0 0 12px;
}
.img-left img,
.img-right img {
  display: block;
}
.img-left {
  float: left;
  margin-right: 12px;
}
.img-right {
  float: right;
  margin-left: 12px;
}

.note {
  opacity: 0.8;
}
pre + .note,
input + .note,
textarea + .note {
  margin-top: -12px;
}

.highlight {
  color: #ff8200;
}

.warn {
  color: #941;
}

figure {
  display: block;
  margin-bottom: 24px;
  border: 1px solid #f1f1f1;
  padding: 6px;
}

figcaption {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  opacity: 0.8;
}

.button {
  background: #6244bb;
  border-radius: 48px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.05rem;
  line-height: 24px;
  padding: 12px 36px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.15s ease-out, background-color 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, transform 0.15s ease-out;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  vertical-align: middle;
}
.button:hover,
.button:focus {
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.button:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
}
.button--large {
  display: block;
  width: auto;
  max-width: 100%;
}
.button--large + .button--large {
  margin-left: 0;
  margin-top: 12px;
}
.button--small {
  padding: 6px 24px;
  font-size: 16px;
}
.button--orange {
  background: #fdb427;
  /* Old browsers *//* FF3.6+ *//* Chrome,Safari4+ *//* Chrome10+,Safari5.1+ *//* Opera 11.10+ *//* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#fdb427), to(#e07122));
  background: linear-gradient(to bottom, #fdb427 0%, #e07122 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdb427', endColorstr='#e07122', GradientType=0);
  /* IE6-9 */
}
.button--green {
  background: #5db759;
  /* Old browsers *//* FF3.6+ *//* Chrome,Safari4+ *//* Chrome10+,Safari5.1+ *//* Opera 11.10+ *//* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#5db759), to(#1ca1b0));
  background: linear-gradient(to bottom, #5db759 0%, #1ca1b0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5db759', endColorstr='#1ca1b0', GradientType=0);
  /* IE6-9 */
}
.button--highlight {
  color: #e07122;
}
.button--highlight:hover,
.button--highlight:focus {
  color: #ff8200;
}
.button--action {
  color: #698d31;
}
.button--action:hover,
.button--action:focus {
  color: #79a338;
}
.button--warn {
  color: #941;
}
.button--warn:hover,
.button--warn:focus {
  color: #941;
}
.button--cancel {
  font-size: 16px;
  font-weight: 400;
  color: #2e3848;
}
.button--cancel:hover,
.button--cancel:focus {
  color: #6244bb;
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -12px;
  margin-right: -6px;
  margin-left: -6px;
}
.button-group > .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 12px 6px 0;
}

/*! ---------- =grids ---------- */

.grid {
  display: block;
  padding: 0;
  margin-right: -24px;
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  text-align: center;
}
.grid.align-left {
  text-align: left;
}
.grid.align-right {
  text-align: right;
}
.grid.no-margin {
  margin-bottom: -24px;
}
.grid--compact {
  margin-right: 12px;
}
.grid--compact.no-margin {
  margin-bottom: -12px;
}
.grid__unit {
  display: inline-block;
  width: 100%;
  padding: 0 24px 24px 0;
  margin: 0;
  vertical-align: top;
  letter-spacing: normal;
  text-rendering: auto;
  text-align: left;
}
.grid--compact > .grid__unit {
  padding: 0 12px 12px 0;
}
.grid__unit--1-2 {
  width: 50%;
}
.grid__unit--1-3 {
  width: 33.33%;
}
.grid__unit--2-3 {
  width: 66.66%;
}
.grid__unit--1-4 {
  width: 25%;
}
.grid__unit--3-4 {
  width: 75%;
}
.grid__unit--1-5 {
  width: 20%;
}
.grid__unit--2-5 {
  width: 40%;
}
.grid__unit--3-5 {
  width: 60%;
}
.grid__unit--4-5 {
  width: 80%;
}
.grid__unit--1-6 {
  width: 16.66%;
}
.grid__unit--5-6 {
  width: 83.3%;
}
.grid__unit--1-8 {
  width: 12.5%;
}
.grid__unit--3-8 {
  width: 37.5%;
}
.grid__unit--5-8 {
  width: 62.5%;
}
.grid__unit--7-8 {
  width: 87.5%;
}
.grid__unit--1-9 {
  width: 11.11%;
}
.grid__unit--2-9 {
  width: 22.22%;
}
.grid__unit--4-9 {
  width: 44.44%;
}
.grid__unit--5-9 {
  width: 55.55%;
}
.grid__unit--7-9 {
  width: 77.77%;
}
.grid__unit--8-9 {
  width: 88.88%;
}
.grid__unit--1-12 {
  width: 8.33%;
}
.grid__unit--5-12 {
  width: 41.65%;
}
.grid__unit--7-12 {
  width: 58.31%;
}
.grid__unit--11-12 {
  width: 91.63%;
}

@media (min-width: 470px) {
  .grid__unit--1-1-s {
    width: 100%;
  }
  .grid__unit--1-2-s {
    width: 50%;
  }
  .grid__unit--1-3-s {
    width: 33.33%;
  }
  .grid__unit--2-3-s {
    width: 66.66%;
  }
  .grid__unit--1-4-s {
    width: 25%;
  }
  .grid__unit--3-4-s {
    width: 75%;
  }
  .grid__unit--1-5-s {
    width: 20%;
  }
  .grid__unit--2-5-s {
    width: 40%;
  }
  .grid__unit--3-5-s {
    width: 60%;
  }
  .grid__unit--4-5-s {
    width: 80%;
  }
  .grid__unit--1-6-s {
    width: 16.66%;
  }
  .grid__unit--5-6-s {
    width: 83.3%;
  }
  .grid__unit--1-8-s {
    width: 12.5%;
  }
  .grid__unit--3-8-s {
    width: 37.5%;
  }
  .grid__unit--5-8-s {
    width: 62.5%;
  }
  .grid__unit--7-8-s {
    width: 87.5%;
  }
  .grid__unit--1-9-s {
    width: 11.11%;
  }
  .grid__unit--2-9-s {
    width: 22.22%;
  }
  .grid__unit--4-9-s {
    width: 44.44%;
  }
  .grid__unit--5-9-s {
    width: 55.55%;
  }
  .grid__unit--7-9-s {
    width: 77.77%;
  }
  .grid__unit--8-9-s {
    width: 88.88%;
  }
  .grid__unit--1-12-s {
    width: 8.33%;
  }
  .grid__unit--5-12-s {
    width: 41.65%;
  }
  .grid__unit--7-12-s {
    width: 58.31%;
  }
  .grid__unit--11-12-s {
    width: 91.63%;
  }
}

@media (min-width: 768px) {
  .grid {
    margin-right: -48px;
  }
  .grid.no-margin {
    margin-bottom: -48px;
  }
  .grid--compact {
    margin-right: -24px;
  }
  .grid--compact.no-margin {
    margin-bottom: -24px;
  }
  .grid__unit {
    padding: 0 48px 48px 0;
  }
  .grid--compact > .grid__unit {
    padding: 0 24px 24px 0;
  }
  .grid__unit--1-1-m {
    width: 100%;
  }
  .grid__unit--1-2-m {
    width: 50%;
  }
  .grid__unit--1-3-m {
    width: 33.33%;
  }
  .grid__unit--2-3-m {
    width: 66.66%;
  }
  .grid__unit--1-4-m {
    width: 25%;
  }
  .grid__unit--3-4-m {
    width: 75%;
  }
  .grid__unit--1-5-m {
    width: 20%;
  }
  .grid__unit--2-5-m {
    width: 40%;
  }
  .grid__unit--3-5-m {
    width: 60%;
  }
  .grid__unit--4-5-m {
    width: 80%;
  }
  .grid__unit--1-6-m {
    width: 16.66%;
  }
  .grid__unit--5-6-m {
    width: 83.3%;
  }
  .grid__unit--1-8-m {
    width: 12.5%;
  }
  .grid__unit--3-8-m {
    width: 37.5%;
  }
  .grid__unit--5-8-m {
    width: 62.5%;
  }
  .grid__unit--7-8-m {
    width: 87.5%;
  }
  .grid__unit--1-9-m {
    width: 11.11%;
  }
  .grid__unit--2-9-m {
    width: 22.22%;
  }
  .grid__unit--4-9-m {
    width: 44.44%;
  }
  .grid__unit--5-9-m {
    width: 55.55%;
  }
  .grid__unit--7-9-m {
    width: 77.77%;
  }
  .grid__unit--8-9-m {
    width: 88.88%;
  }
  .grid__unit--1-12-m {
    width: 8.33%;
  }
  .grid__unit--5-12-m {
    width: 41.65%;
  }
  .grid__unit--7-12-m {
    width: 58.31%;
  }
  .grid__unit--11-12-m {
    width: 91.63%;
  }
}

@media (min-width: 960px) {
  .grid__unit--1-1-l {
    width: 100%;
  }
  .grid__unit--1-2-l {
    width: 50%;
  }
  .grid__unit--1-3-l {
    width: 33.33%;
  }
  .grid__unit--2-3-l {
    width: 66.66%;
  }
  .grid__unit--1-4-l {
    width: 25%;
  }
  .grid__unit--3-4-l {
    width: 75%;
  }
  .grid__unit--1-5-l {
    width: 20%;
  }
  .grid__unit--2-5-l {
    width: 40%;
  }
  .grid__unit--3-5-l {
    width: 60%;
  }
  .grid__unit--4-5-l {
    width: 80%;
  }
  .grid__unit--1-6-l {
    width: 16.66%;
  }
  .grid__unit--5-6-l {
    width: 83.3%;
  }
  .grid__unit--1-8-l {
    width: 12.5%;
  }
  .grid__unit--3-8-l {
    width: 37.5%;
  }
  .grid__unit--5-8-l {
    width: 62.5%;
  }
  .grid__unit--7-8-l {
    width: 87.5%;
  }
  .grid__unit--1-9-l {
    width: 11.11%;
  }
  .grid__unit--2-9-l {
    width: 22.22%;
  }
  .grid__unit--4-9-l {
    width: 44.44%;
  }
  .grid__unit--5-9-l {
    width: 55.55%;
  }
  .grid__unit--7-9-l {
    width: 77.77%;
  }
  .grid__unit--8-9-l {
    width: 88.88%;
  }
  .grid__unit--1-12-l {
    width: 8.33%;
  }
  .grid__unit--5-12-l {
    width: 41.65%;
  }
  .grid__unit--7-12-l {
    width: 58.31%;
  }
  .grid__unit--11-12-l {
    width: 91.63%;
  }
}


/*! ---------- =forms ---------- */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 9px 12px;
  margin: 0;
  border: 1px solid #e4e4e4;
  color: #2e3848;
  color: rgba(46, 56, 72, 0.8);
  font: 16px/24px "Open Sans", Helvetica, Arial, sans-serif;
  -webkit-transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
  transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out, opacity 0.15s ease-out;
}
input[type="text"]:not(:last-child),
input[type="email"]:not(:last-child),
input[type="password"]:not(:last-child),
input[type="number"]:not(:last-child),
input[type="tel"]:not(:last-child),
textarea:not(:last-child),
select:not(:last-child) {
  margin-bottom: 24px;
}
input[type="text"]:required,
input[type="email"]:required,
input[type="password"]:required,
input[type="number"]:required,
input[type="tel"]:required,
textarea:required,
select:required {
  border-color: #d0cbd8;
}
input[type="text"].input-validation-error,
input[type="email"].input-validation-error,
input[type="password"].input-validation-error,
input[type="number"].input-validation-error,
input[type="tel"].input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
  border-color: #941;
  color: #941;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #6244bb;
  color: #2e3848;
}
textarea {
  padding: 12px;
  min-height: 96px;
}
textarea.textarea-large {
  min-height: 240px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  position: relative;
  top: -0.1em;
}
label + input[type="radio"],
label + input[type="checkbox"] {
  margin-left: 24px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #163a50;
  opacity: 0.9;
  -webkit-transition: color 0.15s ease-out, opacity 0.15s ease-out;
  transition: color 0.15s ease-out, opacity 0.15s ease-out;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
}

label.required {
  color: #4a3374;
}
label.required::after {
  content: '*';
  font-weight: 400;
}
label.input-validation-error {
  color: #941;
}
label.is-selected {
  color: #e07122;
}
label.is-focused {
  color: #6244bb;
  opacity: 1;
}

.side-label {
  margin: 0;
}
.side-label:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 470px) {
  .side-label {
    padding-left: 168px;
  }
  .side-label label {
    width: 168px;
    float: left;
    margin-left: -168px;
    padding: 6px 1em 0 0;
  }
}


.field-validation-error {
  display: block;
  margin-bottom: 24px;
  font-size: 16px;
  color: #941;
}
input + .field-validation-error,
select + .field-validation-error,
textarea + .field-validation-error {
  margin-top: -18px;
}


/*! ---------- =code and =syntax highlighting ---------- */

pre,
code {
  font-family: "Inconsolata", monospace;
  font-size: 16px;
  line-height: 24px;
}
pre {
  display: block;
  padding: 24px 12px;
  border: 1px solid #e7e7e7;
  color: #222;
  background: white;
  overflow-y: auto;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
pre:not(:last-child) {
  margin-bottom: 24px;
}
pre::before {
  content: attr(rel);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #bfb4de;
  position: absolute;
  top: 2px;
  right: 12px;
}
p > code,
li > code {
  background: #fbfbfb;
  font-style: normal;
}
p > code::before,
p > code::after,
li > code::before,
li > code::after {
  content: '';
  display: inline-block;
  width: 0.5em;
}

/*! syntax highlighting through prism: http://prismjs.com/index.html
*  the following is based off the default theme */

pre[class*="language-"] {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: #999;
}

.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}

.token.function {
  color: #dd4a68;
}

.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}


/*! ---------- =body ---------- */

body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

.page-bounds {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}


/*! ---------- =header common ---------- */

.page-header {
  padding: 0 24px;
  position: relative;
  z-index: 100;
}
.page-header .page-bounds {
  position: relative;
}
.page-header__toggle {
  display: none;
}

@media (max-width: 767px) {
  .page-header {
    width: 100%;
  }
  .page-header__toggle {
    position: absolute;
    right: -24px;
    top: 0;
    padding: 24px 24px;
    color: #222;
  }
  .page-header__toggle.mobile-menu-is-open {
    color: #ff8200;
  }
  .js .page-header__toggle {
    display: block;
  }
  .page-header__toggle .toggle-indicator {
    margin-left: 6px;
  }
  .page-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    clear: both;
    margin-left: -24px;
    margin-right: -24px;
  }
}

@media (min-width: 768px) {
  .page-header {
    padding: 12px 48px 0;
  }
}

/*! slide-down mobile menu */


@-webkit-keyframes open-mobile-menu {
  0% {
    visibility: visible;
    max-height: 0;
  }

  99% {
    max-height: 100vh;
  }

  100% {
    visibility: visible;
    max-height: none;
  }
}


@keyframes open-mobile-menu {
  0% {
    visibility: visible;
    max-height: 0;
  }

  99% {
    max-height: 100vh;
  }

  100% {
    visibility: visible;
    max-height: none;
  }
}


@-webkit-keyframes close-mobile-menu {
  0% {
    visibility: visible;
    max-height: 100vh;
  }

  99% {
    max-height: 0;
  }

  100% {
    max-height: 0;
    visibility: hidden;
  }
}


@keyframes close-mobile-menu {
  0% {
    visibility: visible;
    max-height: 100vh;
  }

  99% {
    max-height: 0;
  }

  100% {
    max-height: 0;
    visibility: hidden;
  }
}


@media (max-width: 767px) {
  .page-header__content {
    overflow: hidden;
    visibility: hidden;
    max-height: 0;
  }
  .page-header__content.mobile-menu-is-open {
    -webkit-animation: open-mobile-menu 0.2s ease-in both;
    animation: open-mobile-menu 0.2s ease-in both;
  }
  .page-header__content.mobile-menu-was-open {
    -webkit-animation: close-mobile-menu 0.2s ease both;
    animation: close-mobile-menu 0.2s ease both;
  }
}


/*! ---------- =header components ---------- */

.header-logo {
  display: table;
  margin: -60px auto 0;
}
.header-logo a,
.header-logo img {
  display: block;
  max-width: 100%;
  margin: 0;
}
.header-logo__container {
  background: #6244bb;
  /* Old browsers *//* FF3.6+ *//* Chrome,Safari4+ *//* Chrome10+,Safari5.1+ *//* Opera 11.10+ *//* IE10+ */
  background: -webkit-gradient(linear, left top, right top, from(#6244bb), to(#3871ad));
  background: linear-gradient(to right, #6244bb 0%, #3871ad 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6244BB', endColorstr='#3871ad', GradientType=0);
  /* IE6-9 */
  border-radius: 100%;
}
.header-logo__container-inner {
  background: #fff;
  border-radius: 100%;
}

@media (max-width: 767px) {
  .header-logo {
    margin: -36px auto 0;
  }
  .header-logo a {
    padding: 12px 0;
  }
  .header-logo img {
    max-height: 60px;
  }
  .header-logo__container {
    padding: 6px;
  }
  .header-logo__container-inner {
    padding: 48px 16px 16px;
  }
}

@media (min-width: 768px) {
  .header-logo img {
    max-height: 84px;
  }
  .header-logo__container {
    padding: 6.85714px;
  }
  .header-logo__container-inner {
    padding: 60px 16px 36px;
  }
}

@media (min-width: 960px) {
  .header-logo img {
    height: 96px;
    max-height: 96px;
  }
  .header-logo__container {
    padding: 9.6px;
  }
  .header-logo__container-inner {
    padding: 79.2px 24px;
  }
}

@media (min-width: 1386px) {
  .header-logo {
    margin-top: -110px;
  }
  .header-logo img {
    height: 120px;
    max-height: 120px;
  }
  .header-logo__container-inner {
    padding: 120px 44px 80px;
  }
}

/*! ---------- =footer ---------- */

.page-footer {
  border-top: 2px solid #eee;
  padding: 0 24px;
  font-size: 16px;
}
.page-footer .page-bounds {
  padding: 24px 0;
  position: relative;
}
.page-footer .fas,
.page-footer .fab {
  background: #6244bb;
  /* Old browsers *//* FF3.6+ *//* Chrome,Safari4+ *//* Chrome10+,Safari5.1+ *//* Opera 11.10+ *//* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#6244bb), to(#4a3374));
  background: linear-gradient(to bottom, #6244bb 0%, #4a3374 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6244BB', endColorstr='#4a3374', GradientType=0);
  /* IE6-9 */
  border-radius: 100%;
  color: #fff;
  font-size: 12px;
  margin-right: 6px;
  padding: 12px;
  vertical-align: middle;
}
.page-footer .fab {
  margin-right: 0;
}

.footer-contact {
  font-weight: 600;
  margin-bottom: 24px;
  padding: 0;
}
.footer-contact p {
  margin-bottom: 6px;
}

.footer-sites {
  margin: 0;
  padding: 0;
}
.footer-sites a {
  display: inline-block;
  margin-right: 24px;
}
.footer-sites a:hover .fas {
  color: #6244bb;
}
.footer-sites img {
  display: inline-block;
  height: 60px;
  max-height: 60px;
}
.footer-sites .fas {
  background: rgba(255, 255, 255, 0);
  color: #ff8200;
  font-size: 12px;
  position: relative;
  top: -24px;
}

.footer-copyright {
  border-top: 2px solid #eee;
  font-size: 15px;
  margin-left: -24px;
  padding-top: 24px;
  position: relative;
  width: 100vw;
}
.footer-copyright .footer-social {
  margin-bottom: 12px;
  margin-top: 12px;
  word-spacing: 0.5em;
}
.footer-copyright .footer-social__icon {
  font-size: 30px;
}
.footer-copyright .footer-social .fa-facebook-f {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .page-footer {
    text-align: center;
  }

  .footer-sites a {
    display: block;
  }

  .footer-copyright .page-bounds {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .page-footer {
    padding: 0 48px;
  }
  .page-footer .page-bounds {
    padding: 48px 0;
  }

  .footer-contact {
    clear: left;
  }
  .footer-contact--left {
    float: left;
    width: 50%;
  }

  .footer-copyright {
    margin-left: -48px;
    padding: 24px;
  }
  .footer-copyright .page-bounds {
    padding: 0 24px;
  }
  .footer-copyright__text {
    float: left;
  }
  .footer-copyright .footer-social {
    float: right;
    margin-bottom: 0;
    margin-top: 0;
  }
}


@media (min-width: 960px) {
  .footer-sites {
    text-align: right;
  }
}


@media (min-width: 1386px) {
  .footer-copyright {
    margin-left: calc((100vw - 1290px) / -2);
    margin-right: calc((100vw - 1290px) / -2);
  }
  .footer-copyright .page-bounds {
    padding: 0;
  }
}


/* ---------- =home ---------- */

.home-content {
  position: relative;
  z-index: 1;
}

.landing-feature {
  margin-right: 0;
}
.landing-feature img {
  margin-bottom: 24px;
}
.landing-feature__web,
.landing-feature__mobile {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  text-align: center;
}
.landing-feature__web {
  border-right: 2px solid #eee;
}
.landing-feature__web h2 {
  color: #ff8200;
}
.landing-feature__mobile {
  padding-left: 24px;
}
.landing-feature__mobile h2 {
  color: #79a338;
}

@media (max-width: 374px) {
  .landing-feature__web,
  .landing-feature__mobile {
    width: 100%;
  }
  .landing-feature__web {
    border-right: 0;
  }
  .landing-feature__web img {
    height: auto;
    /*max-width: 110px !important;
    width: 110px !important;*/
  }
  .landing-feature__mobile img {
    height: auto;
    /*max-width: 130px !important;
    width: 130px !important;*/
  }
}
@media (max-width: 767px) {
  .landing-feature__web,
  .landing-feature__mobile {
    padding: 24px 24px 160px;
  }
  .landing-feature__web img,
  .landing-feature__mobile img {
    height: 50px;
    max-height: 50px;
  }
  .landing-feature .content-container__description {
    display: none;
  }
  .landing-feature .content-container .button {
    border-radius: 100%;
    padding: 24px 22px;
  }
  .landing-feature .content-container .button span {
    display: none;
  }
  .landing-feature .content-container .button img {
    margin-bottom: 0;
    height: 20px !important;
    max-height: 20px !important;
  }
}

@media (min-width: 768px) {
  .landing-feature__web,
  .landing-feature__mobile {
    padding-bottom: 230px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .landing-feature__web img,
  .landing-feature__mobile img {
    height: 84px;
    max-height: 84px;
  }
  .landing-feature__web .content-container,
  .landing-feature__mobile .content-container {
    padding: 48px 48px 96px;
  }
  .landing-feature__web .content-container .button img,
  .landing-feature__mobile .content-container .button img {
    display: none;
  }
}

@media (min-width: 960px) {
  .landing-feature {
    margin-top: -90px;
    position: relative;
  }
}

@media (min-width: 1290px) {
  .landing-feature {
    margin-left: calc((100vw - 1290px) / -2);
    margin-right: calc((100vw - 1290px) / -2);
    width: 100vw;
  }
}

@media (min-width: 1386px) {
  .landing-feature {
    margin-top: -160px;
  }
  .landing-feature__web,
  .landing-feature__mobile {
    padding-bottom: 330px;
  }
  .landing-feature__web img,
  .landing-feature__mobile img {
    height: 120px;
    max-height: 120px;
  }
  .landing-feature__web .content-container,
  .landing-feature__mobile .content-container {
    padding: 15% 18% 20%;
    padding: 6vw 6vw 10vw;
  }
}

@media (min-width: 2000px) {
  .landing-feature__web,
  .landing-feature__mobile {
    padding-bottom: 550px;
    padding-bottom: 40vh;
  }
  .landing-feature__web .content-container, 
  .landing-feature__mobile .content-container {
    padding: 15% 25% 20%;
    padding: 6vw 12vw 8vw;
  }
}


/*! ---------- =print ---------- */

@media print {
  .page-header__toggle,
  .header-search,
  .header-utility,
  .header-nav,
  .in-this-section,
  .footer-logo,
  .footer-social,
  .footer-utility,
  .home-feature,
  .breadcrumbs,
  .share-buttons,
  .truncator-expand {
    display: none !important;
  }

  body {
    background: #fff;
  }


  @page {
    margin: 0.5in;
  }


  @page :first {
    margin-top: 1in;
  }


  @page :last {
    margin-bottom: 1in;
  }


  .page-bounds {
    max-width: 100%;
  }

  .page-header,
  .content,
  .page-footer {
    padding-left: 0;
    padding-right: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  blockquote,
  img,
  table,
  pre {
    page-break-inside: avoid;
  }

  ul,
  ol,
  dl {
    page-break-before: avoid;
  }

  .header-logo {
    float: none;
    max-width: 150px;
    margin: 0 auto;
    padding: 0;
  }

  .page-footer {
    border-top: 1px solid #f1f1f1;
  }

  .footer-contact {
    text-align: center;
  }

  .interior-layout__title,
  .interior-layout__nav,
  .interior-layout__main,
  .interior-layout__aside {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .interior-layout__aside {
    border-top: 1px solid #eee;
    padding-top: 48px;
  }

  .page-title {
    text-align: center;
  }

  .content a[href]:not([href^="#"]) {
    word-wrap: break-word;
    box-shadow: 0 2px 0 #6244bb;
    color: #2e3848;
    font-weight: 700;
  }
  .content a[href]:not([href^="#"])::after {
    content: " (" attr(href) ") ";
    font-size: 0.85em;
    color: #425067;
  }

  .tabs__pane {
    display: block !important;
  }

  .accordion__content {
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  [data-truncate-to] {
    max-height: none !important;
    overflow: visible !important;
  }

  [data-truncate-to*="item"] > * {
    display: initial !important;
  }
}



/* ---------- =sitefinity ---------- */

.sfContentBlock {
  margin-bottom: 24px;
}
.sfContentBlock:last-child {
  margin-bottom: 0;
}

/* make page builder layout more friendly to edit */
.sfPageEditor body {
  border-top: none;
}
.sfPageEditor .page-header {
  background: #fff !important;
}
.sfPageEditor .page-header,
.sfPageEditor .header-logo,
.sfPageEditor .page-header__content,
.sfPageEditor .page-footer,
.sfPageEditor .footer-contact,
.sfPageEditor .footer-contact--left,
.sfPageEditor .footer-social,
.sfPageEditor .footer-copyright,
.sfPageEditor .footer-copyright__text {
  bottom: 0 !important;
  display: block !important;
  float: none !important;
  height: auto !important;
  left: 0 !important;
  margin: 0 0 20px !important;
  max-width: 100% !important;
  padding: 0 !important;
  position: relative !important;
  right: 0 !important;
  transform: none !important;
  top: 0 !important;
  width: 100% !important;
}
.sfPageEditor .content {
  padding-top: 48px;
}

/* space form builder fields */
.sf-fieldWrp > input,
.sf-fieldWrp > select,
.sf-fieldWrp > textarea,
.sf-fieldWrp > div > input,
.sf-fieldWrp > div > select,
.sf-fieldWrp > div > textarea {
  margin-bottom: 20px !important;
}
.sf_colsIn > .sf-fieldWrp > input:last-child,
.sf_colsIn > .sf-fieldWrp > select:last-child,
.sf_colsIn > .sf-fieldWrp > textarea:last-child {
  margin-bottom: 0 !important;
}

.sfInlineEditingPageMenu .sfInlineEditingToggleLnk {
  z-index: 1001 !important;
}

/* user-friendly tabs layout modules */
.sfPageEditor [data-edit-label]::before {
  content: '[' attr(data-edit-label) ']';
  font-size: 14px;
  opacity: 0.3;
}
.tabs.sf_cols {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tabs__tab > .sf_colsIn, .tabs__pane > .sf_colsIn {
  margin: 0 !important;
}
.sfPageEditor .tabs--standard .tabs__tab {
  width: 100% !important;
  float: none !important;
}
.sfPageEditor .tabs.sf_cols .tabs__pane {
  display: block !important;
}
