.reason_flex {
  display: flex;
  gap: 30px;
}

.card {
  padding: 30px;
  margin-bottom: 50px;
  background-image: url("../../src/reason/bg.webp");
  background-repeat: no-repeat;
  background-size: 320px calc(100% - 60px);
}
.card .int {
  color: #e33435;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 32px;
  position: relative;
  padding-bottom: 15px;
}
.card h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #e33435;
  width: 96px;
  height: 2px;
}
.card .left {
  width: 50%;
}
.card .right {
  width: calc(50% - 30px);
}
.card .right img {
  margin-top: 30px;
}

@media (max-width: 700px) {
  .reason_flex {
    flex-direction: column;
  }
  .reason_flex .left {
    width: 100%;
  }
  .reason_flex .right {
    width: 100%;
  }
  .card {
    background-size: 250px calc(100% - 60px);
  }
  .card h3 {
    font-size: 24px;
  }
}/*# sourceMappingURL=reason.css.map */