/***************************************
    copyright by MakeWeb.com.tw 
***************************************/
.form_box {
  display: flex;
  color: #42210b;
  padding: 0 50px;
}
.form_box .information {
  width: 100%;
}
.form_box .information .title {
  margin-bottom: 30px;
}
.form_box .information .title h1 {
  font-size: 3rem;
}
.form_box .information .contact_information {
  display: grid;
  gap: 20px;
  margin-bottom: 50px;
}
.form_box .information .contact_information > div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.form_box .information .contact_information > div img {
  width: 20px;
}
.form_box .information .contact_information > div h3 {
  font-size: 1.6rem;
}
.form_box .information h1,
.form_box .information h2,
.form_box .information h3 {
  font-weight: lighter;
}
.form_box .line_qrcode {
  display: flex;
}
.form_box .line_qrcode img {
  width: 100%;
}
.form_box .from {
  width: 100%;
}
.form_box .from a {
  display: inline-block;
  padding: 8px 50px;
  margin: 50px auto;
  color: #fff;
  background-color: #b8d6ce;
  border-radius: 50px;
}

/*-------------------------------------------- 
	Media Queries 
---------------------------------------------*/
/* Portrait and Landscape */
/*@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}*/
/*iPad Pro*/
/*iPad*/
/*iPhone*/
@media screen and (max-width: 767px) {
  .form_box {
    flex-direction: column;
    padding: 0;
  }
}