.catalog-section__form {
  width: 100%;
}

.mmit-form > div {
  display: flex;
  flex-flow: row wrap;
}

.mmit-form {
  background-color: #010101;
  padding: 71px 0 40px 56px;
  font-family: "Montserrat", "Arial", sans-serif;
  letter-spacing: normal;
  line-height: normal;
  border-radius: 4px;
  color: #ffffff;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 76px;
  margin-top: 48px;
}

.mmit-form__result {
  margin-bottom: 24px;
  font-size: 22px;
  color: #F2D590;
}

.mmit-form__info {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 4;
}

.mmit-form__descr {
  width: 100%;
  max-width: 544px;
  margin-bottom: 44px;
}

.mmit-form__descr h3 {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 600;
}

.mmit-form__text {
  font-size: 22px;
}

.mmit-form__image {
  /*width: 100%;*/
  width: 587px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  background-image: url("images/form_backg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

.mmit-form__image::after {
  display: block;
  content: '';
  position: absolute;
  right: 201px;
  top: 12px;
  width: 713px;
  height: 503px;
  border-radius: 4px 0px 0px 0px;
  background: radial-gradient(58.35% 75.62% at 31.28% 27.7%, #030102 48.97%, rgba(3, 1, 2, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
;

}

.mmit-form__image::before {
  display: block;
  content: '';
  position: absolute;
  right: 273px;
  top: 0;
  width: 713px;
  height: 491px;
  border-radius: 4px 0px 0px 0px;
  background: radial-gradient(58.35% 75.62% at 31.28% 27.7%, #030102 48.97%, rgba(3, 1, 2, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
;

}

.mmit-form__wrap form {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: -10px;
  flex-direction: column;
}

.mmit-form__item {
  margin: 10px;
  width: 100%;
  max-width: 389px;
}

.mmit-form .mmit-form__input input {
  width: 100%;
  padding-left: 26px;
  height: 64px;
  border-radius: 4px;
  /*background-color: #010101;*/
  background: #010101;
  border: 1px solid #FFFFFF;
  font-size: 18px;
  letter-spacing: normal;
}

.mmit-form .mmit-form__input input::placeholder {
  color: #5F5F5F;
}

.mmit-form__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
}

.mmit-form__label {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.94px;
}

.mmit-form__button {
  padding: 18px 36px;
  color: #424242;
  background-color: #F2D590;
  text-align: center;
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 22px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.mmit-form__button:hover {
  color: #424242;
  background-color: #FFE7A6;
}

@media all and (max-width: 740px) {
  .mmit-form {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0 50px;
  }
  .mmit-form > div {
    padding: 0 15px;
  }
  .mmit-form__image {
    position: relative;
    width: 100%;
    height: 300px;
    background-position: top center;
  }
  .mmit-form__image::before {
    display: none;
  }
  .mmit-form__image::after {
    right: 0;
    top: 50%;
    width: 100%;
    height: 253px;
    background: linear-gradient(0deg, #030102 40.62%, rgba(3, 1, 2, 0) 59.88%);
  }
  .mmit-form__wrap form {
    display: block;
    margin: 0;
  }
  .mmit-form__descr h3 {
    font-size: 22px;
  }
  .mmit-form__text {
    font-size: 16px;
  }
  .mmit-form__label {
    font-size: 14px;
  }
  .mmit-form__item {
    max-width: unset;
    margin: 0 0 16px;
  }
  .mmit-form .mmit-form__input input {
    height: 54px;
    font-size: 16px;
  }
  .mmit-form__button {
    width: 100%;
    font-size: 18px;
    padding: 16px 36px;
  }

}