#customPageTitle {
  display: none;
}

.boxContainer {
  width: var(--web-container);
  min-height: calc(100vh - var(--menu-height));
  margin: 0 auto;
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 516px;
  column-gap: 110px;
  align-items: start;
  box-sizing: border-box;
  color: var(--base);
}

.leftContainer {
  max-width: 360px;
  padding-top: 6px;
}

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

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

.boxContainer .right {
  width: 100%;
}

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

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

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

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

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

.sendContact {
  width: 100%;
  height: 58px;
  margin-top: 3px;
  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: 400;
  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;
    padding: 42px 0 64px;
  }

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