.text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 98px;
  margin: 120px auto;
}

.text-image.reflect {
  flex-direction: row-reverse;
}

.ti-content {
  width: 100%;
}
.ti-content h2 {
  font-family: Semi;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.ti-content p {
  line-height: 1.5;
  color: #64666E;
  margin-bottom: 12px;
}

.ti-btn {
  margin-top: 48px;
}

.ti-img {
  display: flex;
  width: 100%;
  aspect-ratio: 572/640;
  border-radius: 12px;
  overflow: hidden;
}
.ti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ti-title {
  line-height: 1.4 !important;
  font-size: 14px;
  font-family: Medium;
  color: #BCBEC1 !important;
  margin-bottom: 16px !important;
}

@media (max-width: 900px) {
  .text-image {
    gap: 24px;
    flex-direction: column-reverse;
    margin: 64px auto;
  }
  .text-image.reflect {
    flex-direction: column-reverse;
  }
  .ti-title {
    margin-bottom: 8px !important;
  }
  .ti-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .ti-btn {
    margin-top: 16px;
  }
}