@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2019-04-01 11:07:50
 * @version $Id$
 */
*{
	/*outline: 1px solid red;*/
}

p{
	letter-spacing: 2px;
}


.po-a{
	position: absolute;
}

.po-r{
	position: relative;
}

.d-block{
  display: block;
}

.d-inline-block{
  display: inline-block;
}

.d-inline{
  display: inline;
}

/*flex的設定*/
.d-flex{
	display: flex;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.btn{
	font-size: 16px;
}

.padding-0{
	padding: 0;
}

/*loading*/
.load{
	width: 100vw;
	height: 100vh;
  background-image: linear-gradient(60deg,#ffffff  0%,#ffffff  100%);
	color: #4F2D1E;
	display: flex;
  justify-content: center;
  flex-flow: nowrap column;
  align-items: center;
 	min-height: 100vh;
 	z-index: 1000;
 	opacity: 1;
  position: fixed;
  top: 0;
}

.loading {
  display: flex;
  margin: 24px 0;
}

.loading__element {
  font: normal 400 2.5rem/1 微軟正黑體;
  letter-spacing: .5em;
}

@media (min-width: 576px) {
	.loading__element {
  	font: normal 600 7rem/1 微軟正黑體;
		letter-spacing: .5em;
	}
}


[class*="loading__el"] {
  /* -webkit-animation: bouncing 5s infinite ease;
          animation: bouncing 5s infinite ease; */
  -webkit-animation: bouncing 5s 1 ease;
  animation: bouncing 5s 1 ease;
}

/* .el1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.el2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.el3 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.el4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.el5 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.el6 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.el7 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.el8 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.el9 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
} */

@-webkit-keyframes bouncing {
  0%, 100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
  }
}

@keyframes bouncing {
  0%, 100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0, 0, 1);
            transform: scale3d(0, 0, 1);
  }
}

/*字體大小的class*/
.fs-zero {
  font-size: 0 !important; }

.fs-xs {
  font-size: 0.75rem !important;
  /*12px*/
  line-height: 1.25rem !important; }

.fs-sm {
  font-size: 0.875rem !important;
  line-height: 1.375rem !important;
  /*14px*/ }

.fs-normal {
  font-size: 1rem !important;
  /*16px*/
  line-height: 1.5rem !important; }

.fs-md {
  font-size: 1.25rem !important;
  /*20px*/
  line-height: 1.75rem !important; }

.fs-lg {
  font-size: 1.5rem !important;
  /*24px*/
  line-height: 2rem !important; }

.fs-xl {
  font-size: 2rem !important;
  /*32px*/
  line-height: 2.5rem !important; }

.fs-xxl {
  font-size: 2.5rem !important;
  /*40px*/
  line-height: 3rem !important; }

/*字體粗細*/
.fw-sm {
  font-weight: 200 !important; }

.fw-md {
  font-weight: 400 !important; }

.fw-lg {
  font-weight: 600 !important; }

.fw-xl {
  font-weight: 800 !important; }


.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }



/*nav-bar*/
.white-heena-green-menu .menuBar .navbar-nav li a:hover,
.white-heena-green-menu .menuBar .navbar-nav li a:focus,
.white-heena-green-menu .menuBar .navbar-nav li a:active{
	    color: #F6A901;
}


@media (max-width: 767px){
	.md-site-header.position-fixed {
		/* background-color: #000; */
    	position: absolute;
	}

	.md-site-header.position-fixed.header-position-fixed {
		background-color: rgba(255, 255, 255, 0.95);
	    position:fixed;
	}
}

.maintitle{
  position: relative;
}

.maintitle::after{
	/* content: url(../images/index/mountain-line-02.svg);
	position: absolute;
	top: 0;
	left: 50%;
  width: 50%; */
}


.subtitle{
	font-size: 30px;
}

.color-primary{
	color: #4F2D1E;
}

.color-yellow{
	color: #F6A901;
}

.color-brown{
  color: #C7A532;
}

.btn.btn-primary {
    border-color: #4F2D1E;
    color: #4F2D1E;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
	background-color: #4F2D1E;
	color: #fff;
}




.gradient-primary{
	background-position: center;
	background-image: url(../images/paper-material-03.jpg);
}

.gradient-primary::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
  opacity: .9;
  background: #4F2D1E;
  /* background-image: linear-gradient(100deg,#DA535F  0%,#F6A901  80%,rgb(255, 217, 0) 100%); */
}

/*footer*/
.back-to-top:hover {
    background: #C7A532;
}

.padding-right-18{
	padding-right: 18px;
}




