/* ====== Contact Form Section ====== */
.contact-form-section {
  background: #fff;
  display: flex;
  justify-content: center;
}

.contact-form-container {
  display: flex;
  gap: 20px;
  background: none;
  width: 100%;
  margin: 40px 0;
}

.contact-form-info {
  background: #D31C21;
  border-radius: 5px;
  padding: 30px;
  color: #fff;
  width: 100%;
  max-width: 910px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  .contact-form-title {
    font-size: var(--fs54);
    margin: 0 0 32px 0;
    font-weight: 600;
    line-height: var(--lh64);
    letter-spacing: -0.64px;
    vertical-align: middle;
    color: #fff;
  }
  .desc{
    color:white;
    >a{
      color:white;
    }
  }
}


.contact-form-email {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.contact-form {
  background: #fff;
  border-radius: 5px;
  padding: 46px 60px;
  min-width: 400px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-field {
  position: relative;
  margin-bottom: 0;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 25px 0 20px 0;
  border: none;
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
  font-size: 16px;
  background: transparent;
  color: #0C0B0B;
  outline: none;
  resize: none;
}

.contact-form-field label {
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 16px;
  color: #767676;
  pointer-events: none;
  transition: 0.2s;
  background: transparent;
}

.contact-form-field input:focus + label,
.contact-form-field input:not(:placeholder-shown) + label,
.contact-form-field textarea:focus + label,
.contact-form-field textarea:not(:placeholder-shown) + label {
  top: 10px;
  font-size: 13px;
  color: #D31C21;
}

textarea {
  min-height: 80px;
  max-height: 200px;
  padding-bottom: 16px;
}

.contact-form-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px,3vw,16px);
  color: #0C0B0B;
  opacity: 0.7;
  margin-top: 10px;
}

.contact-form-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #D31C21;
  border-radius: 2.5px;
  border: 1px solid #767676;
}

input.contact-form-submit.big_btn.big_btn_red {
  margin-top: 60px;
  &:after{
    content:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18653 12.28L1.32227 11.4157L5.77915 6.95883L1.32227 2.50195L2.18653 1.6377L7.50766 6.95883L2.18653 12.28Z' fill='%230C0B0B'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.07326 12.28L6.20898 11.4157L10.6659 6.95883L6.20898 2.50195L7.07326 1.6377L12.3944 6.95883L7.07326 12.28Z' fill='%230C0B0B'/%3E%3C/svg%3E");
    width: 14px;
    height: 14px;
    display:inline-block;
  }
}
input.contact-form-submit.big_btn.big_btn_red:disabled{
    background:#767676;
}

@media (max-width: 900px) {
  .contact-form-container {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-form-info {
    min-width: unset;
    width: 100%;
    margin-bottom: 24px;
  }
  .contact-form {
    min-width: unset;
    width: 100%;
    padding: 32px 16px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 16px 4px;
  }
}
/*END_FORM*/