.contact-header-bg {
  background-color: #0e0e15;
}
.section-one {
  position: relative;
  background-color: #0e0e15;
  padding: 90px 0 110px;
  overflow: hidden;
  color: #ffffff;
}
.section-one .container {
  position: relative;
  z-index: 2;
}
.section-one .row {
  align-items: stretch;
  row-gap: 20px;
}
.contact-info-col {
  position: static;
}
.contact-tag {
  border: 1px solid #363aff;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.section-one-content {
  position: static;
  min-height: 100%;
  padding-bottom: 250px;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}
.section-one-content p {
  margin: 0;
}
.contact-section-banner {
  position: absolute;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  z-index: 1;
  width: min(42vw, 620px);
  max-height: 520px;
  display: block;
  object-fit: contain;
  object-position: left bottom;
}
.contact-form-wrapper {
  min-width: 0;
}
.contact-form-wrapper #product-submission-form > .container {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}
.contact-form-wrapper > label {
  color: white;
  padding: 40px;
}
/* wrapper for positioning */
.text-field-wrapper {
  position: relative;
  width: 100%;
}

label {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 40px;
  color: white;
}

/* actual input */
.text-field {
  z-index: 1;
  height: 55px;
  padding-left: 15px;
  padding-right: 32px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ccc;
  width: 100%;
}

/* overlay element */
.text-field-tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 2;
  border-top: 32px solid #0e0e15;
  border-left: 32px solid transparent;
  background: transparent;
  pointer-events: none;
}

/* textarea fix */
textarea.text-field {
  height: auto;
  min-height: 120px;
  padding-top: 10px;
  padding-right: 32px;
}

/* optional focus effect */
.text-field:focus {
  outline: none;
  border-color: #363aff;
}

/* Checkbox Privacy */

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-checkbox input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 4px;
  border: 1px solid #ffffff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  cursor: pointer;
}

.privacy-checkbox input[type='checkbox']:checked {
  background-image: url('../images/privacy-logo-mark.svg');
}

.privacy-checkbox label {
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
  color: white;
}
.privacy-checkbox a {
  color: #363aff !important;
  text-decoration: underline !important;
}

.submit-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: white;
  color: #363aff;
}
#confirmation-message {
  display: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
}

@media (max-width: 991px) {
  .section-one {
    padding: 72px 0 88px;
  }

  .section-one-content {
    padding-bottom: 190px;
    font-size: 40px;
  }

  .contact-section-banner {
    width: min(34vw, 360px);
    max-height: 310px;
  }
}

@media (max-width: 767px) {
  .section-one {
    padding: 58px 0 72px;
  }

  .section-one-content {
    min-height: auto;
    padding-bottom: 0;
    text-align: center;
  }

  .contact-tag {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-section-banner {
    position: static;
    width: min(72vw, 230px);
    margin: 34px auto 0;
    object-position: center bottom;
  }

  .contact-form-wrapper {
    margin-top: 10px;
  }

  label {
    line-height: 1.45;
  }

  .privacy-checkbox {
    gap: 12px;
  }

  .submit-btn {
    width: 100%;
    max-width: 220px;
    margin-left: 0 !important;
  }
}

@media (max-width: 576px) {
  .section-one {
    padding: 48px 0 62px;
  }

  .contact-tag {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .section-one-content {
    font-size: 34px;
    line-height: 1.12;
  }

  .contact-section-banner {
    width: min(78vw, 200px);
    margin-top: 28px;
  }

  .text-field {
    height: 52px;
    font-size: 15px;
  }

  .text-field-tri {
    border-top-width: 26px;
    border-left-width: 26px;
  }

  .privacy-checkbox label,
  label {
    font-size: 15px;
  }

  #confirmation-message {
    padding: 16px;
    font-size: 16px;
  }
}
