.hcf-wrap{
  width:100%;
  max-width:100%;
  margin:0;
}
.hcf-form{
  background:#f4f0f1;
  padding:16px;
  border-radius:0;
  color:#6a6a6a;
  font-family:Arial,sans-serif;
}
.hcf-grid{
  display:grid;
  gap:18px;
}
.hcf-grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.hcf-grid-3{
  grid-template-columns:1.6fr .9fr .9fr;
}
.hcf-field,
.hcf-group{
  margin-bottom:18px;
}
.hcf-field label,
.hcf-group-title{
  display:block;
  margin:0 0 10px;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:15px;
  font-weight:600;
  color:#777;
  line-height:1.2;
}
.hcf-required{
  color:#d62828;
  font-weight:700;
}
.hcf-field input[type="text"],
.hcf-field input[type="email"],
.hcf-field textarea,
.hcf-field select{
  width:100%;
  box-sizing:border-box;
  border:1px solid #8d95a3;
  border-radius:4px;
  background:#fff;
  color:#666;
  font-size:15px;
  padding:13px 14px;
  outline:none;
}
.hcf-field select{
  appearance:none;
  -webkit-appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,#777 50%),linear-gradient(135deg,#777 50%,transparent 50%);
  background-position:calc(100% - 18px) calc(50% - 3px),calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
  padding-right:40px;
}
.hcf-field textarea{
  min-height:96px;
  resize:vertical;
}
.hcf-field input::placeholder,
.hcf-field textarea::placeholder{
  color:#b3b3b3;
}
.hcf-checkboxes{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.hcf-check{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#777;
  font-size:15px;
  line-height:1.35;
}
.hcf-check input{
  margin:0;
  width:14px;
  height:14px;
}
.hcf-area-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  margin-bottom:16px;
}
.hcf-area-select{
  margin-bottom:0;
}
.hcf-checkboxes-areas{
  margin-top:4px;
}
.hcf-actions{
  margin-top:10px;
}
.hcf-actions-dual{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.hcf-submit{
  width:100%;
  border:0;
  border-radius:2px;
  background:#BA5E6E;
  color:#fff;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:15px;
  font-weight:700;
  padding:14px 18px;
  cursor:pointer;
}
.hcf-submit-alt{
  background:#a94e5e;
}
.hcf-submit:disabled{
  opacity:.7;
  cursor:not-allowed;
}
.hcf-response{
  margin-top:14px;
  font-size:14px;
  color:#444;
}
.hcf-response.is-success{
  color:#2f6b42;
}
.hcf-response.is-error{
  color:#a12626;
}
.hcf-note{
  margin:14px 0 0;
  text-align:center;
  color:#111;
  font-size:17px;
  line-height:1.7;
}
.hcf-note-icon{
  margin-right:4px;
}
@media (max-width: 767px){
  .hcf-grid-2,
  .hcf-grid-3,
  .hcf-area-grid,
  .hcf-actions-dual{
    grid-template-columns:1fr;
  }
  .hcf-checkboxes{
    gap:10px 12px;
  }
}
