@charset "utf-8";

.thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 32px;
}
.thanks_img {
  width: 120px;
  height: auto;
}
.thanks_title {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.thanks_text {
  max-width: 400px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.thanks_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 46px;
  margin-top: 24px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  transition: border-color 0.15s ease;
}
.thanks_btn_text {
  margin-right: 8px;
  font-weight: 500;
}
.thanks_btn_img {
  width: 18px;
  height: auto;
}

@media screen and (min-width: 641px) {
  .thanks_btn:hover {
    border-color: #182127;
  }
}

@media screen and (max-width: 640px) {
  .thanks {
    padding: 120px 20px;
  }
}

@media screen and (max-width: 480px) {
  .thanks_img {
    width: 96px;
  }
  .thanks_title {
    font-size: 22px;
  }
  .thanks_text {
    font-size: 14px;
    line-height: 1.8;
  }
}
