#customPageTitle {
  display: none;
}

.boxContainer {
  width: min(1124px, calc(100% - 106px));
  min-height: calc(100vh - var(--menu-height));
  margin: 0 auto;
  padding: 43px 0 38px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 426px;
  column-gap: 120px;
  align-items: start;
  box-sizing: border-box;
  color: var(--base);
}

.leftContainer {
  max-width: 330px;
  padding-top: 1px;
}

.titleCustom {
  margin: 0 0 18px;
  text-align: left;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0;
}

.subtitleCustom {
  margin: 0;
  max-width: 300px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.boxContainer .right {
  width: 100%;
}

.formContainer {
  width: 100%;
  display: grid;
  gap: 14px;
}

.formInput {
  width: 100%;
  height: 47px;
  padding: 0 11px;
  border: 1px solid var(--lines-border-color);
  border-radius: 0;
  background: transparent;
  color: var(--base);
  font-size: 12px;
  line-height: 14px;
  box-sizing: border-box;
}

.formInput:focus {
  border-color: var(--base);
  outline: none;
}

.formInput::placeholder {
  color: var(--base);
  opacity: 1;
}

.dateInputContainer {
  position: relative;
  display: block;
  width: 100%;
  cursor: text;
}

.dateInputContainer .formInput {
  padding-top: 16px;
}

.dateInputLabel {
  position: absolute;
  top: 7px;
  left: 11px;
  z-index: 1;
  color: var(--base);
  font-size: 10px;
  line-height: 12px;
  pointer-events: none;
}

textarea.formInput.contact_message {
  height: 146px;
  padding-top: 14px;
  resize: none;
}

.uploadFileContainer {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  background: #fafafa;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
}

.uploadFileContainer,
.uploadFileContainer * {
  cursor: pointer !important;
}

.uploadLabel,
.uploadText,
.file-input-name,
.file-input-close {
  font-size: 11px;
  line-height: 14px;
}

.uploadLabel {
  width: 100%;
  padding: 0 19px;
  color: #808080;
  box-sizing: border-box;
  cursor: pointer;
}

.file-input-wrapper {
  position: absolute;
  inset: 0;
  min-height: 46px;
  opacity: 0;
  cursor: pointer;
}

.uploadText {
  display: none;
}

.FMFileUploadFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0;
  pointer-events: none;
}

.file-input-name {
  position: absolute;
  right: 42px;
  max-width: 190px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #808080;
  pointer-events: none;
}

.file-input-close {
  position: absolute;
  right: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--base);
  cursor: pointer;
}

.sendContact {
  width: 100%;
  height: 46px;
  margin-top: 1px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-2);
  border: 1px solid var(--secondary-2);
  color: var(--button-font-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
}

.sendContact:hover {
  background: var(--base-aux);
  color: var(--secondary-2);
}

@media screen and (max-width: 900px) {
  .boxContainer {
    grid-template-columns: 1fr;
    row-gap: 34px;
    width: min(100% - 32px, 516px);
    padding: 42px 0 64px;
  }

  .leftContainer,
  .subtitleCustom {
    max-width: none;
  }
}

@media screen and (max-width: 520px) {
  .uploadLabel {
    padding: 0 13px;
  }
}
