@charset "UTF-8";
* {
  font-family: 微軟正黑體;
}


p {
  font-size: 16px;
}

h1, h2 {
  text-align: center;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
}

nav.navbar {
  transition: 0.5s;
}

nav.navbar.navbar-default.navbar-fixed-top.navbar-top {
  background-color: transparent;
}
nav.navbar.navbar-default.navbar-fixed-top.navbar-top a {
  color: white;
  transition: 0.5s;
}
nav.navbar.navbar-default.navbar-fixed-top.navbar-top a:hover {
  color: #44a1f1;
}

header.jumbotron {
  text-align: center;
  background-image: url("/images/banner.png");
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 0px;
}
header.jumbotron .container {
  color: white;
  padding: 200px 0px;
}
header.jumbotron hr {
  max-width: 50px;
  margin-top: 90px;
  border: solid 2px #44a1f1;
}
header.jumbotron h4 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
}

section {
  padding: 50px 0px;
}

section#section_about {
  background-color: #f2f2f2;
}
section#section_about h2 {
  padding: 0px 20px;
  text-align: left;
}
section#section_about p {
  padding: 0px 20px;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#section_about h2 {
    margin-top: 30px;
  }
}

section#section_service {
  background: url("/images/section1.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
section#section_service img {
  width: 100%;
}
section#section_service .img_wrap {
 margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  section#section_service .img_wrap {
    height: auto;
    overflow: hidden;
  }
  section#section_service h3, section#section_service p {
    text-align: center;
  }
  section#section_service h3 {
    margin-bottom: 10px;
  }
  section#section_service p {
    margin: 0 auto 20px;
    max-width: 90%;
  }
}

section#section_function {
  background-color: #222;
  color: white;
  padding: 0;
}

section#section_function .col-md-12 i {
  font-size: 40px;
}
section#section_function .col-md-12.features {
  margin-top: 40px;
  margin-bottom: 40px;
}
section#section_function .row{
  padding: 20px 0;
}

@media screen and (max-width: 1024px) {
  section#section_function .col-md-12.features .col-md-12.features {
    text-align: center;
  }
  section#section_function .col-md-12.features .col-12.col-md-4 {
    margin: 20px 0;
  }
}

section#section_future {
  background: url("/images/section2.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
}
section#section_future img {
  width: 100%;
}
section#section_future i {
  font-size: 30px;
}
section#section_future .feature {
  padding-top: 10px;
  padding-bottom: 10px;
}
section#section_future .media-size {
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  section#section_future .feature {
    text-align: center;
  }
  section#section_future .feature i {
    margin-top: 15px;
  }
  section#section_future .feature p {
    max-width: 90%;
    margin: auto;
  }
}
section#section_future .col-md-6 > .row {
  padding: 60px 0;
}

footer.jumbotron {
  text-align: center;
  background-image: url("/images/contact.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  margin-bottom: 0px;
  padding: 65px;
}
footer.jumbotron .container {
  color: white;
  padding: 60px 0px;
}


.txt-line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  padding-bottom: 20px;
}