:root {
  --orange: #ff8d3b;
  --orange-txt: #e76f19;
  --brown: #5a4538;
  --white: #fff;
  --red: #e35858;
  --letter-spacing-base: 0.04em;
  --radius-pill: 999px;
}

.estimate-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  padding: 38px 94px;
  margin: 0 auto 60px;
  background: #fffae9;
  border-radius: 18px;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 24px 20px;
    border-radius: 10px;
  }
}
.estimate-box__left {
  width: 436px;
}
.estimate-box__right {
  width: 516px;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__right {
    padding: 22px 20px 20px;
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 16px;
  }
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__left, .estimate-box__right {
    width: 100%;
  }
}
.estimate-box__lead {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--orange-txt);
  letter-spacing: var(--letter-spacing-base);
}
.estimate-box__text {
  margin: 1em 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown);
}
.estimate-box__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__points {
    gap: 10px;
    margin-top: 22px;
  }
}
.estimate-box__points li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: var(--letter-spacing-base);
  background: var(--red);
  border-radius: var(--radius-pill) 2px;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__points li {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}
.estimate-box__tel-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 20px 24px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 16px;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__tel-card {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
.estimate-box__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: var(--letter-spacing-base);
  background: var(--orange-txt);
  border-radius: var(--radius-pill);
}
.estimate-box__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
  color: var(--orange-txt);
  text-decoration: none;
}
.estimate-box__tel .material-icons svg {
  width: 38px;
  height: 41px;
  margin-top: 9px;
}
.estimate-box__tel span:last-child {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--letter-spacing-base);
  vertical-align: top;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__tel span:last-child {
    font-size: 30px;
  }
}
.estimate-box__note {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: var(--letter-spacing-base);
}
.estimate-box__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 52px;
  margin-top: 51px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: var(--letter-spacing-base);
  background: var(--orange);
  border-radius: 7px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: calc(767px - 1px)) {
  .estimate-box__button {
    width: 100%;
    margin-top: 16px;
  }
}
.estimate-box__button:hover {
  opacity: 0.85;
}
.estimate-box__button .material-icons svg {
  width: 24px;
  height: 24px;
  vertical-align: bottom;
}