@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf"); }
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf"); }
@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf"); }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "Muli-Regular";
  color: #666;
  font-size: 13px;
  margin: 0; }

input, textarea, select, button {
  font-family: "Muli-Regular";
  color: #333;
  font-size: 13px; }

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; }

img {
  max-width: 100%; }

ul {
  padding-left: 0;
  margin-bottom: 0; }

a {
    color: #c9bf8e;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
  text-decoration: none; }

:focus {
  outline: none; }

.wrapper {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; }

.inner {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 15px; }

form {
  border: 1px solid #d3cccc;
  padding: 62px 65px 64px; }

h1 {
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Muli-Regular";
  text-align: center;
  margin-bottom: 0;
  color: #fff;
  background: #c9bf8e;
  letter-spacing: 3px;
  padding: 10px;
  margin-bottom: 10px; }

h2 {
  text-transform: uppercase;
  font-size: 26px;
  font-family: "Muli-Regular";
  text-align: center;
  margin-bottom: 20px;
  color: #666;
  letter-spacing: 3px; }

h3 {
  font-size: 22px;
  font-family: "Muli-Regular";
  text-align: center;
  margin-bottom: 48px;
  color: #666;
  letter-spacing: 3px; }


h4 {
  text-align: right; 
  font-size: 13px;
  padding-bottom: 15px;}

.form-group {
  display: flex; }
  .form-group .form-wrapper {
    width: 100%; }
    .form-group .form-wrapper:first-child {
      margin-right: 40px; }

.form-wrapper {
  margin-bottom: 27px; }
  .form-wrapper label {
    margin-bottom: 10px;
    display: block;
    font-family: "Muli-Bold"; }

.form-holder {
  position: relative; }
  .form-holder i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    font-size: 17px;
    color: #999; }

.form-control {
  border: 1px solid #e6e6e6;
  display: block;
  width: 100%;
  height: 42px;
  padding: 0 20px 0 10px;
  color: #666;
  font-size: 15px; }
  .form-control::-webkit-input-placeholder {
    font-size: 17px;
    transform: translateY(5px);
    color: #666; }
  .form-control::-moz-placeholder {
    font-size: 17px;
    transform: translateY(5px);
    color: #666; }
  .form-control:-ms-input-placeholder {
    font-size: 17px;
    transform: translateY(5px);
    color: #666; }
  .form-control:-moz-placeholder {
    font-size: 17px;
    transform: translateY(5px);
    color: #999; }

.select::after {
  content: "\f2f9";
  font-family: Material-Design-Iconic-Font;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  font-size: 15px;
  color: #666; }

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px; }
  select option[value=""][disabled] {
    display: none; }

button {
  border: none;
  width: 152px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #c9bf8e;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Muli-SemiBold";
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #666;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  button:hover::before, button:active::before, button:focus::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }

.form-end {
  display: flex;
  align-items: center;
  margin-top: 13px; }

.button-holder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }


.checkbox {
  position: relative;
  width: 100%;
  padding-left: 22px; }
  .checkbox label {
    cursor: pointer;
    color: #666;
    font-family: "Muli-SemiBold"; }
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .checkbox input:checked ~ .checkmark:after {
    display: block; }

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: Material-Design-Iconic-Font;
  color: #666;
  font-size: 10px;
  font-weight: bolder; }
  .checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f26b'; }

@media (max-width: 767px) {
  .wrapper {
    display: block; }

  form {
    padding: 0;
    border: none; }

  .form-group {
    display: block; }
    .form-group .form-wrapper {
      width: 100%; }
      .form-group .form-wrapper:first-child {
        margin-right: 0px; }

  .form-end {
    display: block; }

  .checkbox, .button-holder {
    width: 100%; }

  .inner {
    padding: 30px 15px; }

  button {
    float: none;
    margin-top: 30px; }

  h3 {
    font-size: 18px;
    margin-bottom: 40px; } 
}


footer {
    background-color: black;
    color: white;
    padding: 20px 20px 0 20px;
    font-size: 12px;
    height: 200px;
    margin-bottom: -10px;
}

a.footera {
    color: #c9bf8e;
}

footer-heading-left {font-size: 13px;}

 hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); 
}


div.right {
    float: right;
    width: 300px;
    padding: 10px auto;
}

