.contactSection {
	width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid #ccc;
  margin-top: 60px;
  font-family: "Roboto", Segoe UI, "微軟正黑體", "Microsoft JhengHei", "Arial", "新細明體";
  line-height: normal;
  box-sizing: border-box;
}

.contactSection * {
  box-sizing: border-box;
}

.contactSection .setionTitle {
	font-size: 42px;
	font-weight: 600;
	color: #181818;
  margin-bottom: 20px;
}

.contactSection .contactSectionDesc {
	font-size: 17px;
	color: #4d4d4d;
  margin-bottom: 20px;
}

.contactSection .contactSetionBoxBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  font-size: 17px;
  padding: 12px 20px;
  background: #006ce1;
  color: #fff;
  cursor: pointer;
  outline: none;
  text-align: center;
	width: 240px;
	height: 48px;
  outline: none;
  text-decoration: none;
  transition: all .4s ease-in-out;
}

.contactSection .contactSetionBoxBtn:hover {
  background: #0051a8;
}

@media only screen and (max-width: 1279px) {
  .contactSection {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media only screen and (max-width: 730px) {
  .contactSection {
    padding-top: 32px;
    padding-bottom: 56px;
    margin-top: 20px;
    text-align: center;
  }

  .contactSection .setionTitle {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .contactSection .contactSectionDesc {
    font-size: 15px;
  }

  .contactSection .contactSetionBoxBtn {
    width: 100%;
  }
}