@charset "UTF-8";
/*-------------------------
    Global
-------------------------*/
* {
  box-sizing: border-box;
  position: relative;
}

body, html {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*-------------------------
    Layout
-------------------------*/
.container {
  display: block;
  margin: 0 auto;
  width: 992px;
}

.row:after {
  content: "";
  display: block;
  clear: both;
}

.col-1-2, .col-1-3 {
  float: left;
  display: block;
}

.col-1-2 {
  width: 50%;
}

.col-1-3 {
  width: 33.33333%;
}

/*-------------------------
    Component
-------------------------*/
/*----- 導覽列 -----*/
.navbar {
  height: 64px;
  width: 100%;
  position: fixed;
  z-index: 5;
}
.navbar.active {
  background-color: rgba(124, 125, 197, 0.8);
}
.navbar .nav-menu {
  display: flex;
  position: absolute;
  right: 20px;
  margin: 20px;
}
.navbar .nav-item {
  left: 0;
  padding: 0 10px;
  font-weight: 500;
}
.navbar .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.6);
  height: 64px;
  transition: all 0.3s;
}
.navbar .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}
.navbar .nav-item .nav-link:hover {
  color: white;
}
.navbar .nav-item .nav-link:hover::after {
  width: 100%;
}

/*----- 區塊 -----*/
.jumbotron {
  height: 640px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cmpt-1, .cmpt-2, .cmpt-3 {
  margin: 100px 0;
}

.cmpt-2 {
  background-image: url(../img/bg-right.png);
}

.card {
  height: 460px;
}

.card-fluid {
  height: 460px;
  position: relative;
}
.card-fluid .fluid-img {
  height: 460px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.card-fluid .info-fluid {
  z-index: 1;
  position: absolute;
  top: 300px;
  left: 0px;
  padding: 20px;
}
.card-fluid .info-fluid h2 {
  color: white;
  font-size: 35px;
  font-family: "Lobster";
  font-weight: 200;
  padding: 20px 20px 0 0;
}
.card-fluid .info-fluid p {
  color: white;
  font-size: 18px;
  font-weight: 100;
}
.card-fluid .info-fluid.info-top {
  top: 0px;
}

/*----- 圖片 -----*/
.bg-img {
  height: 460px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-img-md {
  height: 300px;
  border: 30px solid rgba(0, 0, 0, 0);
  margin-top: -10px;
}

.bg-img-sm {
  height: 210px;
  background-size: 50% 65%;
}

.bg-img-lg {
  height: 550px;
}

.bg-img-parallax {
  position: absolute;
  display: block;
}

.img-left {
  top: 150px;
  left: 0;
}

.img-right {
  top: 850px;
  right: 0;
}

/*----- 文字 -----*/
.info {
  height: 100%;
  padding: 100px 30px;
  z-index: 1;
}
.info .title {
  font-size: 35px;
  font-family: "Lobster";
  font-weight: 200;
  padding: 20px 20px 0 0;
}
.info .des {
  font-size: 15px;
  color: #A3A3A2;
  padding: 10px 10px 0 0;
  margin-bottom: 20px;
  line-height: 25px;
}
.info .btn {
  border: 2px solid #8280BB;
  border-radius: 50px;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #8280BB;
  transition: all 0.3s;
}
.info .btn:hover {
  background-color: #8280BB;
  color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.info-sm {
  height: 250px;
  padding: 10px 30px;
}

.text-center {
  text-align: center;
}

/*----- 表尾 -----*/
.footer {
  height: 120px;
  background-color: #7E7DBC;
  color: white;
  padding: 20px 0;
}
.footer .footer-item {
  display: flex;
  margin-top: 20px;
}
.footer .footer-item .footer-left {
  position: absolute;
  left: 0;
  top: 6px;
  display: flex;
}
.footer .footer-item .footer-left .footer-title {
  font-size: 35px;
  font-family: "Lobster";
  font-weight: 200;
  margin-right: 20px;
}
.footer .footer-item .footer-right {
  position: absolute;
  right: 0;
  top: 6px;
}
.footer .footer-item .footer-right input {
  border-radius: 20px;
  border: 1px solid white;
  width: 400px;
  height: 40px;
  padding-left: 20px;
  outline: none;
}
.footer .footer-item .footer-right .subscribe-btn {
  color: white;
  background-color: #7E7DBC;
  border-radius: 20px;
  position: absolute;
  right: 5px;
  top: 4px;
  line-height: 30px;
  font-size: 15px;
  transition: all 0.3s;
}
.footer .footer-item .footer-right .subscribe-btn:hover {
  background-color: #36348a;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.icon {
  margin-left: 5px;
  margin-right: 5px;
  border: 1.5px solid white;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
}
.icon:hover {
  background-color: #36348a;
  border: 1px solid #36348a;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.icon .bx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

/*----- To Top 按鈕 -----*/
.to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  border: none;
  color: #36348a;
  background-color: #cdcdec;
  box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.8);
}
.to-top:hover {
  background-color: #36348a;
  color: white;
  border: 1px solid #36348a;
}

/*-------------------------
    Animation
-------------------------*/
@media (max-width: 1024px) {
  .rellax {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */