.input-cols {
  display: flex;
  gap: 1.6rem;
}
.input-col {
  width: 50%;
}
.form-group {
  margin-bottom: 1.6rem;
}
.form-group.mb-8 {
  margin-bottom: 0.8rem;
}
.form-group.mb-28 {
  margin-bottom: 2.8rem;
}
.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  height: 6.4rem;
  font-size: 1.6rem;
  color: var(--dark-grey);
  padding: 0 2rem;
}
.form-control:focus {
  border-color: rgba(0,0,0,0.4);
}
.form-control::placeholder {
  opacity: 0.75;
  color: var(--dark-grey);
}
.form-control:-ms-input-placeholder {
  opacity: 0.75;
  color: var(--dark-grey);
}
textarea.form-control {
  resize: none;
  height: 19.2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: block;
}
select.form-control {
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background: url(../images/icon-black-arrow-down.svg) no-repeat center right 2rem;
}
.errorMessage {
  display: none;
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin: 0.4rem 0 0;
  color: red;
}
.chk {
  display: block;
  position: relative;
  padding-left: 4rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: rgba(31,31,31,0.75);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chk a {
  color: var(--blue-60);
  font-weight: bold;
}
.chk a:hover {
  text-decoration: underline !important;
}
.chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.chk .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--white);
}
.chk input:checked ~ .checkmark,
.chk:has(input:checked) .checkmark {
  border-color: var(--dark-grey);
}
.chk .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.chk input:checked ~ .checkmark:after,
.chk:has(input:checked) .checkmark:after {
  display: block;
}
.chk .checkmark:after {
  left: 0.8rem;
  top: 0.3rem;
  width: 0.6rem;
  height: 1.2rem;
  border: solid var(--dark-grey);
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.select{
  position: relative;
}
.select-input{
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.custom-select-trigger{
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: 2rem;
  height: 6.4rem;
  padding-right: 5rem !important;
}
.custom-select-trigger.placeholder{
  color: var(--dark-grey);
}
.custom-select-trigger::after{
  position: absolute;
  content: "";
  right: 2.4rem;
  width: 1.2rem;
  height: 0.7rem;
  background-image: url(../images/icon-black-arrow-down.svg);
  background-size: cover;
  background-position: center right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-trigger.show::after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-options {
  position: absolute;
  background: var(--white);
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 0;
  display: none;
  z-index: 10;
  max-height: 20rem;
  overflow: hidden;
  overflow-y: auto;
}
.select-auto .custom-options{
  min-width: 100%;
  width: initial;
}
.custom-option{
  padding: 1.6rem 2rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 2.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.select-auto .custom-option{
  white-space: nowrap;
}
.option-icon{
  width: 2rem;
  object-fit: cover;
  margin-right: 0.8rem;
}
.custom-option:not(.selected):hover{
  background: var(--grey-10);
}
.custom-option.selected{
  background: var(--dark-grey);
  color: var(--white);
}
.wpcf7-list-item {
  margin: 0;
  display: block;
}
@media(min-width:1460px) and (max-width:1499.98px) {
  .form-control {
    font-size: 1.5rem;
  }
  .custom-option {
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
}
@media(min-width:1360px) and (max-width:1459.98px) {
  .form-control {
    height: 5.8rem;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
  .chk {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .chk .checkmark {
    height: 2rem;
    width: 2rem;
  }
  .chk .checkmark:after {
    left: 0.7rem;
    width: 0.5rem;
    height: 1rem;
  }
  .custom-option {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px) {
  .form-group.mb-28 {
    margin-bottom: 2rem;
  }
  .form-control {
    height: 5.4rem;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
  .chk {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .chk br {
    display: none;
  }
  .chk .checkmark {
    height: 2rem;
    width: 2rem;
  }
  .chk .checkmark:after {
    left: 0.7rem;
    width: 0.5rem;
    height: 1rem;
  }
  .custom-option {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px) {
  .form-group.mb-28 {
    margin-bottom: 2rem;
  }
  .form-control {
    height: 5.4rem;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
  .chk {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .chk br {
    display: none;
  }
  .chk .checkmark {
    height: 2rem;
    width: 2rem;
  }
  .chk .checkmark:after {
    left: 0.7rem;
    width: 0.5rem;
    height: 1rem;
  }
  .custom-option {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media(min-width:768px) and (max-width:991.98px) {
  .form-group.mb-28 {
    margin-bottom: 2rem;
  }
  .form-control {
    height: 5.4rem;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
  .chk {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .chk br {
    display: none;
  }
  .chk .checkmark {
    height: 2rem;
    width: 2rem;
  }
  .chk .checkmark:after {
    left: 0.7rem;
    width: 0.5rem;
    height: 1rem;
  }
  .custom-option {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media(max-width:767.98px) {
  .input-cols {
    gap: 0;
    flex-wrap: wrap;
  }
  .input-col {
    width: 100%;
  }
  .form-group.mb-28 {
    margin-bottom: 2rem;
  }
  .form-control {
    height: 5.4rem;
    font-size: 1.4rem;
    padding: 0 1.5rem;
  }
  .chk {
    padding-left: 3.2rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .chk br {
    display: none;
  }
  .chk .checkmark {
    height: 2rem;
    width: 2rem;
  }
  .chk .checkmark:after {
    left: 0.7rem;
    width: 0.5rem;
    height: 1rem;
  }
  .form-btn .btn {
    width: 100%;
  }
  .custom-option {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}