/* ============================================
   Contact Thanks Page
   ============================================ */

/* ---------- Thanks Content ---------- */
.thanks {
  padding: 70px 40px;
}

.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.thanks__title {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: #303034;
  text-align: center;
}

.thanks__text {
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: #303034;
  line-height: 1.8;
  text-align: center;
  margin-top: -70px;
}

.thanks__btn-wrapper {
  margin-top: -70px;
}


/* ============================================
   Responsive (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {

  .thanks {
    padding: 50px 20px;
  }

  .thanks__inner {
    gap: 60px;
  }

  .thanks__title {
    font-size: 22px;
  }

  .thanks__text {
    font-size: 14px;
    margin-top: -30px;
  }

  .thanks__btn-wrapper {
    margin-top: -30px;
    width: 220px;
  }
}
