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

/* ---------   Colours   -------- */
/* Black  = #363636;
   Grey   = #CDCDCD;
   Orange = #FF5B34; */

   @font-face {
       font-family: 'brownregular';
       src: url('../fonts/brown-regular-webfont.woff2') format('woff2'),
            url('../fonts/brown-regular-webfont.woff') format('woff');
       font-weight: normal;
       font-style: normal;
   }


.desc {
  font-size: 45px;
  line-height: 42px;
  color: #363636;
  padding-bottom: 10px;
  padding-top: 10px;
  font-family: 'brownregular';
}
.input {
  border: 2px solid;
  border-color: #CDCDCD;
  border-radius: 4px;
  font-family: 'brownregular';
  font-size: 18px;
  line-height: 30px;
  color: #363636;
  padding: 14px 20px;
  vertical-align: top;
  font-family: 'brownregular';
  margin-bottom: 15px;
  width: 100%;
}
.input:focus {
  border: 2px solid;
  outline: none;
  font-family: 'brownregular';
}
input:hover {
  border-color: #8B8B8B;
}
.submit {
  background-color: #363636;
  color: #fff;
  align-items: center;
  text-align: center;
  cursor: default;
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 15px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  margin-right: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
.submit:hover {
  opacity: 0.85;
  cursor: pointer;
}
.cap-note {
  opacity: 0;
  transition: 1s
}
.cap-note-show {
  opacity: 1;
  transition: .25s;
}
