@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900);
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Lato', Arial;
  color: #666666;
  -webkit-font-smoothing: antialiased;
}
/* a {
  font-family: 'Lato', Arial;
  -webkit-font-smoothing: antialiased;
  text-decoration:none;
} */
div.content {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: rgba(0, 0, 0, 0.7);
  /* color: #666666; */
}





/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 80vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #intro {
    height: 150vh;
  }
}

#intro .carousel,
#intro .carousel-inner,
#intro .carousel-item,
#intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.7); */
}



#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 50px;
  left: 30px;
  right: 30px;
}

@media (max-width: 768px) {
  #intro .carousel-container {
    top: -100px;
  }
}

#intro .container {
  /* margin-top: 30px; */
  /* text-align: left; */
}

#intro h2 {
  color: #fff;
  font-size: 55px;
  line-height: 70px;
  font-weight: 700;
  margin: 0;
}

#intro h4 {
  color: #fff;
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  margin: 0;
}

#intro p {
  /* width: 80%; */
  font-size: 20px;
  line-height: 30px;
  padding: 10px 0;
  color: #fff;
}

@media (max-width: 768px) {
  #intro h2 {
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
  }
  #intro h4 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 45px;
  }
  #intro p {
    text-align: center;
  }
}




#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  border: #fff 2px solid;
  margin: 20px 0px 0px 5px;
  /* background: #f8693f; */
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #f8693f;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #intro .btn-get-started {
    width: 200px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# 次選單SubMenu
--------------------------------------------------------------*/
/* sub-Menu */
.sub-menu,
.sub-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.sub-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.sub-menu a {
  display: block;
  position: relative;
  color: #343a40;
  padding: 14px 10px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
  /* text-transform: uppercase; */
  letter-spacing: 0.3px;
}

.sub-menu a:hover,
.sub-menu .active > a,
.sub-menu li:hover > a {
  color: #f8693f;
  text-decoration: none;
}

.sub-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.sub-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.sub-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.sub-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #08362f;
}

.sub-menu .drop-down ul a:hover,
.sub-menu .drop-down ul .active > a,
.sub-menu .drop-down ul li:hover > a {
  color: #1bbca3;
}

.sub-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.sub-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.sub-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.sub-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.sub-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media screen and (min-width: 0px) and (max-width: 640px) {
  /*行動版*/
  .sub-menu a {
    padding: 14px 6px;
  }
}


.copyrights{
	text-indent:-9999px;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
}
.section-heading {
  margin: 40px 0 40px;
  text-align: center;
}
.section-heading h1 {
  display: inline-block;
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 0;
}
.section-heading h2 {
  font-size: 35px;
  font-weight: 500;
}
.section-heading h3 {
  font-size: 30px;
  font-weight: 500;
}
.section-heading h4 {
  font-size: 24px;
  line-height: 30px;
}
.section-heading h5 {
  font-size: 20px;
  line-height: 30px;
}

.section-heading p {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.7);
  /* color: #999999; */
  font-weight: 300;
}

@media only screen and (max-width:768px) {
  .section-heading h1 {
    font-size: 40px;
    font-weight: 500;
  }
  .section-heading h2 {
    font-size: 30px;
    font-weight: 500;
  }
  .section-heading h3 {
    font-size: 25px;
    font-weight: 500;
  }

  .section-heading h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
  }
  .section-heading p {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
  }
}

.section-heading .divider {
  /* font-size: 32px; */
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-heading .divider:before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}


.section-heading .divider:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f8693f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-heading.inverse h1,
.section-heading.inverse p {
  color: #ffffff;
}
.section-heading.inverse .divider:after {
  background: #fb6355;
}
section#about {
  position: relative;
}
section#about .about-item {
  text-align: center;
  font-size: 17px;
  line-height: 25px;
  color: #333;
}
section#about .about-item i.fa {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 28px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 107px;
  height: 107px;
}


section#features .media > .pull-right {
  margin-left: 20px;
}
section#features .media i.fa {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 2.6em;
  text-align: center;
}
section#features .media .media-heading {
  padding-top: 10px;
  font-weight: 300;
}
section#features .media .media-body {
  color: #333;
}
section#features .media.media-left .media-body {
  text-align: right;
}
section#features .media.feature {
  margin-top: 25px;
}
section#features .media.feature:first-child {
  margin-top: 0;
}
section#features img {
  margin: 0 auto 20px;
}
section#reviews {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
section#reviews .review-filtering {
  margin: 20px 0 100px 0;
}
section#reviews .review-filtering .review .review-person {
  width: 100%;
}
section#reviews .review-filtering .review .review-person img {
  width: 110px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 10px auto;
}
section#reviews .review-filtering .review .review-comment {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 5px 40px 20px;
  position: relative;
}
section#reviews .review-filtering .review .review-comment h3 {
  margin-bottom: 15px;
}
section#reviews .review-filtering .review .review-comment p {
  font-size: 16px;
  color: #333;
}
section#reviews .review-filtering .review .review-comment p span {
  margin-left: 10px;
}
section#reviews .review-filtering .review .review-comment:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-width: 15px;
  margin-top: -10px;
}
section#reviews .review-filtering .review .review-person,
section#reviews .review-filtering .review .review-comment {
  float: left;
}
section#reviews .review-filtering .slick-dots {
  bottom: -80px;
}
section#reviews .review-filtering .slick-dots li button {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
section#reviews .review-filtering .slick-dots li button:before {
  display: none;
}

section#reviews h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 45px;
}

section#reviews p {
  font-size: 12px;
  line-height: 16px;
}
@media only screen and (max-width:768px) {
  section#reviews h2 {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    line-height: 35px;
  }
}

section#screens .slider {
  margin: 50px 0;
}
section#screens .slider div img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  padding: 10px;
  display: inline;
}
section#screens .slider div h4 {
  text-align: center;
  margin-top: 40px;
  font-size: 22px;
}
section#screens .slider .slick-dots li button {
  -webkit-border-radius: 5em;
  -moz-border-radius: 5em;
  -ms-border-radius: 5em;
  -o-border-radius: 5em;
  border-radius: 5em;
}
section#screens .slick-prev,
section#screens .slick-next {
  width: 50px;
  height: 50px;
  top: 44%;
}
section#screens .slick-slide {
  text-align: center;
}
section#screens .slick-prev:before {
  content: "\f104";
}
section#screens .slick-next:before {
  content: "\f105";
}
section#screens .slick-prev:before,
section#screens .slick-next:before {
  font-size: 34px;
  -webkit-border-radius: 5em;
  -moz-border-radius: 5em;
  -ms-border-radius: 5em;
  -o-border-radius: 5em;
  border-radius: 5em;
  line-height: 45px;
  color: #CCC;
  border: 2px solid #CCC;
  width: 50px;
  display: inline-block;
  height: 50px;
  text-align: center;
}
section#screens .filter {
  text-align: center;
}
section#screens .filter a {
  display: inline-block;
  padding: 7px 20px;
  text-decoration: none;
  -webkit-border-radius: 5em;
  -moz-border-radius: 5em;
  -ms-border-radius: 5em;
  -o-border-radius: 5em;
  border-radius: 5em;
  margin: 10px 5px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
/* demo video Section */
section#demo .video-container {
  padding: 20px;
  border: 1px solid #b3b3b3;
  min-height: 450px;
  overflow: hidden;
}
section#demo iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Get app Section */
section#getApp {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 70px 0;
}
section#getApp .platforms {
  margin: 5px auto 120px auto;
  text-align: center;
}
section#getApp .platforms .btn {
  margin-right: 10px;
  margin-bottom: 20px;
}
/* support section */
section#support {
  padding: 0 0 20px 0;
  background: #EAEAED;
}
section#support .media {
  margin-bottom: 10px;
}
section#support .media i.fa {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 1.9em;
  text-align: center;
}
section#support .media .media-heading {
  padding-top: 15px;
  font-weight: 300;
}
section#support .media .media-heading a {
  font-weight: 400;
}
section#support a:hover {
 color: #004f8d;
 font-weight: 500;
  text-decoration: none;
}



/* footer section */
footer {
  padding: 20px 0;
  text-align: center;
}
footer a > img {
  width: 100px;
}
footer .social {
  display: block;
  margin-top: 30px;
}
footer .social a {
  margin: 0 8px;
  padding: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
footer .social a i {
  width: 1em;
}
footer .rights {
  margin-top: 30px;
}
footer .rights a {
  text-decoration: underline;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-weight: bold;
}
footer .rights a:hover {
  text-decoration: none;
}
section {
  position: relative;
  padding-bottom: 60px;
}
/* Common style for pseudo-elements */
section::before,
section::after {
  position: absolute;
  content: '';
  pointer-events: none;
  overflow: hidden;
}
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
/* .tp-caption {
  font-family: 'Lato', Arial !important;
  -webkit-font-smoothing: antialiased;
}
.tp-caption.large_white_bold {
  color: #ffffff;
  font-size: 65px;
  font-weight: 400;
}
.tp-caption.large_white_light {
  color: #ffffff;
  font-size: 65px;
  font-weight: 400;
  font-weight: 300;
} */

.kv-word{
  /* text-align: center; */
  padding: 10% 0 0 14%;

}

  .font_l {
    color: #ffffff;
    font-size: 65px;
    font-weight: 600;
    /* text-shadow: 0 0 0.2em #023e63; */
  }
  
  .font_m {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    /* text-shadow: 0 0 0.2em #023e63; */
  }

  .font_s {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    /* text-shadow: 0 0 0.2em #023e63; */
  }
  
  @media (max-width: 1024px) {
    .kv-word{
      /* text-align: center; */
      padding: 15% 0 0% 10%;
    
    }
  }
  
  @media (max-width: 640px) {
    .kv-word{
      text-align: center;
      padding: 30% 5% 0 5%;
    
    }
    .font_l {
      color: #ffffff;
      font-size: 50px;
      font-weight: bold;
    }
    .font_m {
      color: #ffffff;
      font-size: 30px;
      font-weight: 400;
    }
    .font_s {
      color: #ffffff;
      font-size: 20px;
      font-weight: bold;
    }
  }


.btn {
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  -ms-border-radius: 3em;
  -o-border-radius: 3em;
  border-radius: 3em;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 5px 25px;
}
.btn.btn-primary {
  border: 2px solid #ffffff;
  background: none;
  color: #ffffff;
}
.btn.btn-primary:hover {
  color: #ffffff;
}
.btn.btn-default {
  border: none;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ffffff), color-stop(100%, #cccccc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* IE10+ */
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#cccccc, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.btn.btn-lg {
  padding: 10px 25px;
}
.btn:hover {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
form .form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 5em;
  -moz-border-radius: 5em;
  -ms-border-radius: 5em;
  -o-border-radius: 5em;
  border-radius: 5em;
  height: 40px;
  line-height: 40px;
  padding: 20px;
  color: #cfcfcf;
  border: 2px solid #cccccc;
  font-weight: 300;
}
form textarea.form-control {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  height: auto;
  line-height: normal;
}
@media screen and (max-width: 640px) {
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .contact-details {
    margin-top: 20px;
  }
  
}
.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: block;
}
.pre-loader .load-con {
  margin: 20% auto;
  position: relative;
  text-align: center;
}
.spinner {
  margin: 50px auto 0;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}


.kv2 {
  background-image: url(../img/freeze/Slides/banner-bg2.png);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-position: right; */
  background-attachment: fixed; 
    background-position: top;
    background-size:contain;
    height: 500px;
}


.kv3 {
  background-image: url(../img/freeze/Slides/banner-bg3.png);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-position: right; */
  background-attachment: fixed; 
    background-position: top;
    background-size:contain;
    height: 500px;
}

.kv4 {
  background-image: url(../img/freeze/Slides/banner-bg4.png);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-position: right; */
  background-attachment: fixed; 
    background-position: top;
    background-size:contain;
    height: 500px;
}


.kv-service {
  background-image: url(../img/freeze/Slides/banner-service.png);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* background-position: right; */
  background-attachment: fixed; 
    background-position: top;
    background-size:contain;
    height: 300px;
}

@media screen and (max-width: 1024px) {
  .kv2 {
    background-image: url(../img/freeze/Slides/banner-bg2-800.png);
    background-attachment: fixed; 
    background-position: top;
    background-size:contain;
  }
  .kv3 {
    background-image: url(../img/freeze/Slides/banner-bg3-800.png);
    background-attachment: fixed; 
    background-position: top;
    background-size:contain;
  }

  .kv4 {
    background-image: url(../img/freeze/Slides/banner-bg4-800.png);
    background-attachment: fixed; 
    background-position: top;
    background-size:contain;
  }

  .kv-service {
    background-image: url(../img/freeze/Slides/banner-service-800.png);
    background-attachment: fixed; 
    background-position: top;
    background-size:contain;
  }

}

@media screen and (max-width: 640px) {
  .kv2 {
    background-image: url(../img/freeze/Slides/banner-bg2-m.png);
    background-attachment: fixed; 
    background-position: top;
  background-size:contain;
  }
  .kv3 {
    background-image: url(../img/freeze/Slides/banner-bg3-m.png);
    background-attachment: fixed; 
    background-position: top;
  background-size:contain;
  }
  .kv4 {
    background-image: url(../img/freeze/Slides/banner-bg4-m.png);
    background-attachment: fixed; 
    background-position: top;
  background-size:contain;
  }
  .kv-service {
    background-image: url(../img/freeze/Slides/banner-service-m.png);
    background-attachment: fixed; 
    background-position: top;
  background-size:contain;
  }

}






section .section-heading .divider:after {
  background: #fb6355;
}
section#about .about-item i.fa {
  border: 2px solid #fb6355;
  color: #fb6355;
}
section#about .about-item:hover i.fa {
  color: #ffffff;
  background: #fb6355;
}
section#about .about-item:hover h3 {
  color: #fb6355;
}
section#features {
  background: #f6f6f6;
}
section#features header h1:after {
  background: #fb6355;
}
section#features .media i.fa {
  border: 2px solid #fb6355;
  color: #fb6355;
}
section#features .media:hover i.fa {
  color: #ffffff;
  background: #fb6355;
}
section#features .media:hover h3 {
  color: #fb6355;
}
section#features .media.active i.fa {
  color: #ffffff;
  background: #fb6355;
}
section#features .media.active .media-heading {
  color: #fb6355;
}
section#reviews {
  background-color: #fff;

}
section#reviews header {
  color: #ffffff;
}
section#reviews header h1:after {
  background: #ffffff;
}
section#reviews .review-filtering .review .review-person img {
  border: 3px solid #ffffff;
}
section#reviews .review-filtering .review .review-comment {
  background: #ffffff;
}
section#reviews .review-filtering .review .review-comment h3 {
  color: #fb6355;
}
section#reviews .review-filtering .review .review-comment p span i {
  color: #fb6355;
}
section#reviews .review-filtering .review .review-comment:after {
  border-right-color: #ffffff;
}
section#reviews .review-filtering .slick-dots li button {
  background: #ffffff;
  border: 2px solid #ffffff;
}
section#reviews .review-filtering .slick-dots li.slick-active button {
  background: #fb6355;
}
section#screens header h1:after {
  background: #fb6355;
}
section#screens .slider div img {
  border: 2px solid #e5e5e5;
}
section#screens .slider div h4 {
  color: #999999;
}
section#screens .slider .slick-dots li button {
  background: #999999;
}
section#screens .slider .slick-dots li.slick-active button {
  background: #fb6355;
}
section#screens .filter a {
  border: 2px solid #cccccc;
  color: #999999;
}
section#screens .filter a:hover {
  color: #ffffff;
  background: #fb6355;
  border-color: #fb6355;
}
section#screens .filter a.active {
  color: #ffffff;
  background: #fb6355;
  border-color: #fb6355;
}
/* demo video Section */
section#demo {
  background: #f6f6f6;
}
section#demo header h1:after {
  background: #fb6355;
}
/* Get app Section */
section#getApp {
  background: url("../img/freeze/bk-freeze-ga.jpg");
}
section#getApp header {
  color: #ffffff;
}
section#getApp header h1:after {
  background: #ffffff;
}
section#getApp .platforms .media {
  border: 2px solid #ffffff;
  color: #ffffff;
}
section#getApp .platforms .media a i {
  color: #ffffff;
}
section#getApp .platforms .media a div.media-body {
  color: #ffffff;
}
section#getApp .platforms .media:hover {
  background: #ffffff;
}
section#getApp .platforms .media:hover a i,
section#getApp .platforms .media:hover a div.media-body {
  color: #fb6355;
}
/* support section */
section#support header h1:after {
  background: #fb6355;
}
section#support .media i.fa {
  border: 2px solid #fb6355;
  color: #fb6355;
}
section#support .media a {
  color: #fb6355;
}
section#support .media:hover i.fa {
  color: #ffffff;
  background: #fb6355;
}
section#support .media:hover h3 {
  color: #fb6355;
}
/* footer section */
footer {
  background: #fb6355;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #fb6355 0%, #ee4e18 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fb6355), color-stop(100%, #ee4e18));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #fb6355 0%, #ee4e18 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #fb6355 0%, #ee4e18 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #fb6355 0%, #ee4e18 100%);
  /* IE10+ */
  background: linear-gradient(-45deg, #fb6355 0%, #ee4e18 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fb6355, endColorstr=#ee4e18, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
footer .social a {
  border: 2px solid #ffffff;
}
footer .social a i {
  color: #ffffff;
}
footer .social a:hover {
  background: #ffffff;
}
footer .social a:hover i {
  color: #fb6355;
}
footer .rights {
  color: #ffffff;
  line-height: 10px;
}
footer .rights a {
  color: #ffffff;
  font-weight: 300;
  text-decoration: none;
}
.navbar-toggle {
  background-color: #CCC;
  border: 1px solid rgba(0, 0, 0, 0);
}
.btn.btn-primary {
  color: #fb6355;
  border-color: #fb6355;
}
.btn.btn-primary:hover {
  color: #ffffff;
  background: #fb6355;
  border-color: #fb6355;
}
.btn.btn-primary.inverse {
  color: #ffffff;
  border-color: #ffffff;
}
.btn.btn-primary.inverse:hover {
  color: #ffffff;
  background: #fb6355;
  border-color: #fb6355;
}
.btn.btn-default {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ffffff), color-stop(100%, #cccccc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* IE10+ */
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#cccccc, GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  color: #336799;
}
.btn.btn-default:hover {
  color: #336799;
}
form .form-control:focus {
  border-color: #fb6355;
  color: #999999;
}
@media screen and (max-width: 640px) {
  header .navbar-default .navbar-toggle:hover,
  header .navbar-default .navbar-toggle:focus {
    background: none;
  }
  header .navbar-default ul.navbar-nav li a {
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #376fa4;
  }
  header .navbar-default ul.navbar-nav li a.getApp {
    color: #ffffff;
  }
  header .navbar-default ul.navbar-nav li a:after {
    display: none;
  }
  header .navbar-default ul.navbar-nav li a:hover {
    color: #fb6355;
  }
  header .navbar-default .navbar-collapse {
    background: rgba(0, 93, 150, 0.8);
  }
  header .navbar-default.scrolled {
    background: rgba(0, 93, 150, 0.8);
  }
  header .navbar-default.scrolled ul.navbar-nav li a {
    color: #ffffff;
  }
  header .navbar-default.scrolled ul.navbar-nav li a:hover {
    color: #fb6355;
  }
}
.pre-loader {
  background: rgba(0, 93, 150, 0.8);
}


/**tables start*/

table {
	border-width: 0;
  text-align: center;
	width: 100%;
	max-width: 100%;
	font-family: "Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
}

th, td {
  color:#fff;
  font-size: 20px;
	padding: 1.5rem 3rem;
	border-bottom: 1px solid rgba(232, 232, 232, 0.5);
}
th {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  text-align: center;
	color: #ffffff;
	font-family: "Roboto Condensed","sans-serif","Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
  border-top: 1px solid rgba(232, 232, 232, 0.5);
}
td {
	/* line-height: 1.5; */
}
th:first-child, td:first-child {
	/* padding-left: 0; */
}
th:last-child, td:last-child {
	/* padding-right: 0; */
}
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}


/**tables end*/



/** 
 * ===================================================================
 * pricing section
 *
 * ------------------------------------------------------------------- 
 */

 #pricing {
	background: #EAEAED;
	padding-top: 6rem;
	padding-bottom: 5rem;
}
.pricing-content {
	margin-top: 4rem;
	max-width: 1280px;
}
.pricing-content .bgrid {
	margin-bottom: 2rem;
}
.pricing-content .price-block {
	background-color: #FFFFFF;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pricing-content .price-block .top-part,
.pricing-content .price-block .bottom-part {
	padding: 1rem 0.8rem;
}
.pricing-content .price-block .top-part {
	font-family: "Roboto Condensed","sans-serif","Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
	background: #58687b;
	color: #FFFFFF;
	padding-bottom: 1rem;
	position: relative;
}
.pricing-content .price-block .bottom-part {
	padding-top: 2.4rem;
	padding-left: 3rem;
	padding-right: 3rem;

}
.pricing-content .price-block .plan-title {
	color: #FFFFFF;
	padding-bottom: 1rem;
	/* margin-bottom: 1.2rem; */
	font-size: 3rem;
	position: relative;
}
.pricing-content .price-block .plan-title::after {
	display: block;
	background-color: rgba(255, 255, 255);
	width: 120px;
	height: 1px;
	content: '\0020';
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -60px;
}

.pricing-content .price-block .plan-title p {
	font-size: 2rem;
}

.pricing-content .price-block .plan-price {
	font-family: "Roboto Condensed","sans-serif","Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
	font-size: 4.5rem;
	line-height: 1;
	/* margin-bottom: .6rem; */
}
.pricing-content .price-block .plan-price sup {
	font-size: 2.2rem;
    /* line-height: 3.2rem; */
	/* top: -1.5rem; */
	/* margin-right: 3px; */
}
.pricing-content .price-block .price-month {
	/* margin-bottom: 1.2rem; */
  font-family: "Roboto Condensed","sans-serif","Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
	font-size: 3rem;
}
.pricing-content .price-block .price-meta {
	color: rgba(255, 255, 255);
	line-height: 1.8rem;
}
.pricing-content .price-block .button {
	color: #353F49;
	padding: 0 5rem;
	margin-left: auto;
	margin-right: auto;
}
.pricing-content .price-block .button:hover,
.pricing-content .price-block .button:focus {
	background: #58687b;
	color: #FFFFFF;
}
.pricing-content .price-block .features {
	list-style: none;
	font-family: 思源黑體 , Microsoft JhengHei, 微軟正黑體 , 蘋方黑體 , Helvetica , Arial , sans-serif , serif;
	font-size: 2rem;
	color:#fb6355;
	/* color: rgba(0, 0, 0); */
	font-weight:700;
	/* margin: .6rem 0 1.8rem 0; */
}
.pricing-content .price-block .features li {
	padding: 2rem 0;
	border-bottom: 1px solid #EAEAED;
}
.pricing-content .price-block .features li strong {
	font-size: 1.8rem;
	line-height: 3rem;
	color: #353F49;
	font-family: 思源黑體 , Microsoft JhengHei, 微軟正黑體 , 蘋方黑體 , Helvetica , Arial , sans-serif , serif;
	/* margin-right: 5px; */
}
.pricing-content .price-block .features li:last-child {
	border: none;
}
.pricing-content .primary .top-part {
	background: #fb6355;
}
/* .pricing-content .primary .top-part::before {
	content: attr(data-info);
	display: block;
	min-height: 48px;
	line-height: 48px;
	width: 75%;
	text-align: center;
	color: #FFFFFF;
	background: #38424e;
	font-family: "raleway-Medium","Noto Sans TC", "Heiti TC", 微軟正黑體, "Microsoft JhengHei";
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .15rem;
	position: absolute;
	bottom: -18px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 500;
	border-radius: 5px;
} */

/**
 * responsive:
 * pricing
 * -
 */

@media only screen and (max-width:1140px) {
	.pricing-content {
		max-width: 800px;
	}
	.pricing-content .bgrid {
		width: 50%;
		clear: none;
	}
	.pricing-content .bgrid:nth-child(2n+1) {
		clear: both;
	}
}
@media only screen and (max-width:600px) {
	.pricing-content {
		max-width: 420px;
	}
	.pricing-content .bgrid {
		width: 100% !important;
		float: none !important;
		clear: both !important;
		margin-left: 0;
		margin-right: 0;
	}
}


.highlight{
  background-color: #f8693f;
  font-size: 20px;
  font-weight: bolder;
  color: #FFFFFF;
  border: 1px solid #f8693f;
  border-radius: 20px;
  padding: 5px 20px;
  text-align: center;
  width: 50%;
}

.highlight2{
  background-color: #58687b;
  font-size: 16px;
  font-weight: bolder;
  color: #FFFFFF;
  border: 1px solid #58687b;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  width: 50%;
}


@media only screen and (max-width:600px) {

  .highlight{
    width: 100%;
    text-align: left;
  }
  .highlight2{
    width: 85%;
}
}


