/* Start custom CSS for shortcode, class: .elementor-element-9da923d */.contact-form-section {
  width: 100%;
  color: #1d2333;
  background: #ffffff;
}

.contact-form-section__inner {
  max-width: 1920px;
  min-height: clamp(320px, 21.1vw, 405px);
  margin: 0 auto;

  padding-top: clamp(48px, 3.07vw, 59px);
  padding-right: clamp(24px, 6.25vw, 120px);
  padding-bottom: clamp(48px, 4.16vw, 80px);
  padding-left: clamp(24px, 6.25vw, 120px);

  display: grid;
  grid-template-columns: minmax(280px, 528px) minmax(0, 1141px);
  gap: clamp(40px, 3.33vw, 64px);

  align-items: start;
}

.contact-form-section__contacts-title,
.contact-form-section__form-title {
  margin: 0 0 30px;

  color: #1d2333;

  font-size: clamp(42px, 3.33vw, 64px);
  font-weight: 400;
  line-height: 0.91;
}

.contact-form-section__contacts-list {
  padding-top: 5px;
  color: #1d2333;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.14;
}

.contact-form-section__contacts-list p:last-child {
  margin-bottom: 0;
}

.contact-form {
  width: 100%;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 21px;

  margin-bottom: 23px;
}

.contact-form__field {
  font-family: "Satoshi variable";
  width: 100%;
  height: 49px;

  border: 2px solid #1B2232;
  background: transparent;

  padding: 15px 18px;

  color: #1d2333;

  font-size: 14px;
  font-weight: 400;
  line-height: 0.91;

  outline: none;
  border-radius: 0;
}

.contact-form__field::placeholder {
  color: #1d2333;

  font-size: 14px;
  font-weight: 400;
  line-height: 0.91;
  opacity: 1;
}

.contact-form__textarea {
  height: clamp(110px, 6.25vw, 120px);

  resize: vertical;
  display: block;

  margin-bottom: 30px;
}

.contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-form__response {
  color: #1d2333;
  font-size: 14px;
  line-height: 1.2;
}

.contact-form__button {
  margin-left: auto;

  padding: 12px 30px;

  border: 2px solid #ff2525;
  border-radius: 999px;

  background: transparent;
  color: #ff2525;

  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 0.91;

  cursor: pointer;

  transition:
    background 300ms ease-out,
    color 300ms ease-out,
    border-color 300ms ease-out,
    opacity 300ms ease-out;
}

.contact-form__button:hover {
  background: #ff2525;
  color: #ffffff;
  border-color: #ff2525;
}

.contact-form__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .contact-form-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-section__inner {
    padding: 56px 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__button {
    margin-left: 0;
  }
  
  .contact-form-section__contacts-title{
      margin-bottom: 11px;
  }
  .contact-form-section__form-title{
      margin-bottom: 21px;
      font-size: 24px;
  }
  .contact-form__bottom{
      gap: 0px;
      align-items: flex-end;
  }
}/* End custom CSS */