* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* Sass Document */
/*@include screen-size(500px){
/*	font-weight:bold;
/*	}



/*----------------------------------------------------------------------------- BASICS */
html {
  height: 100%; }

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  /*background-image:url(../images/knitted-netting.jpg);
	background-attachment:fixed;
	background-size:8px;
	background-repeat:repeat;*/ }

h1 {
  color: #000000;
  font-family: Lusitana;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 40px;
  padding-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 20px; }

/*----------------------------------------------------------------------------- LAYOUT */
.contact-form-container form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px; }
  .contact-form-container form .input-form {
    min-width: 100%;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
    align-items: center; }
    .contact-form-container form .input-form input {
      border-color: #bfbfbf;
      border-style: solid;
      border-width: 1px;
      font-family: Muli;
      font-size: 15px;
      font-weight: 300;
      margin-top: -1px;
      padding-bottom: 12px;
      padding-top: 12px;
      text-align: center;
      width: 70%; }
      @media only screen and (max-width: 600px) {
        .contact-form-container form .input-form input {
          width: 100%; } }
  .contact-form-container form input.submit {
    color: #000;
    text-decoration: none;
    background-color: #ffef00;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
    font-family: Open Sans;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -1px;
    line-height: 25px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    cursor:pointer; }
    .contact-form-container form input.submit:hover {
      box-shadow: 0 0 0 2px black; }

/*----------------------------------------------------------------------------- VALIDATE */

label.error {
  display:none !important;
}
input.error {
  border:1px solid red !important;
}

.form-complete{
	font-family: Muli;
	font-size: 24px;
	font-weight: 300;
	line-height: 34px;
	text-align:center;
	margin:40px 0 0 0}