.estimate {
  margin-bottom: 11rem
}
.estimate__content {
  display: flex;
  justify-content: space-between
}
.estimate__title {
  text-align: center;
  margin-bottom: 3.6rem
}
.estimate__text {
  text-align: center;
  margin-bottom: 3rem
}
.estimate__form {
  width: 80rem;
  padding: 4rem 4rem 3rem;
  background-color: #fafafa;
  border-radius: 1.6rem
}
.estimate__form .form__content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 2rem;
  margin-bottom: 3rem
}
.estimate__form .form__content .label_textarea {
  grid-column: span 2
}
.estimate__form-button {
  width: 100%;
  margin-bottom: 2rem
}
.estimate__img {
  width: 52rem;
  border-radius: 1.7rem;
  overflow: hidden
}
.estimate__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
@media (max-width:48em) {
  .estimate {
    margin-bottom: 8rem
  }
  .estimate__content {
    display: block
  }
  .estimate__title {
    margin-bottom: 4rem
  }
  .estimate__form {
    width: 100%;
    padding: 4rem 3rem;
    border-radius: 3.2rem;
    margin-bottom: 4rem
  }
  .estimate__form .form__content {
    grid-template-columns: repeat(1,1fr);
    grid-gap: 3rem
  }
  .estimate__form .form__content .label_textarea {
    grid-column: span 1
  }
  .estimate__form .select-text,
  .estimate__form input,
  .estimate__form textarea {
    font-size: 2.8rem
  }
  .estimate__form-button {
    margin-bottom: 3rem
  }
  .estimate__img {
    width: 100%;
    height: 46rem;
    border-radius: 3.4rem
  }
}