.contact-form {
  border-radius: 30px 30px 0 0;
  margin-top: -25px;
  background: linear-gradient(0deg, #faf4e5 0%, #faf4e5 100%), #fff;
}
.form-box {
  background-color: #fff;
  padding: clamp(15px, 4.322916666666667vw, 83px)
    clamp(15px, 4.791666666666667vw, 92px);
  border-radius: 30px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-group {
  flex: 1;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 244, 229, 0.6);
  outline: none;
  transition: 0.3s;
  margin-bottom: 25px;
  color: #19365e;
  font-family: "DIN Pro";
  font-size: clamp(14px, 0.8333333333333333vw, 16px);
}

.form-row textarea {
  border-radius: 20px;
}
.form-row label {
  color: #231f20;
  font-size: clamp(16px, 0.9375vw, 18px);
  padding-bottom: 8px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  display: inline-block;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid var(--main-red);
  background: rgba(250, 244, 229, 0.6);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.2);
}
.btn-submit {
  border-radius: 699px !important;
  border: 1px solid rgba(237, 28, 36, 0.5) !important;
  background: var(--main-red) !important;
  color: #fff !important;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px 31px !important;
  transition: 0.3s;
  cursor: pointer;
  font-family: "DIN Pro Cond";
  margin-top: 35px;
  margin-bottom: 35px;
}
.btn-submit:hover {
  background-color: #fff !important;
  color: var(--main-red) !important;
  border: 1px solid rgba(237, 28, 36, 0.5) !important;
}
.form__notice p {
  color: rgba(17, 17, 17, 0.8);
  font-family: "DIN Pro";
  font-size: 12px;
}
.form__notice a {
  color: var(--main-red);
}
.form__notice a:hover {
  text-decoration: underline;
}

.checkbox-btn .wpcf7-checkbox > span {
  padding: 8px 12px;
  margin-left: 0;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
  width: max-content;
  border: 1px solid rgba(237, 28, 36, 0.5);
  border-radius: 699px;
  color: var(--main-red);
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
}

.checkbox-btn .wpcf7-list-item.first {
  margin-top: 25px;
}
.checkbox-btn .wpcf7-list-item.last {
  margin-bottom: 25px;
  margin-right: 0;
}
.checkbox-btn .wpcf7-checkbox > span:hover {
  border: 1px solid var(--main-red);
}

.checkbox-btn .wpcf7-checkbox > span.checkboxchecked {
  background-color: var(--main-red);
  color: #fff;
  transition: 0.3s;
  border-color: var(--main-red);
}
.wpcf7-list-item input[type="checkbox"] {
  display: none;
}
.codedropz-upload-handler {
  border: none !important;
  margin: 0;
}
.codedropz-upload-inner h3,
.codedropz-upload-inner span,
.codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.codedropz-upload-container {
  padding: 0;
  width: fit-content;
}
.upload-box p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #231f20;
  font-size: clamp(16px, 0.9375vw, 18px);
  padding-bottom: 8px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
.cd-upload-btn {
  color: var(--main-red);
  text-decoration: underline !important;
}
@media only screen and (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .checkbox-btn .wpcf7-checkbox > span {
    padding: 5px;
    margin-right: 6px;
    font-size: 14px;
  }
  .btn-submit {
    width: 100%;
    margin-top: 22px;
    margin-bottom: 0;
  }
  .form-box {
    padding: 22px 15px;
  }
  .contact-form {
    border-radius: 20px 20px 0 0;
  }
}
