html{
  height:100%;
}
body{
  height:100%;
  min-height: 600px;
  font-family: 'Libre Franklin', monospace;
  background: url('../img/dark-wood.svg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.intro{
  height:100%
}

#left{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#left.active {
  display: none;
}

#drawer{
  justify-content : center;
  align-items : center;
  background-color: rgba(255,255,255,0.90);
  color: #000;
  height: 100%;  
  display: none;
  min-height: 800px;
}

#drawer.active {
  display: flex;
}

.right-logo {
  display: block;
  position: absolute;
  top: 20px;
}

#ham {
  border: 2px solid rgb(146, 146, 146);
  padding: 15px;
  position: fixed;
  border-radius: 50%;
  top: auto;
  bottom: 100px;
  right: 50%;
  transform: translate(50%, 0);
}

#ham svg {
  width: 24px;
  margin-bottom: -4px;
  stroke: rgb(146, 146, 146);
}

#ham.active {
  stroke: rgba(0, 0, 0, 0.9);
  background-color: #e6e6e6;
  transform: translate(50%, 0);
  right: 50%;
  top: 50px;
  bottom: auto;
}

#ham:hover {
  cursor: pointer;
  border: 2px solid #AF6C3E;
  transition: all 0.2s;
}

#ham:hover svg{
  stroke: #AF6C3E;
}

#ham .exit {
  display: none;
}

#ham.active .menu {
  display: none;
}

#ham.active .exit {
  display: block;

  margin-bottom: -1px;
}

@media (min-width: 768px) {
  #left.active {
    display: flex;
  }
  #ham {
    right: 10%;
    bottom: 50%;    
    transform: translate(0, 50%);
  }
  #ham.active {
    top: 50%;
    
    transform: translate(50%, -50%);
  }
}

form {
  width: 324px;
  font-weight: lighter;
  padding: 10px;
  margin: 200px 0;
}

.g-recaptcha {
  opacity: 0.8;
  filter: contrast(0.70);
}

.checkbox {
  margin-left: 20px;
  font-weight: normal;
}

.form-control {
  background-color: rgba(85, 85, 85, 0.1);
  border-radius: 10px;
  color: #000;
  border: none;
  border-radius: 0;
  margin: 20px 0;
  box-shadow: none;
  font-weight: normal;
}

.form-control:focus {
  box-shadow: none;
  box-shadow: none;
  font-weight: normal!important;
  background-color: rgba(85, 85, 85, 0.2);
  transition: all 0.2s;
}

.input-helper {
  position: relative;
  display: inline-block;
  font-weight: normal;
}
.input-helper:before {
  content: '';
  display: block;
  position: absolute;
}

.input-helper--checkbox {
  padding-left: 20px;
}
.input-helper--checkbox:before {
  top: 2px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #000;
  margin-top: 1px;
}

.input-helper--checkbox:hover:before {
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid #AF6C3E;
}

.input-helper--checkbox:hover {
  cursor: pointer;
}

input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + label:before {
  background: #AF6C3E;
  border: 1px solid #AF6C3E;
}

.btn-primary {
  background: transparent;
  border-radius: 0;
  width: auto;
  font-size: 1.1em;
  padding: 5px 15px;
  border: none;
  border: 1px solid #000;
  margin-top: 30px;
  box-shadow: none;
  color:#000;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border: 1px solid #AF6C3E;
  transition: all 0.2s;
  outline: none !important;
  box-shadow: none;
  color: #AF6C3E;
}

.btn-primary:focus {
  background: #AF6C3E;
  color: #fff;
}

p {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  bottom: 20px;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
}

a {
  color: #000;
}

a:hover, a:focus {
  color: #000;
}
