:root {
  --main-white-color: white;
  --main-black-color: black;
}
body{
	background: #ffffff;
background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
	font-family: Arial, "sans-serif", "微軟正黑體"
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}
header {
  width: 100%;
  height: 30px;
  line-height: 30px;
  position: fixed;
  top: 0;
  background-color: #5f5f5f;
  color: #fff;
  z-index: 999
 /* text-shadow: 1px 1px 1px rgba(0,0,0,0.7);*/
  /*box-shadow: 0px -10px 20px rgba(115,205,247,0.5) inset;*/
}
.name {
	color:#fff;
  padding: 0 18px;
  font-size: 16px;
}
.static {
  position: static;
}

.cover {

  background-size: 30% auto;
  background-position:top 100px center;
  background-repeat: no-repeat;
}

.owl-carousel .owl-slide {
  position: relative;
  height: 100vh;
  width: 100%;
  /*background-color: lightgray;*/
}

.owl-carousel .owl-slide-animated {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.05s;
}

.owl-carousel .owl-slide-animated.is-transitioned {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.owl-carousel .owl-slide-title.is-transitioned {
  transition-delay: 0.2s;
}

.owl-carousel .owl-slide-subtitle.is-transitioned {
  transition-delay: 0.35s;
}

.owl-carousel .owl-slide-cta.is-transitioned {
  transition-delay: 0.5s;
}

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  position: absolute;
}

.owl-carousel .owl-dots .owl-dot,
.owl-carousel .owl-nav [class*="owl-"]:focus {
  outline: none;
}

.owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid var(--main-black-color);
  transition: all 0.2s ease;
}

.owl-carousel .owl-dots .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--main-black-color);
}

.owl-carousel .owl-nav {
  left: 50%;
  top: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
}

.owl-carousel .owl-nav svg {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.owl-carousel .owl-nav button:hover svg {
  opacity: 1;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background: transparent;
}

section {
  display: none;
}




.lightbox-opened {
  background-color: #333;
  background-color: rgba(51, 51, 51, 0.9);
  cursor: pointer;
  height: 100%;
  left: 0;
  padding: 50px 24px 24px 24px;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 999;overflow:auto
}
.lightbox-opened:before {
	display: none;
  background-color: #333;
  background-color: rgba(51, 51, 51, 0.9);
  color: #eee;
  content: "x";
  font-family: sans-serif;
  padding: 6px 12px;
  position: relative;
  text-transform: uppercase;
}
.lightbox-opened img {
  box-shadow: 0 0 6px 3px #333;
  width:50%;
  max-width:400px;
}




@media screen and (max-width: 721px) {
	.cover {
	  background-size: 70% auto;
	  background-position: top 50px left 15%;
	  background-repeat: no-repeat;
	}
	h2 {
		font-size:21px;
		font-weight: normal;
	}
	.owl-slide-text {
		width:100%;
		position: absolute;
		bottom:10%;
	}
	.lightbox-opened:before {
		display: block;
	  background-color: #333;
	  background-color: rgba(51, 51, 51, 0.9);
	  color: #eee;
	  content: "x";
	  font-family: sans-serif;
	  padding: 6px 12px;
	  position: fixed;
	  text-transform: uppercase;
	}
	.lightbox-opened img {
	  box-shadow: 0 0 6px 3px #333;
	  
	}
}
@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav {
    top: 5%;
  }
  
  .owl-carousel .owl-nav svg {
    width: 24px;
    height: 24px;
  }
}
