/*****************************************
* Reset (Remove Default Browser Styles)
******************************************/

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

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;
}

strong {
  font-weight:bold;
}

/* List Styles */
ol, ul {
  list-style: none;
}

.list {
  margin-bottom: 1rem;
  padding-left: 1em;
}

.bulleted ul,
ul.bulleted {
  margin: 0 0 1rem .5rem;
}

.bulleted li {
  position: relative;
  padding-left: 1rem;
  margin: 0 0 .5rem 2rem;
}

.numbered {
  list-style: decimal;
}

blockquote, q {
  quotes: none;
}

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

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

/*****************************************
* Boilerplate
******************************************/

body {
  height: 100%;
  font: normal normal 16px/1.5 "Open Sans", sans-serif;
  color: #000;
}

a[href],
input[type="submit"],
button {
  cursor: pointer;
}

@media screen and (min-width: 1008px) {
  a[href^=tel] {
    cursor: default;
    pointer-events: none;
  }

  a[href^=tel]:hover {
    color: inherit;
  }
}

/****************************************
* Form Elements
****************************************/

/* input,
textarea,
select {
  padding: 0.5em;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  font: inherit;
  margin-bottom: 1rem;
}

textarea {
  overflow: auto;
  resize: vertical;
  min-height: 65px;
}

select {
  cursor: pointer;
}

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

input:focus,
textarea:focus,
select:focus,
[type="file"]:focus + label {
  outline: 1px solid #33C3F0;
}

[type="radio"],
[type="checkbox"] {
  width: auto;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

[type="radio"] + label,
[type="checkbox"] + label {
  position: relative;
  padding-left: 1em;
  margin-right: 0.25em;
}

[type="radio"] + label:before,
[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(1em - 2px);
  width: calc(1em - 2px);
  background: #FFF;
  border: 1px solid #AAA;
  -webkit-box-shadow: inset 0px 0px 0px 1.5px #FFF;
  box-shadow: inset 0px 0px 0px 1.5px #FFF;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

[type="checkbox"] + label:before {
  border-radius: 3px;
}

[type="radio"]:focus + label:before,
[type="checkbox"]:focus + label:before {
  outline: 1px solid #33C3F0;
}

[type="radio"]:checked + label:before,
[type="checkbox"]:checked + label:before {
  background: #3CF;
}

[type="file"] {
  width: 0.1px;
	height: 0.1px;
	opacity: 0;
  position: absolute;
	z-index: -1;
}

[type="file"] + label {
  position: relative;
  padding: 10px 20px 10px 45px;
  border-radius: 3px;
  background-color: #0e698b;
  color: #ffffff;
  cursor: pointer;
}

[type="file"]:hover,
[type="file"]:focus + label,
[type="file"] + label:hover {
  background-color: #0b546f;
}

label {
  display: inline-block;
  margin-bottom: 4px;
}

label.invalid {
  color: #DD0000;
}

input.invalid,
textarea.invalid,
select.invalid {
  outline: 1px solid #DD0000;
} */

/****************************************
* Misc
****************************************/

img {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  border-top: 2px solid #DDD;
  width: 100%;
  margin: 1rem 0;
}

/* On pages with little content, ensures that footer sticks to the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

button,
.button {
  display: block;
  padding: 1em 2em;
  border: none;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
  text-align: center;
  font-size: 100%;
  word-break: normal;
}

a {
  text-decoration: none;
}

@media(min-width: 1008px) {
  .mobile {
    display: none !important;
  }
}

/****************************************
*
* Layout
*
****************************************/

/*****************************************
* Row
******************************************/

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*****************************************
* Column
******************************************/

.col {
  width: 100%;
  min-height: 1px;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5%;
  flex: 0 0 5%;
  max-width: 5%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
}

.col-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
}

.col-20 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.col-25 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-30 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}

.col-33 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.col-35 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
}

.col-40 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}

.col-45 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
}

.col-50 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-55 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
}

.col-60 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}

.col-65 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
}

.col-66 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
}

.col-70 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
}

.col-75 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-80 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
}

.col-85 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
}

.col-90 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
}

.col-95 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 95%;
  flex: 0 0 95%;
  max-width: 95%;
}

.col-100 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

[class=".col-*"].order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

[class=".col-*"].order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

[class=".col-*"].order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

[class=".col-*"].order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

[class=".col-*"].order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

[class=".col-*"].order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

[class=".col-*"].order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

[class=".col-*"].order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

[class=".col-*"].order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

[class=".col-*"].order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

[class=".col-*"].order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

@media (min-width: 576px) {
  .col-5--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5%;
  flex: 0 0 5%;
  max-width: 5%;
  }
  .col-10--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
  }
  .col-15--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
  }
  .col-20--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  }
  .col-25--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  }
  .col-30--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
  }
  .col-33--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  }
  .col-35--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  }
  .col-40--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  }
  .col-45--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  }
  .col-50--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  }
  .col-55--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
  }
  .col-60--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  }
  .col-65--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  }
  .col-66--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
  }
  .col-70--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  }
  .col-75--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  }
  .col-80--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
  }
  .col-85--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
  }
  .col-90--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
  }
  .col-95--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 95%;
  flex: 0 0 95%;
  max-width: 95%;
  }

  .col-100--phone {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  }
  [class=".col-*"].order-first--phone {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  }
  [class=".col-*"].order-last--phone {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
  }
  [class=".col-*"].order-0--phone {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  }
  [class=".col-*"].order-1--phone {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  [class=".col-*"].order-2--phone {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  }
  [class=".col-*"].order-3--phone {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  }
  [class=".col-*"].order-4--phone {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  }
  [class=".col-*"].order-5--phone {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  }
  [class=".col-*"].order-6--phone {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  }
  [class=".col-*"].order-7--phone {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
  }
  [class=".col-*"].order-8--phone {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
  }
}

@media (min-width: 768px) {
  .col-5--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5%;
  flex: 0 0 5%;
  max-width: 5%;
  }
  .col-10--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
  }
  .col-15--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
  }
  .col-20--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  }
  .col-25--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  }
  .col-30--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
  }
  .col-33--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  }
  .col-35--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  }
  .col-40--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  }
  .col-45--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  }
  .col-50--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  }
  .col-55--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
  }
  .col-60--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  }
  .col-65--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  }
  .col-66--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
  }
  .col-70--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  }
  .col-75--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  }
  .col-80--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
  }
  .col-85--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
  }
  .col-90--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
  }
  .col-95--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 95%;
  flex: 0 0 95%;
  max-width: 95%;
  }
  .col-100--tablet {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  }
  [class=".col-*"].order-first--tablet {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  }
  [class=".col-*"].order-last--tablet {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
  }
  [class=".col-*"].order-0--tablet {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  }
  [class=".col-*"].order-1--tablet {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  [class=".col-*"].order-2--tablet {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  }
  [class=".col-*"].order-3--tablet {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  }
  [class=".col-*"].order-4--tablet {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  }
  [class=".col-*"].order-5--tablet {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  }
  [class=".col-*"].order-6--tablet {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  }
  [class=".col-*"].order-7--tablet {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
  }
  [class=".col-*"].order-8--tablet {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
  }
}

@media (min-width: 1140px) {
  .col-5--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5%;
  flex: 0 0 5%;
  max-width: 5%;
  }
  .col-10--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
  }
  .col-15--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
  }
  .col-20--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  }
  .col-25--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  }
  .col-30--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
  }
  .col-33--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  }
  .col-35--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
  }
  .col-40--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  }
  .col-45--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  }
  .col-50--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  }
  .col-55--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  max-width: 55%;
  }
  .col-60--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  }
  .col-65--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  }
  .col-66--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66%;
  flex: 0 0 66.66%;
  max-width: 66.66%;
  }
  .col-70--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  }
  .col-75--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
  }
  .col-80--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
  }
  .col-85--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
  }
  .col-90--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
  }
  .col-95--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 95%;
  flex: 0 0 95%;
  max-width: 95%;
  }
  .col-100--desktop {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  }
  [class=".col-*"].order-first--desktop {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  }
  [class=".col-*"].order-last--desktop {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
  }
  [class=".col-*"].order-0--desktop {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  }
  [class=".col-*"].order-1--desktop {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  }
  [class=".col-*"].order-2--desktop {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  }
  [class=".col-*"].order-3--desktop {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  }
  [class=".col-*"].order-4--desktop {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  }
  [class=".col-*"].order-5--desktop {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  }
  [class=".col-*"].order-6--desktop {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  }
  [class=".col-*"].order-7--desktop {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
  }
  [class=".col-*"].order-8--desktop {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
  }
}

/****************************************
* Grid
****************************************/

.grid {
  padding: 2rem;
}

.grid > div {
	padding: 1rem .5rem;
}

.grid.padding-top-0 {
  padding-top: 0;
}

.grid.padding-bottom-0 {
	padding-bottom: 0;
}

@media (min-width: 768px) {
  .grid {
    padding:2rem 1rem;
  }

  .grid > div {
    padding:0 1rem;
  }
}

@media (min-width: 1140px) {
  .grid {
    padding:4rem;
  }

  .grid > div {
    padding:0 2rem;
  }
}

@media (min-width: 1400px) {
  .grid {
    padding:6rem;
  }

  .grid > div {
    padding:0 3rem;
  }
}


/****************************************
* Visibility
****************************************/

@media (max-width: 575.98px) {
  .visible--phone {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .visible--tablet {
    display: none;
  }
}

@media (max-width: 1139.98px) {
  .visible--desktop {
    display: none;
  }
}

.hidden {
  display: none;
}

@media (min-width: 576px) {
  .hidden--phone {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden--tablet {
    display: none;
  }
}

@media (min-width: 1140px) {
  .hidden--desktop {
    display: none;
  }
}


/****************************************
* Centering
****************************************/

.y-center-elements {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.y-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.x-left {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.x-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.x-right {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

/****************************************
* iframes and videos
****************************************/

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* padding-bottom will need to be overridden on occasion. Should be iframe height / iframe width. */
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.video-container + .video-container {
  margin-top: 1rem;
}

/****************************************
* Form Validation
****************************************/

.error-messages .message,
.message {
  display: block;
  color: #d80000;
  margin-bottom: 4px;
  width: 100%;
  font-size: 14px;
}

/****************************************
* Floating label
****************************************/

input.floating-label,
label.floating-label,
textarea.floating-label {
  display: block;
  margin: 25px 0 0 0;
  padding: 5px;
  border: none;
  font-size: 16px;
}

input.floating-label:not([type="submit"]),
textarea.floating-label {
  background: rgba(0, 0, 0, 0);
  border-radius: 2px;
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
}

textarea.floating-label:focus,
input.floating-label:focus {
  outline: 0;
}

/* Underline and Placeholder */
input.floating-label + label,
textarea.floating-label + label {
  display: block;
  position: relative;
  margin: 0;
  border-top: 1px solid #8f8f8f;
  padding: 0;
  width: 100%;
  height: 0px;
  white-space: nowrap;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

input.floating-label:focus + label > span,
input.floating-label:valid + label > span {
  top: -40px;
  font-size: 12px;
  color: #333333;
}

textarea.floating-label:focus + label > span,
textarea.floating-label:valid + label > span {
  top: -85px;
  font-size: 12px;
  color: #333333;
}

input.floating-label:invalid,
textarea.floating-label:invalid {
  box-shadow: none;
}

input.floating-label + label > span,
textarea.floating-label + label > span {
  position: absolute;
  margin: 0;
  top: -25px;
  left: 0px;
  padding-left: 5px;
  font-size: 14px;
  color: #b7b7b7;
  -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  z-index: -1;
}

/****************************************
* Misc.
****************************************/

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.underline {
  text-decoration: underline;
}

.hide {
   position: absolute !important;
   top: -9999px !important;
   left: -9999px !important;
}

.honey {
  display: none;
}

.padded {
  padding: 1.5rem;
}

.padded-top {
 padding-top: 1.5rem;
}

.padded-bottom {
  padding-bottom: 1.5rem;
}

@media(max-width: 1007px) {
  .desktop {
    display: none !important;
  }
}