/*google fonts 仿宋體*/
@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);
/*font-family: ‘cwTeXFangSong’, serif;*/

/*google fonts 思源黑體*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*font-family: ‘Noto Sans TC’, sans-serif;*/
/*adobe 字型 思源宋體*/
@import url("https://use.typekit.net/uvj6ngt.css");

:root {
  --white: #fff;
  --black: #000;
  --brown: #7a6a56;
  --red: #eb3341;
  --gold: #98836a;
  --goose: #ffe8c5;
  --timeline-gradient: rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%;
}

body {
  font-family: ‘Noto Sans TC’, sans-serif;
  color: var(black);
 background-color: #7a6a56;
}

a {
  color: var(--goose);
  text-decoration: none;
}

a:hover {
  color: var(--brown);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
}


/*----- Preloader ----------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: black;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--red);
  border-top-color: var(--gold);
  border-bottom-color: var(--gold);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*---------# Back to top button------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background:var(--red);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*------------# Disable AOS delay on mobile------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*------------# Header------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(122, 106, 86, 0.8);
}

#header .logo {
	top:0px;
}
#header .logo img {
  height: 30px;
	margin: 0px 0 0 20px;
	top:0;
}
@media (max-width:576px) {
	#header .logo img {
	margin: 0;
}
}
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 7px 15px;
  margin-left: 5px;
  font-size: 1.125rem;
  color: var(--black);
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: var(--black);
	color: var(--red);
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--red);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
	background: linear-gradient(to bottom, var(--brown), var(--red));
  overflow-y: auto;
  transition: 0.3s;
	text-align: center;
}
.navbar-mobile li a {
	text-align: center;
	display: block;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 1.25rem;
  color: var(--black);
	text-align: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--red);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*------------# Hero Section------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background:url("../img/hero-mainPic.png"),linear-gradient(0deg, var(--red) 0%, var(--brown) 100%);
	background-position: 150% 40px, top center;
	background-repeat: no-repeat;
	background-size: 900px, cover;
  padding: 0;
	height: 700px;
}

#hero .hero-type1 {
	width: 36%;
	margin-left: 25%;
}

#hero .hero-type2 {
	position: absolute;
	width: 400px;
	height: 400px;
	right: 2%;
	top: 40px;
}

/***************************************************
 * Generated by SVG Artista on 7/17/2024, 2:43:55 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 361.8269348144531px;
    stroke-dasharray: 361.8269348144531px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 361.8269348144531px;
  }
}

.svg-elem-1 {
  animation: animate-svg-stroke-1 5s ease-in-out 0s both,
               animate-svg-fill-1 3s ease-in-out 0.8s both;
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 91.22123136195012px;
    stroke-dasharray: 91.22123136195012px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 91.22123136195012px;
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(122, 106, 86);
  }
}

.svg-elem-2 {
  animation: animate-svg-stroke-2 5s ease-in-out 0.12s both,
               animate-svg-fill-2 3s ease-in-out 0.9s both;
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 159.3929901123047px;
    stroke-dasharray: 159.3929901123047px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 159.3929901123047px;
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-3 {
  animation: animate-svg-stroke-3 5s ease-in-out 0.24s both,
               animate-svg-fill-3 3s ease-in-out 1s both;
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 91.22123136195012px;
    stroke-dasharray: 91.22123136195012px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 91.22123136195012px;
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(122, 106, 86);
  }
}

.svg-elem-4 {
  animation: animate-svg-stroke-4 5s ease-in-out 0.36s both,
               animate-svg-fill-4 3s ease-in-out 1.1s both;
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 113.7639389038086px;
    stroke-dasharray: 113.7639389038086px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 113.7639389038086px;
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-5 {
  animation: animate-svg-stroke-5 5s ease-in-out 0.48s both,
               animate-svg-fill-5 3s ease-in-out 1.2000000000000002s both;
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 91.22123136195012px;
    stroke-dasharray: 91.22123136195012px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 91.22123136195012px;
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(122, 106, 86);
  }
}

.svg-elem-6 {
  animation: animate-svg-stroke-6 5s ease-in-out 0.6s both,
               animate-svg-fill-6 3s ease-in-out 1.3s both;
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 165.4478759765625px;
    stroke-dasharray: 165.4478759765625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 165.4478759765625px;
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-7 {
  animation: animate-svg-stroke-7 5s ease-in-out 0.72s both,
               animate-svg-fill-7 3s ease-in-out 1.4000000000000001s both;
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 91.22123136195012px;
    stroke-dasharray: 91.22123136195012px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 91.22123136195012px;
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(122, 106, 86);
  }
}

.svg-elem-8 {
  animation: animate-svg-stroke-8 5s ease-in-out 0.84s both,
               animate-svg-fill-8 3s ease-in-out 1.5s both;
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 168.41796875px;
    stroke-dasharray: 168.41796875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 168.41796875px;
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-9 {
  animation: animate-svg-stroke-9 5s ease-in-out 0.96s both,
               animate-svg-fill-9 3s ease-in-out 1.6s both;
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 91.22123136195012px;
    stroke-dasharray: 91.22123136195012px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 91.22123136195012px;
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(122, 106, 86);
  }
}

.svg-elem-10 {
  animation: animate-svg-stroke-10 5s ease-in-out 1.08s both,
               animate-svg-fill-10 3s ease-in-out 1.7000000000000002s both;
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 116.55726623535156px;
    stroke-dasharray: 116.55726623535156px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 116.55726623535156px;
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.svg-elem-11 {
  animation: animate-svg-stroke-11 5s ease-in-out 1.2s both,
               animate-svg-fill-11 3s ease-in-out 1.8s both;
}


#hero .hero-type3 {
	position: absolute;
	width: 22%;
	left: 5%;
	top: 10%;
}
#hero .fire-1 {
	width: 120px;
	position: absolute;
	bottom: 4.8rem;
	left: 55%;
	z-index: 10;
}
#hero .fire-2 {
	width: 130px;
	position: absolute;
	bottom: 10%;
	right:5%;
	z-index: 10;
}

#hero .animateda {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#hero .animatedb {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1441px) and (max-width:1920px) {
#hero {
	background-size: 65%, cover;
	background-position: 130% 50px;
	height: 800px;
}
	#hero .fire-1 {
	width: 150px;
	position: absolute;
	bottom: 5rem;
	left: 50%;
	z-index: 10;
}
#hero .fire-2 {
	width: 160px;
	position: absolute;
	bottom: 4rem;
	right:18%;
	z-index: 10;
}
	#hero .hero-type1 {
	width: 40%;
	margin-left: 20%;
}
#hero .hero-type2 {
	position: absolute;
	width: 40%;
	right: 0;
	top: 60px;
}
}

@media (max-width: 1200px) {
#hero {
  background:url("../img/hero-mainPic.png"),linear-gradient(0deg, var(--red) 0%, var(--brown) 100%);
	background-position: 420px 40px, top center;
	background-repeat: no-repeat;
	background-size: 830px, cover;
  padding: 0;
	height: 700px;
}
}
@media (max-width: 1024px) {
#hero {
	background-size: 85%, cover;
	background-position: 400px 50px, top center;
	height: 700px;
}
	#hero .hero-type1 {
	width: 40%;
	margin-left: 25%;
}
#hero .hero-type2 {
	position: absolute;
	width: 350px;
	height: 350px;
	right: 2rem;
	top: 40px;
}
#hero .fire-1 {
	width: 120px;
	position: absolute;
	bottom: 8rem;
	left: 45%;
}
#hero .fire-2 {
	width: 130px;
	position: absolute;
	bottom: 10%;
	right:5%;
	z-index: 10;
}
}
@media (max-width: 992px) {
#hero {
	background-size: 800px, cover;
	background-position: 250px 0, top center;
	height: 700px;
}
	#hero .hero-type1 {
	width: 45%;
	margin-left: 25%;
}
#hero .hero-type2 {
	position: absolute;
	width: 350px;
	height: 350px;
	right: 1rem;
	top: 10px;
}
	#hero .hero-type3 {
	position: absolute;
	width: 22%;
	left: 5%;
	top: 15%;
}
#hero .fire-1 {
	width: 120px;
	position: absolute;
	bottom: 27%;
	left: 45%;
}
#hero .fire-2 {
	width: 130px;
	position: absolute;
	bottom: 10%;
	right:10%;
	z-index: 10;
}
}
@media (max-width: 768px) {
#hero {
	background-size: 650px, cover;
	background-position: 250px 60px, top center;
	height: 600px;
}
	#hero .hero-type1 {
	width: 32%;
	margin-left: 0;
		margin-bottom: 0;
}
#hero .hero-type2 {
	position: absolute;
	width: 300px;
	height: 300px;
	right: 1rem;
	top: 0;
}
	hero .hero-type3 {
	position: absolute;
	width: 300px;
	left: 5%;
	top: 15%;
}
#hero .fire-1 {
	width: 120px;
	position: absolute;
	bottom: 4rem;
	left: 42%;
}
#hero .fire-2 {
	width: 130px;
	position: absolute;
	bottom: 2rem;
	right:10%;
	z-index: 10;
}
}
@media (max-width: 576px) {
#hero {
	background-size: cover, cover;
	height: 500px;
	background-position: 120px 50px, top center;
}
	#hero .hero-type1 {
	width: 35%;
	margin-left: 0;
		margin-bottom: 30px;
}
#hero .hero-type2 {
	position: absolute;
	width: 200px;
	height: 200px;
	right: 1rem;
	top: 1rem;
}
		#hero .hero-type3 {
	position: absolute;
	width: 40%;
	left: 15px;
	top: 12%;
}
#hero .fire-1 {
	width: 90px;
	position: absolute;
	bottom: 25%;
	left: 35%;
}
#hero .fire-2 {
	width: 100px;
	position: absolute;
	bottom: 5%;
	right:10%;
	z-index: 10;
}
	#hero .logo img {
  height: 25px;
	margin: 0px 0 0 10px;
}
}

@media (max-width: 768px) {

  #hero h2 {
    font-size: 28px;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 120px;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 20s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@media (max-width: 768px) {

  .hero-waves {
  display: block;
  width: 100%;
  height: 120px;
  position: relative;
}
}
@media (max-width: 576px) {

  .hero-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
}
}
/*------------# Sections General------------*/
section {
  padding: 80px 0 0 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  padding: 0;
  margin: 2rem 0 0 2.2rem;
  letter-spacing: -0.25rem;
  text-transform: uppercase;
	color: var(--black);
	z-index: 5;
}

.title-brown h2 {
	color: var(--gold);
}
.title-red h2 {
	color: var(--red);
}
.title-black {
	color: var(--black);
}


.fire-brown h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-brown.svg") no-repeat;
	width: 120px;
	height: 120px;
	top: -75px;
	left: -55px;
	z-index: -1;
}
.fire-red h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-red.svg") no-repeat;
	width: 120px;
	height: 120px;
	top: -75px;
	left: -55px;
	z-index: -1;
}

@media (max-width: 768px) {
	.section-title h2 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  padding: 0;
  margin: 2rem 0 0 2.2rem;
  letter-spacing: -0.25rem;
  text-transform: uppercase;
	z-index: 5;
}
	.fire-brown h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-brown.svg") no-repeat;
	width: 100px;
	height: 100px;
	top: -30px;
	left: -30px;
	z-index: -1;
}
	.fire-red h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-red.svg") no-repeat;
	width: 100px;
	height: 100px;
	top: -30px;
	left: -30px;
	z-index: -1;
}
}

@media (max-width: 576px) {
	.section-title h2 {
  font-family: source-han-serif-tw-subset, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  padding: 0;
  margin: 2rem 1rem 0 2.4rem;
  letter-spacing: -0.25rem;
  text-transform: uppercase;
	z-index: 5;
}
	.fire-brown h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-brown.svg") no-repeat;
	width: 90px;
	height: 90px;
	top: -40px;
	left: -10px;
	z-index: -1;
}
	.fire-red h2::after {
	position: absolute;
	content: " ";
	background: url("../img/fire-red.svg") no-repeat;
	width: 90px;
	height: 90px;
	top: -40px;
	left: -10px;
	z-index: -1;
}
}

/*------------# About------------*/
.about {
	color: #000;
	background: url("../img/about-type.svg") right 105% no-repeat;
	background-size: 40%;
	
	background-color: black;
}

.about .content h3 {
	margin: 3rem 2rem 5rem;
  font-weight: 700;
  font-size: 2rem;
	color: var(--red);
	font-family: source-han-serif-tw-subset, sans-serif;
	letter-spacing: .2rem;
	position: relative;
}

.about .content h3::before {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	top:-3rem;
	left: 27%;
}
.about .content h3::after {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	bottom:-3.5rem;
	left: 27%;
}

.about img {
	margin-top: -2rem;
	height: 350px;
}

@media (min-width: 1680px) {
	.about {
	background: url("../img/about-type.svg") right bottom no-repeat;
	background-size: 30%;
	
	background-color: black;
}
	.about img {
	margin-top: -3rem;
	height: 450px;
}	
}


@media (max-width:1200px) {
	.about .content h3 {
		min-height: 4.8rem;
	}
	.about img {
		margin-left: 10%;
}
}
@media (max-width: 996px) {
	.about {
  padding-top: 80px;
	color: #000;
	background: url("../img/about-type.svg") right bottom no-repeat;
	background-size: 50%;
	position: relative;
	background-color: black;
}
	.about .section-title {
		margin-right: 120px;
	}
	.about .content h3 {
	margin: 4rem 8rem 8rem 2rem;
	}
		.about img {
			position: absolute;
	height: auto;
		right: 2rem;
		top: 20%;
		z-index: 0;
	margin-top: -5rem;
}
}
@media (max-width: 768px) {
	.about {
  padding-top: 80px;
	color: #000;
	background: url("../img/about-type.svg") right bottom no-repeat;
	background-size: 80%;
	position: relative;
	background-color: black;
}
	.about .section-title {
		margin-right: 80px;
	}
	.about .content h3 {
	margin: 4rem 2rem 8rem;
  font-size: 2rem;
	color: var(--red);
	font-family: source-han-serif-tw-subset, sans-serif;
	letter-spacing: .2rem;
	position: relative;
		z-index: 3;
}

.about .content h3::before {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	top:-3rem;
	left:calc(50% - 150px);
}
.about .content h3::after {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	bottom:-3.5rem;
	left:calc(50% - 150px);
}
	.about img {
	margin-top: -5rem;
	height: auto;
		position: absolute;
		right: 5%;
		top: 20%;
		z-index: 0;
}
}

@media (max-width: 576px) {
	.about {
  padding-top: 80px;
	color: #000;
	background: url("../img/about-type.svg") right bottom no-repeat;
	background-size: 90%;
	position: relative;
	background-color: black;
}
	.about .section-title {
		margin-right: 1rem;
	}
	.about .content h3 {
	margin: 4rem 6rem 8rem 2rem;
  font-weight: 200;
  font-size: 1.6rem;
	color: var(--red);
	font-family: source-han-serif-tw-subset, sans-serif;
	letter-spacing: .2rem;
	position: relative;
		z-index: 3;
		min-height: 5.8rem;
}

.about .content h3::before {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	top:-3rem;
	left:calc(50% - 100px);
}
.about .content h3::after {
	position: absolute;
	content: " ";
	background: url("../img/about-plus.svg") no-repeat;
	width: 300px;
	height: 40px;
	bottom:-3.5rem;
	left:calc(50% - 100px);
}
	.about img {
	margin-top: -1.5rem;
	height: auto;
		position: absolute;
		right: 5%;
		top: 40%;
		z-index: 0;
		width: 25%;
}
}

/*------------# Features------------*/
.features {
	min-height: 1000px;
	background:linear-gradient(to bottom, var(--red) 0%, var(--brown) 90%);
}
@media (min-width:1740px) {
	.features-slider {
	width: 150%;
	margin-left: -50%;
	top:-5rem;
}
}
@media (min-width:1680px) and (max-width:1740px) {
	.features-slider {
	width: 130%;
	margin-left: -30%;
	top:-3rem;
}
}
@media (min-width:1500px) and (max-width:1680px) {
	.features-slider {
	width: 110%;
	margin-left: -10%;
	top:-1rem;
}
}
.swiper-wrapper {
	width: 150%;
}
.features .section-title {
	margin-left: 400px;
}
.features-item {
	margin-top: 20px;
}
.features-item img {
	border-radius: 8px;
	margin-top: 160px;
	box-shadow: 0 0 18px rgba(0,0,0,.2);
}
ul.features-group {
	padding: 0;
	margin: 0;
	position: relative;
}
ul.features-group::before {
	position: absolute;
	content: "";
	background: url("../img/features-round.svg") left center no-repeat;
	width: 800px;
	height: 800px;
	left: -85%;
	top:-100px;
	vertical-align:middle;	
}

ul.features-group li {
	padding: 0;
	margin: 1rem 0;
	list-style: none;
	position: relative;
}
ul.features-group li::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	left: -40px;
	top:0.6rem;
	border-radius: 50%;
	background-color: var(--red);
}
ul.features-group li h3 {
	font-size: 2.25rem;
	color: var(--goose);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
}
ul.features-group li p {
	font-size: 1.5rem;
	color: black;
}

ul.features-group li:first-child p {
	margin-left: 3.8rem;
}
ul.features-group li:nth-child(1) {
	margin-left: -1rem;
}
ul.features-group li:nth-child(2) {
	margin-left: 4.5rem;
}
ul.features-group li:nth-child(3) {
	margin-left: 6rem;
}
ul.features-group li:nth-child(4) {
	margin-left: 4.5rem;
}
ul.features-group li:nth-child(5) {
	margin-left: -1.5rem;
}

@media (max-width: 1400px) {
	.features .section-title {
	margin-left: 300px;
}
	ul.features-group::before {
	position: absolute;
	content: "";
	background: url("../img/features-round.svg") left center no-repeat;
	width: 800px;
	height: 800px;
	left: -99%;
	top:-100px;
	vertical-align:middle;	
}
}
@media (max-width: 1200px) {
	.features .section-title {
	margin-left: 200px;
}
	.features-item {
	margin-top: 150px;
}
	ul.features-group::before {
	position: absolute;
	content: "";
	background: url("../img/features-round.svg") left center no-repeat;
	width: 800px;
	height: 800px;
	left: -115%;
	top:-50px;
	vertical-align:middle;	
}
	ul.features-group {
	padding: 0;
	margin: 4rem 0;
	position: relative;
}

ul.features-group li:nth-child(1) {
	margin-left: -3rem;
}
ul.features-group li:nth-child(2) {
	margin-left: 4.2rem;
}
	ul.features-group li:nth-child(2) p {
		margin-left: 2rem;
	}
ul.features-group li:nth-child(3) {
	margin-left: 7rem;
}
ul.features-group li:nth-child(4) {
	margin-left: 4.9rem;
}
ul.features-group li:nth-child(5) {
	margin-left: -5.5rem;
}
}

@media (max-width: 992px) {
  .features .section-title {
	margin-left: 0;
}
		.features-item {
	margin-top: 0px;
}
	.features-item img {
	border-radius: 8px;
	margin-top: 5px;
}
	ul.features-group::before {
	position: absolute;
	content: "";
	background: none;
		background-color: black;
	width: 4px;
	height: 100%;
	left: 5%;
	top:-3rem;
	vertical-align:middle;	
}
	ul.features-group {
	padding: 0;
	margin: 4rem 0;
	position: relative;
}
	ul.features-group li:first-child p {
	margin-left: 0;
}
	ul.features-group li:nth-child(1) {
	margin-left: 3.8rem;
}
ul.features-group li:nth-child(2) {
	margin-left: 3.8rem;
}
ul.features-group li:nth-child(3) {
	margin-left: 3.8rem;
}
ul.features-group li:nth-child(4) {
	margin-left: 3.8rem;
}
ul.features-group li:nth-child(5) {
	margin-left: 3.8rem;
}
}

@media (max-width: 576px) {
	ul.features-group li h3 {
	font-size: 2rem;
}
  ul.features-group li:nth-child(1) {
	margin-left: 3rem;
}
ul.features-group li:nth-child(2) {
	margin-left: 3rem;
}
ul.features-group li:nth-child(3) {
	margin-left: 3rem;
}
ul.features-group li:nth-child(4) {
	margin-left: 3rem;
}
ul.features-group li:nth-child(5) {
	margin-left: 3rem;
}

  .features .nav-link i {
    font-size: 24px;
  }
}



/*------------# timeline------------*/
.time-line {
	background:url("../img/author-borderUp.svg") center bottom no-repeat, url("../img/timeLine-bg.jpg") bottom center no-repeat;
	background-attachment: scroll, fixed;
	background-size:100%, cover;
	min-height: 100vh;
}
* {
  box-sizing: border-box;
}
.timebox {
height:62vh;
  overflow:auto;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 45px;
  background: url("../img/timeLine-line.svg");
  top: 0;
  bottom: 0;
  left: calc(50% - 20px);
  margin-left: -3px;
}

.timeline .timeline-item {
  padding: 0px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline .timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -20px;
  background: url("../img/timeLine-point.svg") no-repeat;
  top: 25px;
  z-index: 1;
}

/* Place the timeline-item to the left */
.timeline .left {
  left: 0;
	text-align: right;
}

/* Place the timeline-item to the right */
.timeline .right {
  left: 50%;
}

/* Add arrows to the left timeline-item (pointing right) */
.timeline .left::before {
  content: " ";
  position: absolute;
  top: 34px;
	right: 2px;
  width: 65px;
  height: 2px;
  z-index: 1;
  background-color: var(--red);
}

/* Add arrows to the right timeline-item (pointing left) */
.timeline .right::before {
  content: " ";
  height: 2px;
  position: absolute;
  top: 34px;
  width:65px;
  z-index: 1;
  left: 2px;
  background-color: var(--red);
}

/* Fix the circle for timeline-item on the right side */
.timeline .right::after {
  left: -16px;
}

.timeline-item img {
	width: 160px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

.timebox-note {
	text-align: right;
	padding-right: 2rem;
	color: var(--gold);
	width: 40%;
	float: right;
}

@media (max-width:768px) {
	.timebox-note {
	text-align: right;
	padding-right: 2rem;
	color: var(--gold);
	width: 60%;
	float: right;
}
}
@media (max-width:768px) {
	.timebox-note {
	text-align: left;
	padding-right: 1rem;
		padding: 1rem;
	color: var(--gold);
	width: 100%;
	float: none;
}
}

/* The actual content */
.timeline .content {
  padding: 20px 30px;
  position: relative;
  border-radius: 6px;
	min-height: 270px;
}
.timeline .content h2 {
	font-size: 1.625rem;
	color: var(--red);
}
.timeline .content p {
	font-size: 1.625rem;
	color: black;
	text-align: left!important;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 576px) {
	.timebox {
height:60vh;
  overflow:auto;
}
  .timeline::after {
  left: 10px;
  }
  
  .timeline .timeline-item {
  width: 100%;
  padding-left: 50px;
  padding-right: 0px;
  }
  .timeline .timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -20px;
  background: url("../img/timeLine-point.svg") no-repeat;
  top: 25px;
  z-index: 1;
}
  
	.timeline .left {
	text-align: left;
}
	.timeline .left::before {
  content: " ";
  position: absolute;
  top: 34px;
	right: auto;
	left:40px;
  width: 35px;
  height: 2px;
  z-index: 1;
  background-color: var(--red);
}

/* Add arrows to the right timeline-item (pointing left) */
.timeline .right::before {
  content: " ";
  height: 2px;
  position: absolute;
  top: 34px;
  width:35px;
  z-index: 1;
  left: 40px;
  background-color: var(--red);
}

  .timeline .left::after, .timeline .right::after {
  left: 15px;
  }
  
  .timeline .right {
  left: 0%;
  }
}
@media (max-width: 768px) {
	.time-line {
	background:url("../img/author-borderUp.svg") center bottom no-repeat, url("../img/timeLine-bg.jpg") bottom center no-repeat;
	background-attachment: scroll, fixed;
	background-size:contain, cover;
	min-height: 100vh;
}
}
/*------------# author------------*/
.author {
/*
	background: url("../img/author-bg.svg") center center no-repeat;
	background-size: cover;
*/
	background-color: black;
	padding: 100px 0 0 0;
}
.author .section-title h3 {
	font-size: 2.2rem;
	color: var(--gold);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 900;
	text-align: right;
	margin-top: 1rem;
}
.author img {
	width: 80%;
	border-radius: 50%;
}

.author .content {
	margin-bottom: 5rem;
}
.author .content h3 {
	color: var(--gold);
	margin-bottom: 1rem;
}
.author .content p {
	padding: 0 0 .5rem 0;
	color: var(--gold);
	font-size: 1.5rem;
}

@media (max-width: 768px) {
	.author img {
	width: 40%;
		margin: 0 auto;
	border-radius: 50%;
}
}
/*------------# introduction------------*/
.introduction {
	background: url("../img/author-borderDown.svg") top center no-repeat,url("../img/timeLine-bg.jpg") bottom center no-repeat;
	background-attachment: scroll, fixed;
	background-size: 100%, cover;
	padding: 120px 0 80px;
	
}
.introduction .content {
	background-color: rgba(50,20,20, .3);
	box-shadow: 0 0 30px rgba(0,0,0,.3);
	padding: 30px 40px;
}
.introduction .content h3 {
	font-size: 2rem;
	color: var(--goose);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
	line-height: 3rem;
}
.introduction .content p {
	font-size: 1.625rem;
	color: var(--goose);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
	line-height: 3.6rem;
	letter-spacing: .2rem;
	text-align: center;
}
.introduction .quote-icon-left {
	font-size: 3rem;
	display: block;
}
.introduction .quote-icon-right {
	font-size: 3rem;
	display: block;
	text-align: right;
}

@media (max-width: 576px) {
	.introduction .content h3 {
	font-size: 2rem;
	color: var(--goose);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
	line-height: 3rem;
}
.introduction .content p {
	font-size: 1.6rem;
	color: var(--goose);
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
	line-height: 2.6rem;
	letter-spacing: .2rem;
	text-align: center;
}
}
/*------------# preview------------*/
.preview {
	background: linear-gradient(to bottom, var(--red), var(--brown));
	padding-bottom: 40px;
}
.preview .preview-title h3 {
	color: white;
	font-size: 2.25rem;
	font-family: source-han-serif-tw-subset, sans-serif;
	font-weight: 700;
	line-height: 3.2rem;
}
.preview .preview-img {
	text-align: center;
	margin: 2rem 0;
}
.preview .preview-img img {
	margin: 0px auto;
}

.preview .preview-description p {
	font-size: 1.5rem;
	color: white;
	
}
.preview .preview-description .link a {
	position: relative;
	color: white;
	padding: 10px 0;
	text-align: right;
	display: block;
}
.preview .preview-description .link a::after {
	position: absolute;
	content: " ";
	width: 4rem;
	height: 2px;
	background: var(--goose);
	bottom: 0;
	right: 0;
	
}
.preview-modal .modal-content {
	border-radius: 0;
	background: url("../img/tablePaper-bg.jpg");
}
.preview-modal .modal-header {
	border-bottom: none;
}
.preview-modal .modal-body {
	padding: 4rem;
}
.preview-modal h3 {
	display: inline-block;
	border:1px solid var(--red);
	font-size: 2rem;
	font-weight: 700;
	padding: .2rem 1.2rem;
	letter-spacing: .1rem;
}
.preview-modal p {
	font-size: 1.5rem;
	line-height: 2.6rem;
	margin-bottom: 2rem;
}
.preview-modal p.highlight {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--brown);
	font-family: source-han-serif-tw-subset, sans-serif;
}
@media (max-width: 576px) {
	.preview .preview-description .link a {
		margin-bottom: 3rem;
	}
	.preview-modal .modal-body {
	padding: 1rem;
}
}
/*------------# tableContent------------*/

.tableContent {
	background: linear-gradient(to bottom, var(--brown), var(--black));
	padding: 40px 0;
}
.tableContent .section-title {
	margin-left: 40px;
	margin-top: 5rem;
	margin-bottom: 30px;
}
.tableContent .tablePaper {
	background: url("../img/tablePaper-bg.jpg");
	padding: 40px;
	z-index: 5!important;
}

ul.tableContent-item {
	padding: 0;
	margin: 0 0 4rem 0;
}
ul.tableContent-item li {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: source-han-serif-tw-subset, sans-serif;
	font-size: 1.5rem;
	color: black;
	line-height: 3rem;
}
ul.tableContent-item li h3 {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--brown);
	font-family: source-han-serif-tw-subset, sans-serif;
	border-bottom: 1px solid var(--red);
	padding-bottom: 1.2rem;
}

/*------------# Cta------------*/
.cta {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(51, 30, 30) 50%, rgb(0,0,0)100%);;
  padding: 0;
	width: 100%;
  overflow: hidden;
  position: relative;
	justify-content: center;
  align-items:center;
}
.cta video {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  object-fit: cover;
	mix-blend-mode: color-dodge;
}

.cta h3 {
	margin: 120px 0;
  font-size: 2.75rem;
	font-weight: 700;
	color: var(--gold);
	font-family: source-han-serif-tw-subset, sans-serif;
	line-height: 4rem;
	letter-spacing: .2rem;
	text-align: center;
}

.cta p {
  color: #fff;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .cta h3 {
  font-size: 2.2rem;
	}
}


/*------------
# Testimonials
------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ef6603;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef6603;
}

/*------------# Sale------------*/
.sale {
	background:url("../img/sale-upBg.svg") ,linear-gradient(to bottom, var(--brown),#ba4b4a);
	background-position: top left, top;
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 80px 0 60px;
}

.sale .book-cover {
	margin-left: 20%;
	padding: 20px;
}
.sale .book-cover img {
/*	box-shadow: 0 10px 32px rgba(0,0,0,.3);*/
	filter: drop-shadow(0 6px 12px rgba(0,0,0,.3));
}
.sale .box {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.sale h3 {
  font-weight: 500;
	font-family: source-han-serif-tw-subset, sans-serif;
  font-size: 2.25rem;
  color: white;
}

.sale h4 {
  font-size: 1.5rem;
	font-weight: 300;
  color: var(--gold);
	margin: 2rem 0 2rem .2rem;
}

.sale .box .info {
	font-size: 1.125rem;
	color: var(--goose);
}
.sale .box .info span {
	font-size: 2.2rem;
	font-weight: 900;
	padding: 0 .5rem; 
	color: var(--red);
	font-family: ar-udjingxiheib5, sans-serif;
}
.sale .box .info .note {
	font-size: 0.9375rem;
	color: var(--gold);
}

ul.btn-wrap {
  padding: 0;
	margin: 2rem 0 0 0;
  text-align: center;
	list-style: none;
	width: 80%;
}

ul.btn-wrap li {
  padding: 0;
	margin: 0 0 .5rem 0;
}

ul.btn-wrap li a {
	font-size: 1.5rem;
  background: var(--red);
  text-align: center;
	display: block;
	color: white;
	transition: 0.3s;
	padding: 4px;
	border:1px solid var(--red);
}

ul.btn-wrap li a:hover {
  background: black;
	border:1px solid var(--red);
}
@media (max-width:996px) {
	.sale {
		background:url("../img/sale-upBg.svg") ,radial-gradient(circle, var(--brown)30% ,#ba4b4a 100%);
		background-position: top center,top;
	background-repeat: no-repeat;
	}
}
@media (max-width: 768px) {
	.sale .book-cover {
		margin-left: 0;
}
	.sale {
	background-position: top center, top;
	background-repeat: no-repeat;
	background-size: 150%;
	padding: 60px 0 40px;
}
	.sale h4 {
  color: var(--goose);
}
	.sale .box .info .note {
	color: var(--black);
}
	.sale .box .info span {
		filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
	}
}
@media (max-width: 576px) {
	.sale .book-cover {
	margin-left: 15%;
	width: 70%;
	
}
	.sale {
	background:url("../img/sale-upBg.svg") ,linear-gradient(to bottom, var(--brown),#ba4b4a);
	background-position: top center, top;
	background-repeat: no-repeat;
	background-size: 250%;
	padding: 40px 0 40px;
}
	.sale h4 {
  font-size: 1.5rem;
	font-weight: 300;
  color: var(--goose);
	margin: 2rem 0 2rem .2rem;
}
	ul.btn-wrap {
	width: 100%;
}
}


/*------------# Footer------------*/
#footer {
	padding: 40px;
  background:linear-gradient(to bottom, #7d2b23, #9d1e1f);
}

#footer .footer-logo {
  padding: 10px 0 5px 0;
}
#footer .footer-logo img {
  margin-bottom: 10px;
	width: 200px;
	padding-bottom: 10px;
	border-bottom: 1px solid #7b6a54;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}


#footer .footer-links {
  margin: 0;
	width: 200px;
	text-align: center;
}

#footer .footer-links a {
  color: #000;
	opacity: 0.5;
	font-size: 1.5rem;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
	width: 30%;
}

#footer .footer-links a:hover {
	opacity: 0.8;
}

#footer .footer-content h3 {
	font-size: 1rem;
}

#footer .footer-content {
  color: #736148;
}
#footer .copyright {
	font-size: 0.9375rem;
	line-height: 1.6rem;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
	#footer .footer-logo {
  padding: 10px 0 5px 0;
		margin: 0 auto;
		text-align: center;
}
	#footer .footer-links {
  margin: 0 auto;
	width: 200px;
	text-align: center;
}
	#footer .footer-content {
		text-align: center;
		margin-top: 20px;
}
	#footer .footer-content span {
		display: block;
	}
	
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}


