/* Welcome to Compass. Use this file to write IE specific override styles.
 * Import this file using the following HTML or equivalent:
 * <!--[if IE]>
 *   <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
 * <![endif]--> */
body {
  background-color: #F9F5EF;
}

.container-fluid {
  width: 80%;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .container-fluid {
    width: 90%;
  }
}

header.carousel .carousel-inner {
  position: relative;
}

header.carousel .carousel-inner .listMobile {
  position: absolute;
  right: -117px;
  top: 200px;
  z-index: 100;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  display: none;
}

@media only screen and (max-width: 767px) {
  header.carousel .carousel-inner .listMobile {
    display: block;
  }
}

header.carousel .carousel-inner .listMobile ul {
  padding: 0;
  margin: 0;
}

header.carousel .carousel-inner .listMobile ul li {
  margin-left: 30px;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

header.carousel .carousel-inner .listMobile ul li a {
  color: #fff;
}

header.carousel .carousel-inner .listMobile ul li a img {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

header.carousel .carousel-inner .item {
  width: 100vw;
  height: 50vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

header.carousel .carousel-inner .item .carousel-caption {
  left: 20%;
  top: 20%;
  text-align: left;
  font-size: 4.5vw;
  letter-spacing: 3px;
  font-family: 'noto sans TC';
  -webkit-animation: fadeInBottom 2s;
          animation: fadeInBottom 2s;
}

header.carousel .carousel-inner .item .carousel-caption span.shrink {
  font-size: 3vw;
}

@media only screen and (max-width: 767px) {
  header.carousel .carousel-inner .item .carousel-caption span.shrink {
    font-size: 8vw;
  }
}

header.carousel .carousel-inner .item .carousel-caption span.highlight {
  position: relative;
}

header.carousel .carousel-inner .item .carousel-caption span.highlight:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#FFFACD), color-stop(80%, #CC9F56));
  background: linear-gradient(90deg, #FFFACD, #CC9F56 80%);
  z-index: -1;
  bottom: 0;
  left: 0;
}

header.carousel .carousel-inner .item .carousel-caption img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  header.carousel .carousel-inner .item .carousel-caption {
    letter-spacing: -1px;
  }
}

@media only screen and (max-width: 767px) {
  header.carousel .carousel-inner .item {
    height: 180vw;
  }
  header.carousel .carousel-inner .item .carousel-caption {
    left: 5%;
    top: 10%;
    font-size: 12vw;
  }
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -moz-transform: translateY(10%);
    -ms-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
}

header.carousel .controls {
  position: absolute;
  top: 80%;
  right: 0;
}

header.carousel .controls .carousel-control {
  width: 3vw;
  height: 3vw;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
}

header.carousel .controls .carousel-control:hover {
  background-color: white;
}

header.carousel .controls .carousel-control.btnleft {
  transform: translate(-200%, 0);
  -webkit-transform: translate(-200%, 0);
  -moz-transform: translate(-200%, 0);
  -ms-transform: translate(-200%, 0);
}

header.carousel .controls .carousel-control.btnright {
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
}

header.carousel .controls .carousel-control img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  header.carousel .controls {
    top: 70%;
  }
  header.carousel .controls .carousel-control {
    width: 10vw;
    height: 10vw;
  }
}

@media only screen and (max-width: 400px) {
  header.carousel .controls {
    top: 80%;
  }
  header.carousel .controls .carousel-control {
    width: 10vw;
    height: 10vw;
  }
}

header.carousel .scroll {
  position: absolute;
  left: 50%;
  bottom: 5%;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

header.carousel .scroll:hover .scrollLine .line {
  -webkit-animation: scrollLine 1s .3s both 1;
          animation: scrollLine 1s .3s both 1;
}

header.carousel .scroll:hover .scrollLine:after {
  opacity: 0;
}

header.carousel .scroll:hover .scrollLine .dot {
  opacity: 0;
}

header.carousel .scroll:hover .scrollLine:before {
  -webkit-animation: dissipate .5s .4s both;
          animation: dissipate .5s .4s both;
}

header.carousel .scroll:hover .circle2 {
  -webkit-animation: dissipate2 .5s .6s both;
          animation: dissipate2 .5s .6s both;
}

header.carousel .scroll p {
  color: #fff;
  font-weight: bold;
  padding: 0;
  margin: 0;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

header.carousel .scroll p:hover {
  text-decoration: none;
}

header.carousel .scroll .scrollLine {
  position: relative;
  margin-top: 5px;
  width: 15px;
  height: 50px;
  overflow: hidden;
}

header.carousel .scroll .scrollLine:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  width: 15px;
  height: 30px;
  border: 2px solid #fff;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

header.carousel .scroll .scrollLine .dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: dots 2s both 5;
          animation: dots 2s both 5;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

header.carousel .scroll .scrollLine .line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  width: 1px;
  height: 50px;
  background-color: #fff;
}

header.carousel .scroll .scrollLine:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 50%;
}

@-webkit-keyframes scrollLine {
  0% {
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
  }
  25% {
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  75% {
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  100% {
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
  }
}

@keyframes scrollLine {
  0% {
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
  }
  25% {
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  75% {
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  100% {
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
  }
}

@-webkit-keyframes dots {
  0% {
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(-50%, 250%);
    -webkit-transform: translate(-50%, 250%);
    -moz-transform: translate(-50%, 250%);
    -ms-transform: translate(-50%, 250%);
  }
}

@keyframes dots {
  0% {
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(-50%, 250%);
    -webkit-transform: translate(-50%, 250%);
    -moz-transform: translate(-50%, 250%);
    -ms-transform: translate(-50%, 250%);
  }
}

@-webkit-keyframes dissipate {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  50% {
    opacity: 1;
    width: 7px;
    height: 7px;
  }
  100% {
    opacity: 0;
    width: 15px;
    height: 15px;
  }
}

@keyframes dissipate {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  50% {
    opacity: 1;
    width: 7px;
    height: 7px;
  }
  100% {
    opacity: 0;
    width: 15px;
    height: 15px;
  }
}

header.carousel .scroll .circle2 {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 25%);
  -webkit-transform: translate(-50%, 25%);
  -moz-transform: translate(-50%, 25%);
  -ms-transform: translate(-50%, 25%);
  border-radius: 50%;
}

@-webkit-keyframes dissipate2 {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  50% {
    opacity: 1;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
  }
  100% {
    opacity: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
  }
}

@keyframes dissipate2 {
  0% {
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  50% {
    opacity: 1;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
  }
  100% {
    opacity: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
  }
}

.newsSec {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.newsSec .gradientBall {
  width: 10vw;
  height: 10vw;
  top: 1vw;
  left: 69vw;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .newsSec .gradientBall {
    width: 30vw;
    height: 30vw;
    left: auto;
    right: -5vw;
    top: 3vw;
  }
}

.newsSec .whiteBoard {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  transform: translate(-25%, 10%);
  -webkit-transform: translate(-25%, 10%);
  -moz-transform: translate(-25%, 10%);
  -ms-transform: translate(-25%, 10%);
}

@media only screen and (max-width: 767px) {
  .newsSec .whiteBoard {
    border-radius: 0px;
    transform: translate(-4%, 10%);
    -webkit-transform: translate(-4%, 10%);
    -moz-transform: translate(-4%, 10%);
    -ms-transform: translate(-4%, 10%);
    z-index: -1;
  }
}

.newsSec h2 {
  text-align: center;
  color: #C19A5B;
  font-weight: bold;
  margin: 0;
}

.newsSec h4 {
  color: #666666;
  text-align: center;
  margin: 0;
}

.newsSec .newsBar {
  margin-top: 10px;
  padding-bottom: 70px;
  width: 140vw;
  transform: translate(-20vw, 0);
  -webkit-transform: translate(-20vw, 0);
  -moz-transform: translate(-20vw, 0);
  -ms-transform: translate(-20vw, 0);
}

@media only screen and (max-width: 992px) {
  .newsSec .newsBar {
    width: 90%;
    margin: auto;
    transform: translate(0vw, 0);
    -webkit-transform: translate(0vw, 0);
    -moz-transform: translate(0vw, 0);
    -ms-transform: translate(0vw, 0);
  }
}

.newsSec .newsBar .owl-carousel {
  position: relative;
}

.newsSec .newsBar .owl-carousel .owl-stage-outer {
  padding-bottom: 50px;
}

.newsSec .newsBar .owl-carousel .news-card {
  margin: 0 3vw;
  margin-top: 20px;
}

.newsSec .newsBar .owl-carousel .news-card > a .cardTop {
  overflow: hidden;
  border-radius: 10px;
}

.newsSec .newsBar .owl-carousel .news-card > a .cardTop .cardImg {
  width: 100%;
  height: 20vw;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

@media only screen and (max-width: 991px) {
  .newsSec .newsBar .owl-carousel .news-card > a .cardTop .cardImg {
    height: 25vw;
  }
}

@media only screen and (max-width: 767px) {
  .newsSec .newsBar .owl-carousel .news-card > a .cardTop .cardImg {
    height: 40vw;
  }
}

.newsSec .newsBar .owl-carousel .news-card > a:hover .cardTop .cardImg {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm {
  margin-top: 20px;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm h5 {
  color: #C19A5B;
  margin: 0;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm h3 {
  font-size: 18px;
  font-weight: bold;
  color: #4f4f4f;
  margin: 0;
  margin-top: 10px;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm p {
  margin: 0;
  margin-top: 10px;
  display: inline-block;
  color: #828282;
  font-size: 14px;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm .cardCta {
  float: right;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm .cardCta .btnMore {
  position: relative;
  font-weight: bold;
  color: #4f4f4f;
  display: inline-block;
  font-size: 12px;
  padding: 5px 0px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm .cardCta .btnMore:before {
  position: absolute;
  content: '';
  background-color: #C19A5B;
  width: 100%;
  height: 3px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  z-index: -1;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm .cardCta .btnMore:hover {
  text-decoration: none;
  color: #C19A5B;
}

.newsSec .newsBar .owl-carousel .news-card .cardBtm .cardCta .btnMore:hover:before {
  background-color: #C19A5B;
  width: 0%;
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 35%;
  left: 10%;
  width: 3vw;
  height: 3vw;
  outline: none;
  transform: translate(200%, -50%);
  -webkit-transform: translate(200%, -50%);
  -moz-transform: translate(200%, -50%);
  -ms-transform: translate(200%, -50%);
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-prev:hover span {
  background-color: white;
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-prev span {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  width: 3vw;
  height: 3vw;
  color: transparent;
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-prev span:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2vw;
  height: 2vw;
  background-image: url(../images/left-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 3vw;
  height: 3vw;
  outline: none;
  transform: translate(-236%, -50%);
  -webkit-transform: translate(-236%, -50%);
  -moz-transform: translate(-236%, -50%);
  -ms-transform: translate(-236%, -50%);
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-next:hover span {
  background-color: white;
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-next span {
  display: inline-block;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  width: 3vw;
  height: 3vw;
  color: transparent;
}

.newsSec .newsBar .owl-carousel .owl-nav .owl-next span:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2vw;
  height: 2vw;
  background-image: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media only screen and (max-width: 991px) {
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev {
    top: 20%;
    left: 0%;
    width: 6vw;
    height: 6vw;
    transform: translate(-70%, 0);
    -webkit-transform: translate(-70%, 0);
    -moz-transform: translate(-70%, 0);
    -ms-transform: translate(-70%, 0);
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev span {
    width: 6vw;
    height: 6vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev span:after {
    width: 4vw;
    height: 4vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next {
    top: 20%;
    right: 0%;
    width: 6vw;
    height: 6vw;
    transform: translate(70%, 0);
    -webkit-transform: translate(70%, 0);
    -moz-transform: translate(70%, 0);
    -ms-transform: translate(70%, 0);
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next span {
    width: 6vw;
    height: 6vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next span:after {
    width: 4vw;
    height: 4vw;
  }
}

@media only screen and (max-width: 767px) {
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev {
    top: 20%;
    left: 0%;
    width: 10vw;
    height: 10vw;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev span {
    width: 10vw;
    height: 10vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-prev span:after {
    width: 6vw;
    height: 6vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next {
    top: 20%;
    right: 0%;
    width: 10vw;
    height: 10vw;
    transform: translate(50%, 0);
    -webkit-transform: translate(50%, 0);
    -moz-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next span {
    width: 10vw;
    height: 10vw;
  }
  .newsSec .newsBar .owl-carousel .owl-nav .owl-next span:after {
    width: 6vw;
    height: 6vw;
  }
}

.newsSec .newsBar .owl-carousel .owl-dots {
  display: none;
}

.newsSec .newsBar .viewMoreBar .viewMore {
  text-align: center;
}

.newsSec .newsBar .viewMoreBar .viewMore a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  border: 1px solid #C19A5B;
  color: #C19A5B;
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.newsSec .newsBar .viewMoreBar .viewMore a:hover {
  color: #F9F5EF;
  background-color: #C19A5B;
  text-decoration: none;
}

.parallax {
  height: 500px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 767px) {
  .parallax {
    width: 100%;
    height: 70vw;
    background-attachment: initial;
  }
}

.witness {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 70px;
}

.witness .gradientBall {
  width: 20vw;
  height: 20vw;
  left: 65vw;
  top: -5vw;
}

@media only screen and (max-width: 767px) {
  .witness .gradientBall {
    width: 30vw;
    height: 30vw;
    left: -5%;
  }
}

.witness canvas {
  position: absolute;
  z-index: -1;
}

.witness h2 {
  text-align: center;
  color: #C19A5B;
  font-weight: bold;
  margin: 0;
}

.witness h4 {
  color: #666666;
  text-align: center;
  margin: 0;
}

.witness .container-fluid {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid {
    width: 90%;
    margin: auto;
  }
}

.witness .container-fluid .witnessSec {
  margin-top: 10px;
}

.witness .container-fluid .witnessSec .witrow:nth-child(even) {
  transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid .witnessSec .witrow:nth-child(even) {
    transform: translate(5%, 0);
    -webkit-transform: translate(5%, 0);
    -moz-transform: translate(5%, 0);
    -ms-transform: translate(5%, 0);
  }
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid .witnessSec .witrow:nth-child(odd) {
    transform: translate(-10%, 0);
    -webkit-transform: translate(-10%, 0);
    -moz-transform: translate(-10%, 0);
    -ms-transform: translate(-10%, 0);
  }
}

.witness .container-fluid .witnessSec .witrow:nth-child(1) a .wit-card {
  margin-top: 30px;
}

.witness .container-fluid .witnessSec .witrow:nth-child(3) a .wit-card {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid .witnessSec .witrow:nth-child(3) a .wit-card {
    margin-top: 0;
  }
}

.witness .container-fluid .witnessSec .witrow a .wit-card {
  position: relative;
  margin: 60px 20px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.witness .container-fluid .witnessSec .witrow a .wit-card:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 38vw;
  border: 3px solid #C19A5B;
  transform: translate(15px, 15px);
  -webkit-transform: translate(15px, 15px);
  -moz-transform: translate(15px, 15px);
  -ms-transform: translate(15px, 15px);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid .witnessSec .witrow a .wit-card:before {
    height: 120vw;
    transform: translate(15px, 15px);
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
    -ms-transform: translate(15px, 15px);
  }
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card {
  position: relative;
  overflow: hidden;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .pic {
  position: relative;
  width: 100%;
  height: 38vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 767px) {
  .witness .container-fluid .witnessSec .witrow a .wit-card .card .pic {
    height: 120vw;
  }
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .pic:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  padding-left: 40px;
  width: 100%;
  left: -20px;
  bottom: 20px;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .tag {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .tag.work {
  background: -webkit-gradient(linear, right top, left top, from(#0093E9), color-stop(144.37%, #47F5C1));
  background: linear-gradient(270deg, #0093E9 0%, #47F5C1 144.37%);
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .tag.life {
  background: -webkit-gradient(linear, right top, left top, color-stop(36.29%, #FF6C8A), to(#FFBAD3));
  background: linear-gradient(270deg, #FF6C8A 36.29%, #FFBAD3 100%);
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .tag.family {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FBAB7E), to(#F7CE68));
  background: linear-gradient(270deg, #FBAB7E 50%, #F7CE68 100%);
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content h3 {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
  color: #4f4f4f;
  margin: 0;
  margin-top: 10px;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content p {
  margin: 0;
  margin-top: 10px;
  display: inline-block;
  color: #828282;
  line-height: 21px;
  font-size: 14px;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .moreBtn {
  position: relative;
  float: right;
  font-weight: bold;
  color: #4f4f4f;
  display: inline-block;
  font-size: 12px;
  padding-bottom: 5px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.witness .container-fluid .witnessSec .witrow a .wit-card .card .content .moreBtn:before {
  position: absolute;
  content: '';
  background-color: #C19A5B;
  width: 100%;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card {
  transform: translate(-20px, -20px);
  -webkit-transform: translate(-20px, -20px);
  -moz-transform: translate(-20px, -20px);
  -ms-transform: translate(-20px, -20px);
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card:before {
  transform: translate(25px, 25px);
  -webkit-transform: translate(25px, 25px);
  -moz-transform: translate(25px, 25px);
  -ms-transform: translate(25px, 25px);
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card .card .pic:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card .card .content {
  background-color: white;
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card .card .moreBtn {
  color: #C19A5B;
}

.witness .container-fluid .witnessSec .witrow a:hover .wit-card .card .moreBtn:before {
  width: 0;
}

.witness .container-fluid .viewMoreBar .viewMore {
  text-align: center;
}

.witness .container-fluid .viewMoreBar .viewMore a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  border: 1px solid #C19A5B;
  color: #C19A5B;
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.witness .container-fluid .viewMoreBar .viewMore a:hover {
  color: #F9F5EF;
  background-color: #C19A5B;
  text-decoration: none;
}

.article {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #C19A5B;
}

.article .gradientBall {
  width: 15vw;
  height: 15vw;
  left: 80vw;
  top: -5vw;
}

@media only screen and (max-width: 767px) {
  .article .gradientBall {
    width: 30vw;
    height: 30vw;
    left: auto;
    right: -10%;
  }
}

.article .container-fluid {
  position: relative;
  width: 84%;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid {
    width: 90%;
  }
}

.article .container-fluid .content {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

.article .container-fluid .content .titleImg {
  width: 40vw;
  height: 6vw;
  background-image: url(../images/articleBar.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-30%, 0);
  -webkit-transform: translate(-30%, 0);
  -moz-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .content .titleImg {
    background-image: url(../images/articleBar_sm.png);
    width: 90vw;
    height: 55vw;
    transform: translate(0%, 0);
    -webkit-transform: translate(0%, 0);
    -moz-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
  }
}

.article .container-fluid .content .titleImg.opacity {
  opacity: 0.2;
  -webkit-animation: float 30s linear alternate infinite;
          animation: float 30s linear alternate infinite;
  width: 80vw;
  height: 12vw;
  background-image: url(../images/articleBar.png);
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .content .titleImg.opacity {
    width: 120vw;
    height: 18vw;
  }
}

.article .container-fluid .content h3 {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .content h3 {
    font-size: 20px;
  }
}

.article .container-fluid .content p {
  color: #fff;
  font-size: 17px;
  margin: 20px;
  padding-left: 15px;
  line-height: 27px;
  border-left: 3px solid #fff;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .content p {
    margin-left: 25px;
    margin-right: 10px;
  }
}

.article .container-fluid .arrowBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7vw;
  height: 7vw;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .arrowBtn {
    width: 20vw;
    height: 20vw;
    transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
  }
}

.article .container-fluid .arrowBtn svg.pic {
  position: absolute;
  stroke: #fff;
  stroke-width: 2px;
  fill: none;
  z-index: 5;
}

.article .container-fluid .arrowBtn .btnBg {
  position: absolute;
  width: 7vw;
  height: 7vw;
  background-image: url(../images/aboutcircle.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-animation: circle 50s linear both infinite;
          animation: circle 50s linear both infinite;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .arrowBtn .btnBg {
    width: 20vw;
    height: 20vw;
  }
}

.article .container-fluid .arrowBtn:hover .btnBg {
  -webkit-animation: circle 5s linear both infinite;
          animation: circle 5s linear both infinite;
}

.film {
  position: relative;
}

.film .index-video {
  margin: 0;
  padding: 0;
  height: 40vw;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .film .index-video {
    height: 50vw;
  }
}

.contact {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  width: 100%;
  background-image: url(../images/callout4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

@media only screen and (max-width: 767px) {
  .contact {
    background-attachment: initial;
  }
}

.contact .cover {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.contact h2 {
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0;
  z-index: 20;
}

.contact h4 {
  position: relative;
  color: #fff;
  text-align: center;
  margin: 0;
  z-index: 20;
}

.contact .container-fluid {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .contact .container-fluid {
    width: 90%;
  }
}

.contact .container-fluid .flexRow {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (max-width: 767px) {
  .contact .container-fluid .flexRow {
    margin-top: 30px;
  }
}

.contact .container-fluid .flexRow .flexBox > a {
  text-decoration: none;
}

.contact .container-fluid .flexRow .flexBox > a:hover .contactBox {
  background-color: #C19A5B;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.contact .container-fluid .flexRow .flexBox > a:hover .contactBox .left i {
  color: #fff;
}

.contact .container-fluid .flexRow .flexBox > a:hover .contactBox .right h5 {
  color: #fff;
}

.contact .container-fluid .flexRow .flexBox > a .contactBox {
  position: relative;
  background-color: #fff;
  z-index: 20;
  padding: 10px 20px;
  margin: 10px;
  margin-top: 30px;
  border-radius: 10px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

@media only screen and (max-width: 767px) {
  .contact .container-fluid .flexRow .flexBox > a .contactBox {
    margin-top: 10px;
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}

.contact .container-fluid .flexRow .flexBox > a .contactBox .left i {
  font-size: 36px;
  color: #C19A5B;
}

.contact .container-fluid .flexRow .flexBox > a .contactBox .right {
  margin-left: 10px;
}

.contact .container-fluid .flexRow .flexBox > a .contactBox .right h5 {
  color: #C19A5B;
  font-weight: bold;
  font-size: 18px;
}

.contact .container-fluid .flexRow .flexBox > a .contactBox .right h6 {
  color: #666666;
}

@media only screen and (max-width: 767px) {
  .contact .container-fluid .flexRow .flexBox > a .contactBox .right {
    margin-left: 0;
  }
}

.gradientBall {
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#FFFACD), color-stop(144.37%, #CC9F56));
  background: linear-gradient(90deg, #FFFACD 0%, #CC9F56 144.37%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-animation: circle 5s linear both infinite;
          animation: circle 5s linear both infinite;
}

@-webkit-keyframes circle {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}

@-webkit-keyframes float {
  0% {
    transform: translate(-40%, 0);
    -webkit-transform: translate(-40%, 0);
    -moz-transform: translate(-40%, 0);
    -ms-transform: translate(-40%, 0);
  }
  100% {
    transform: translate(-20%, 0);
    -webkit-transform: translate(-20%, 0);
    -moz-transform: translate(-20%, 0);
    -ms-transform: translate(-20%, 0);
  }
}

@keyframes float {
  0% {
    transform: translate(-40%, 0);
    -webkit-transform: translate(-40%, 0);
    -moz-transform: translate(-40%, 0);
    -ms-transform: translate(-40%, 0);
  }
  100% {
    transform: translate(-20%, 0);
    -webkit-transform: translate(-20%, 0);
    -moz-transform: translate(-20%, 0);
    -ms-transform: translate(-20%, 0);
  }
}

.error {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

.error .gradientBall {
  width: 20vw;
  height: 20vw;
  left: 65vw;
  top: -5vw;
}

@media only screen and (max-width: 767px) {
  .error .gradientBall {
    width: 30vw;
    height: 30vw;
    left: -5%;
  }
}

.error canvas {
  position: absolute;
  z-index: -1;
}

.error .errorSec {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}

.error .errorSec h2 {
  text-align: center;
  color: #C19A5B;
  font-weight: bold;
}

.error .errorSec h4 {
  color: #666666;
  text-align: center;
}
/*# sourceMappingURL=index.css.map */