@charset "utf-8";
/*-------- CSS default setting: START ----------*/
body {
  background-color: #dcd5cd;
}
body a,
body a:link,
body a:active,
body a:hover,
body a:visited {
  text-decoration: none;
  outline: none;
}
body button,
body button:link,
body button:active,
body button:hover,
body button:visited {
  text-decoration: none;
  outline: none;
}
body .container {
  margin-bottom: 0;
}
body img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}
body figure {
  margin-bottom: 0;
}
body .font-white {
  color: #ffffff;
}
body .bg-dark-color {
  background-color: #cdc4bb;
}
body .max-w650 {
  max-width: 650px;
}
body .max-w600 {
  max-width: 600px;
}
body .max-w960 {
  max-width: 960px;
}
body .white {
  color: #ffffff;
}
body .opacity-85 {
  opacity: 0.85;
}
body .opacity-90 {
  opacity: 0.9;
}
body .link-color {
  color: #765050;
}
body .link-color:hover {
  color: #5e3d3d;
}
body .color-light {
  color: #8b8181;
}
body p.link-color {
  color: #765050;
}
body p.link-color:hover {
  color: #5e3d3d;
}
body form.contact-form input,
body form.contact-form select,
body form.contact-form textarea,
body form.contact-form option {
  background-color: #f2efed;
  color: #585050;
  font-size: 0.9em;
}
body form.contact-form button.btn-style-1 {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
body form.contact-form input:active,
body form.contact-form select:active,
body form.contact-form textarea:active,
body form.contact-form option:active {
  background-color: #f2efed;
  color: #585050;
  outline: none;
}
body form.contact-form input:focus,
body form.contact-form select:focus,
body form.contact-form textarea:focus,
body form.contact-form option:focus {
  background-color: #f2efed;
  color: #585050;
  outline: none;
}
body .form-control:focus {
  border-color: #a09393;
  outline: none;
  box-shadow: none;
}
body ul.group-list-circle {
  padding-left: 1.3em;
  color: #585050;
}
body ul.group-list-circle li {
  list-style-type: circle;
  color: #585050;
}
/*----------------CSS default setting: END----------------------------*/
/*-----------------------  Font Default: START   --------------------------*/
body h1 {
  font-size: 1.3em;
  letter-spacing: 2px;
  font-weight: 600;
  color: #615a54;
  margin-top: 0.5em;
  margin-bottom: 0.8em;
  transition: all 0.3s;
}
body h1 span {
  font-size: 1.5em;
  color: #615a54;
}
body h1.banner-h1 {
  font-size: 1.3em;
  letter-spacing: 2px;
}
body h2 {
  font-size: 1.1em;
  line-height: 100%;
  letter-spacing: 2px;
  color: #615a54;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 12px;
}
body h3 {
  font-size: 0.91em;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 2px;
  color: #615a54;
  margin-top: 12px;
  margin-bottom: 12px;
}
body p {
  color: #585050;
  line-height: 190%;
  font-size: 0.9em;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0.5em 0;
}
body p.color-light {
  color: #8b8181;
}
body a {
  font-size: 0.9em;
  color: #765050;
  line-height: 200%;
  letter-spacing: 2px;
}
body a:hover {
  color: #5e3d3d;
}
body a:hover h1,
body a:hover h2,
body a:hover h3,
body a:hover h4,
body a:hover p {
  color: #49423c;
}
body section ul li {
  font-size: 1em;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
body td,
body li,
body div,
body p,
body input,
body select,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body button {
  font-family: "Palatino Linotype", Arial, Verdana, Tahoma, Helvetica, "LiSong Pro", "新細明體", PMingLiU, "Microsoft JhengHei", "PingFang SC", "Lantinghei SC";
}
body hr {
  border-top: 1px solid #B6AFA7;
}
body hr.dashed {
  border-top: 1px dashed #B6AFA7;
}
body button p {
  margin-top: 0;
  margin-bottom: 0;
}
/*-----------------------  Font Default: END   ----------------------------*/
/* Container:START*/
.container {
  max-width: none;
}
.contact-content{
  min-height: 500px;
}
.container.max-w800 {
  max-width: 800px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
/* Container:END*/
/* Preloader:START */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-wrapper {
  display: block;
  position: relative;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.status {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #615a54;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 1.2s linear infinite;
  animation: spin 1.2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Preloader:END */
/* Button:START */
button.btn-style-1 {
  background-color: rgba(255, 255, 255, 0);
  outline: none !important;
  border-radius: 3px;
  /*padding-left: 2em;
    padding-right: 2em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;*/
  padding: 0.6em 1.5em;
  /*tansition*/
  border: 1px solid #686159;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  cursor: pointer;
}
button.btn-style-1 p {
  line-height: 130%;
}
button.btn-style-1 p span {
  margin-left: 0.3em;
}
button.btn-style-1:hover {
  outline: none !important;
  background-color: #a3988e;
  border: 1px solid #a3988e;
  color: #ffffff;
}
button.btn-style-1:hover p {
  color: #ffffff;
}
button.btn-style-1:active {
  outline: none !important;
}
button.btn-style-1:focus {
  outline: none !important;
}
/* Button:END*/
/* Arrow: START */
figure.custom-arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.3s;
}
figure.custom-arrow img {
  width: 3em;
  height: 3em;
}
figure.custom-arrow.custom-arrow-prev {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
figure.custom-arrow.custom-arrow-prev:hover {
  left: -0.5em;
}
figure.custom-arrow.custom-arrow-next {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}
figure.custom-arrow.custom-arrow-next:hover {
  right: -0.5em;
}
/* Arrow: END */
/* slider-group: START*/
.slider-group .slider-tile.with-tile-bg {
  background-color: #DCD5CD;
}
.slider-group .slick-slide {
  padding: 0 8px;
}
.slider-group div.slider-tile.with-tile-bg {
  padding: 0.5em;
}
.slider-group div.slider-tile.with-tile-bg h2 {
  font-size: 1em;
}
.slider-group div.slider-tile.with-tile-bg p {
  font-size: 0.9em;
}
.slider-group.pr-mobile-20pct .slick-list {
  padding-right: 20%;
}
.slick-slide,
.slick-slide * {
  outline: none !important;
}
/* no padding slider*/
.slider-group.no-padding .slick-slide {
  padding: 0;
}
.slider-group.no-padding div.slider-tile.with-tile-bg {
  padding: 0;
}
/*arrow button*/
.slider-group figure.custom-arrow {
  display: none;
}
@media only screen and (min-width: 992px) {
  .slider-group figure.custom-arrow.custom-arrow-prev {
    left: -5em;
  }
  .slider-group figure.custom-arrow.custom-arrow-prev:hover {
    left: -5.5em;
  }
  .slider-group figure.custom-arrow.custom-arrow-next {
    right: -5em;
  }
  .slider-group figure.custom-arrow.custom-arrow-next:hover {
    right: -5.5em;
  }
  .carousel-container {
    padding-left: 5em;
    padding-right: 5em;
  }
  .slider-group.pr-mobile-20pct .slick-list {
    padding-right: 0;
  }
}
/* slider-group: END*/
/* group item: START */
.group-item {
  max-width: 24em;
  display: inline-block;
}
/* group item: END */
/* article style : START*/
article.content-block {
  padding: 0.2em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  article.content-block {
    padding: 0.2em;
  }
}
@media only screen and (min-width: 992px) {
  article.content-block {
    padding: 0.2em;
  }
}
@media only screen and (min-width: 1200px) {
  article.content-block {
    padding: 0 1.5em;
  }
}
/* article style : END*/
/* contact page : START*/
.contact-content p {
  display: inline-block;
  float: left;
}
/* contact page : END*/
body header {
  /*default font base*/
  font-size: 16px;
  background-color: #F6F3F1;
  border-bottom: 2px solid #a09393;
}
body header nav.hdr-navbar {
  padding: 0;
}
body header nav.hdr-navbar div.hdr-mob-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
body header nav.hdr-navbar div.hdr-mob-head a.navbar-brand {
  padding-top: 0.1em;
  padding-bottom: 0.2em;
  padding-left: 0.5em;
}
body header nav.hdr-navbar div.hdr-mob-head a.navbar-brand img.logo {
  width: 100%;
  max-width: 10em;
}
body header nav.hdr-navbar div.hdr-mob-head button.hdr-menu-btn {
  outline: none;
  border: none;
  transform: scale(0.65);
}
body header nav.hdr-navbar div.hdr-mob-head button.hdr-menu-btn span.hamburger-box span.hamburger-inner {
  width: 30px;
  height: 2px;
  background-color: #868686;
  top: 3px;
}
body header nav.hdr-navbar div.hdr-mob-head button.hdr-menu-btn span.hamburger-box span.hamburger-inner:before {
  width: 30px;
  height: 2px;
  background-color: #868686;
}
body header nav.hdr-navbar div.hdr-mob-head button.hdr-menu-btn span.hamburger-box span.hamburger-inner:after {
  width: 30px;
  height: 2px;
  background-color: #868686;
}
body header nav.hdr-navbar div.hdr-menu-content {
  background-color: #dfd7d3;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item {
  border-bottom: 1px solid #cec1bb;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item a.nav-link {
  color: #615a54;
  text-align: center;
  font-size: 0.91em;
  letter-spacing: 1px;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle span {
  padding-left: 1em;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu {
  background-color: rgba(255, 255, 255, 0);
  border: none;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item {
  text-align: center;
  color: #615a54;
  font-size: 0.91em;
  letter-spacing: 1px;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #332d2d;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:active {
  background-color: rgba(255, 255, 255, 0);
  color: #332d2d;
}
body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0);
  color: #332d2d;
}
@media only screen and (min-width: 992px) {
  body header {
    border-bottom: 1px solid #a09393;
  }
  body header nav.hdr-navbar {
    min-height: 65px;
    max-width: 960px;
    margin: 0 auto;
  }
  body header nav.hdr-navbar div.hdr-mob-head {
    width: auto;
  }
  body header nav.hdr-navbar div.hdr-mob-head button.hdr-menu-btn {
    display: none;
  }
  body header nav.hdr-navbar div.hdr-menu-content {
    background-color: rgba(255, 255, 255, 0);
    padding-right: 1em;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav {
    justify-content: flex-end;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item {
    border-bottom: none;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item a.nav-link.dropdown-toggle span {
    padding-left: 0;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu {
    background-color: #ebebeb;
    border: none;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item {
    text-align: center;
    color: #615a54;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #332d2d;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:active {
    background-color: rgba(255, 255, 255, 0);
    color: #332d2d;
  }
  body header nav.hdr-navbar div.hdr-menu-content ul.navbar-nav li.nav-item div.dropdown-menu a.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0);
    color: #332d2d;
  }
}
@media only screen and (min-width: 1200px) {
  body header nav.hdr-navbar {
    max-width: 1140px;
  }
}
body footer {
  /*default font base*/
  font-size: 16px;
  background-color: #c2b5a9;
}
body footer p {
  text-align: center;
  font-size: 0.8em;
}
/* -----------------Mobile--------------------------------------*/
body {
  /*all section style*/
  /*individual style*/
}
body section.section-style {
  font-size: 16px;
}
body section.homepage-banner-sec {
  display: block;
  position: relative;
  min-height: 300px;
}
body section.homepage-banner-sec div.container-wide {
  /*Carousel Slider*/
}
body section.homepage-banner-sec div.container-wide div.banner-slider-area {
  /*item*/
}
body section.homepage-banner-sec div.container-wide div.banner-slider-area div.slider-block {
  min-height: 300px;
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
body section.homepage-banner-sec div.container-wide div.banner-slider-area div.slider-block div.title-box {
  padding: 0 1em;
}
body section.homepage-banner-sec div.container-wide div.banner-slider-area div.slider-block div.title-box h1 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
body section.homepage-faculty-sec .container {
  max-width: 100%;
}
body section.banner-sec {
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center center;
}
body section.nav-sec {
  margin-top: 0.6em;
}
body section.nav-sec p {
  font-size: 0.9em;
}
body section.nav-sec p.dot {
  padding-left: 0.2em;
  padding-right: 0.2em;
}
/* -----------------Pad--------------------------------------*/
@media only screen and (min-width: 768px) {
  body {
    /*all section style*/
    /*individual style*/
  }
  body section.homepage-banner-sec {
    min-height: 500px;
  }
  body section.homepage-banner-sec div.container-wide {
    /*Carousel Slider*/
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area {
    /*item*/
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area div.slider-block {
    min-height: 500px;
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area div.slider-block div.title-box h1 {
    margin-bottom: 0.3em;
  }
  body section.banner-sec {
    height: 430px;
  }
  body section.nav-sec p {
    font-size: 0.9em;
  }
}
/*---------------Desktops and laptops-------------------------*/
@media only screen and (min-width: 992px) {
  body {
    /*all section style*/
    /*individual style*/
  }
  body section.homepage-banner-sec div.container-wide {
    /*Carousel Slider*/
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area {
    /*item*/
  }
  body section.homepage-faculty-sec .container {
    max-width: 960px;
  }
  body section.homepage-news-sec div.news-block a:hover figure.custom-arrow-next {
    right: -0.5em;
  }
}
/*---------------Desktops-1200--------------------------------*/
@media only screen and (min-width: 1200px) {
  body {
    /*all section style*/
    /*individual style*/
  }
  body section.homepage-banner-sec div.container-wide {
    /*Carousel Slider*/
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area {
    /*item*/
  }
  body section.homepage-faculty-sec .container {
    max-width: 1140px;
  }
}
/*---------------Desktops-1920--------------------------------*/
@media only screen and (min-width: 1920px) {
  body {
    /*all section style*/
    /*individual style*/
  }
  body section.homepage-banner-sec div.container-wide {
    /*Carousel Slider*/
  }
  body section.homepage-banner-sec div.container-wide div.banner-slider-area {
    /*item*/
  }
}
