.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 80px;
  background: var(--bg);
  border-radius: 20px;
  position: relative;
  z-index: 10;
}
.form-background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.form-background img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-title {
  text-wrap: balance;
  margin-bottom: 25px;
}
.form-callback {
  background: var(--secondary);
  border-radius: 15px;
  padding: 30px;
}
.form-callback_title {
  color: var(--bg);
  margin-bottom: 20px;
}
.form-callback .form-input {
  margin-bottom: 10px;
}
.form-callback .form-submit {
  margin-top: 10px;
}
.form-callback .form-privacy {
  margin-top: 10px;
}
.form-image {
  border-radius: 15px;
  overflow: hidden;
}
.form-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  .form-wrapper {
    padding: 0;
    background: transparent;
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .form-content {
    width: calc(50% - 10px);
  }
  .form-callback {
    width: calc(50% - 10px);
  }
  .form-image {
    width: 100%;
    height: 450px;
  }
  .form-background {
    display: none;
  }
}
@media (max-width: 992px) {
  .form-block {
    padding: 20px 0 !important;
  }
}
@media (max-width: 769px) {
  .form-content {
    width: 100%;
  }
  .form-callback {
    width: 100%;
    padding: 15px;
  }
  .form-callback_title {
    margin-bottom: 15px;
  }
  .form-image {
    height: 300px;
  }
}/*# sourceMappingURL=block.css.map */