/*!
Mustard UI v0.0.5
MIT License
https://mustard-ui.com
*/
* {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f5e8e6;
}

main {
  flex: 1;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear-fix::before, .clear-fix::after {
  content: "";
  display: table;
}
.clear-fix::after {
  clear: both;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
}

.container-small {
  max-width: 728px;
}

.container-large {
  max-width: 1440px;
}

.display-flex {
  display: flex;
  justify-content: space-around;
}

.display-none {
  display: none;
}

.display-sm-up {
  display: none;
}
@media (min-width: 425px) {
  .display-sm-up {
    display: initial;
  }
}

.display-md-up {
  display: none;
}
@media (min-width: 768px) {
  .display-md-up {
    display: initial;
  }
}

.display-lg-up {
  display: none;
}
@media (min-width: 1024px) {
  .display-lg-up {
    display: initial;
  }
}

.display-xlg-up {
  display: none;
}
@media (min-width: 1440px) {
  .display-xlg-up {
    display: initial;
  }
}

.display-sm-down {
  display: none;
}
@media (max-width: 424px) {
  .display-sm-down {
    display: initial;
  }
}

.display-md-down {
  display: none;
}
@media (max-width: 767px) {
  .display-md-down {
    display: initial;
  }
}

.display-lg-down {
  display: none;
}
@media (max-width: 1023px) {
  .display-lg-down {
    display: initial;
  }
}

.display-xlg-down {
  display: none;
}
@media (max-width: 1439px) {
  .display-xlg-down {
    display: initial;
  }
}

.display-sm-to-md {
  display: none;
}
@media (min-width: 425px) and (max-width: 767px) {
  .display-sm-to-md {
    display: initial;
  }
}

.display-sm-to-lg {
  display: none;
}
@media (min-width: 425px) and (max-width: 1023px) {
  .display-sm-to-lg {
    display: initial;
  }
}

.display-sm-to-xlg {
  display: none;
}
@media (min-width: 425px) and (max-width: 1439px) {
  .display-sm-to-xlg {
    display: initial;
  }
}

.display-md-to-lg {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .display-md-to-lg {
    display: initial;
  }
}

.display-md-to-xlg {
  display: none;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .display-md-to-xlg {
    display: initial;
  }
}

.display-lg-to-xlg {
  display: none;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .display-lg-to-xlg {
    display: initial;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}
.row.row-reverse {
  flex-direction: row-reverse;
}
.row .col {
  flex-grow: 1;
  flex-basis: 100%;
  max-width: 100%;
  padding: 5px 5px;
}
.row .col.col-reverse {
  flex-direction: column-reverse;
}
.row .col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}
.row .col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}
.row .col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}
.row .col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.row .col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}
.row .col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.row .col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}
.row .col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.row .col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}
.row .col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}
.row .col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}
.row .col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}
.row .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.row .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.row .col-xs-offset-3 {
  margin-left: 25%;
}
.row .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.row .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.row .col-xs-offset-6 {
  margin-left: 50%;
}
.row .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.row .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.row .col-xs-offset-9 {
  margin-left: 75%;
}
.row .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.row .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.row .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 425px) {
  .row .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-sm-offset-3 {
    margin-left: 25%;
  }
  .row .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-sm-offset-6 {
    margin-left: 50%;
  }
  .row .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-sm-offset-9 {
    margin-left: 75%;
  }
  .row .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .row .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-md-offset-3 {
    margin-left: 25%;
  }
  .row .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-md-offset-6 {
    margin-left: 50%;
  }
  .row .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-md-offset-9 {
    margin-left: 75%;
  }
  .row .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1024px) {
  .row .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-lg-offset-3 {
    margin-left: 25%;
  }
  .row .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-lg-offset-6 {
    margin-left: 50%;
  }
  .row .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-lg-offset-9 {
    margin-left: 75%;
  }
  .row .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1440px) {
  .row .col-xlg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-xlg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-xlg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-xlg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-xlg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-xlg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-xlg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-xlg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-xlg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-xlg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-xlg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-xlg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-xlg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-xlg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-xlg-offset-3 {
    margin-left: 25%;
  }
  .row .col-xlg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-xlg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-xlg-offset-6 {
    margin-left: 50%;
  }
  .row .col-xlg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-xlg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-xlg-offset-9 {
    margin-left: 75%;
  }
  .row .col-xlg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-xlg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-xlg-offset-12 {
    margin-left: 100%;
  }
}

.section,
section {
  padding: 30px;
}
.section :last-child,
section :last-child {
  margin-bottom: 0;
}

.section-primary {
  background: #ffca28;
}

.section-secondary {
  background: #DAD4AA;
}

.section-tertiary {
  background: #ffffff;
}

blockquote {
  display: block;
  margin: 15px 15px 30px;
  padding: 15px;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #668F86;
  border-left: 4px solid #514B23;
  background: #F5E8E6;
}
blockquote :last-child {
  margin-bottom: 0;
}

.form-control {
  position: relative;
  margin-bottom: 10px;
}

.form-control-group {
  display: flex;
  justify-content: flex-start;
}
.form-control-group .form-control {
  flex: 1;
  padding-right: 15px;
}
.form-control-group .form-control:last-of-type {
  padding-right: 0;
}
.form-control-group .form-control.grow-1x {
  flex-grow: 1;
}
.form-control-group .form-control.grow-2x {
  flex-grow: 2;
}
.form-control-group .form-control.grow-3x {
  flex-grow: 3;
}

.validation-error {
  margin-top: 2px;
  font-size: 12px;
  color: #f44336;
}

label {
  font-size: 14px;
  font-weight: 400;
}

input[type=file],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=range],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
input[type=text],
input[type=password],
select {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: inherit;
  background: #EFF1F4;
  border-radius: 5px;
  border: 1px solid #668F86;
}

input::placeholder, select::placeholder, fieldset::placeholder {
  color: #9e9e9e;
}
input:focus, select:focus, fieldset:focus {
  outline: none;
  border-color: #514B23;
}
input.invalid, input:invalid, select.invalid, select:invalid, fieldset.invalid, fieldset:invalid {
  border-color: #f44336;
}

fieldset {
  margin: 15px 0;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #668F86;
  border-radius: 5px;
}
fieldset legend {
  padding: 0 5px;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 10px;
}

input[type=range] {
  appearance: range;
}

input[type=color] {
  display: initial;
  padding: 0 !important;
  height: 42px;
}

select {
  background-color: #EFF1F4;
  background-image: linear-gradient(45deg, transparent 50%, #668F86 50%), linear-gradient(135deg, #668F86 50%, transparent 50%), linear-gradient(to right, #668F86, #668F86);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  padding-right: 30px;
}
select:hover {
  cursor: pointer;
}
select:disabled {
  opacity: 0.5;
}
select:focus {
  background-image: linear-gradient(45deg, transparent 50%, #514B23 50%), linear-gradient(135deg, #514B23 50%, transparent 50%), linear-gradient(to right, #514B23, #514B23);
}

textarea {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  min-height: 100px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #000000;
  background-color: #EFF1F4;
  border: 1px solid #668F86;
  border-radius: 5px;
}
textarea::placeholder {
  color: #9e9e9e;
}
textarea:focus {
  outline: none;
  border-color: #514B23;
}
textarea.invalid, textarea:invalid {
  border-color: #ef9a9a;
}

a {
  text-decoration: none;
  color: #668F86;
  font-weight: 400;
  transition: opacity 0.1s ease-out;
}
a:focus, a:hover {
  opacity: 0.75;
}
a:active {
  opacity: 1;
}

ul,
ol,
dl {
  list-style: none;
  margin-bottom: 15px;
}

ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

table {
  margin: 15px 0;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
table tr {
  border-bottom: 1px solid #668F86;
  text-align: left;
}
table thead th {
  padding: 15px;
  font-weight: 300;
  color: #9e9e9e;
}
table tbody td {
  padding: 15px;
  font-weight: 300;
}

body {
  font-family: "figtree_regular", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: #47421F;
}

h1, h1 a,
h2, h2 a {
  font-family: "wilco_loft_sansmidrange", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #6B0504;
  margin: 0 0 10px;
}

h3,
h4,
h5,
h6 {
  font-family: "bitterpro_regular", sans-serif;
  font-weight: 300;
  color: #47421F;
  margin: 0 0 10px;
  font-weight: 600;
}

.h1,
h1 {
  font-size: 54px;
  line-height: 67.5px;
}

.h2,
h2 {
  font-size: 45px;
  line-height: 58.5px;
}

.h3,
h3 {
  font-size: 36px;
  line-height: 49.5px;
}

.h4,
h4 {
  font-size: 31.5px;
  line-height: 45px;
}

.h5,
h5 {
  font-size: 27px;
  line-height: 40.5px;
}

.h6,
h6 {
  font-size: 22.5px;
  line-height: 36px;
}

p {
  margin-bottom: 15px;
}
p.magnify {
  font-size: 19.8px;
  line-height: 1.8;
}
p.date {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}
p.caption {
  font-size: 15px;
  text-align: right;
  font-family: "bitterpro_regular", serif;
  font-weight: 300;
  color: #6B0504;
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: 600;
}

.footer,
footer {
  padding: 30px;
  width: 100%;
  background: #47421F;
}
.footer .copyright,
footer .copyright {
  margin: 0;
  padding-top: 30px;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid #9e9e9e;
}
.footer .copyright a,
footer .copyright a {
  color: #bdbdbd;
}

.footer-text p {
  color: #ffffff;
}

.footer-links-category {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-top: 5px;
}
.footer-links a {
  color: #bdbdbd;
}

img.full-width {
  max-width: 100%;
  height: auto;
  margin: 10px auto 5px;
}

.stepper {
  margin: 30px 15px;
}
.stepper .step {
  position: relative;
  padding: 0 30px;
  margin-bottom: 30px;
  border-left: 1px solid #bdbdbd;
}
.stepper .step:last-of-type {
  border: none;
}
.stepper .step .step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: -18px;
  height: 36px;
  width: 36px;
  z-index: 1;
  font-weight: 600;
  color: #ffffff;
  background: #514B23;
  border-radius: 50%;
  box-shadow: 0 2px 4px #e0e0e0;
}
.stepper .step .step-title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
}

/*# sourceMappingURL=mustard-ui.css.map */