/*------------------------------------------------*/
/*--------------[FEATURED SLIDER]-----------------*/
/*------------------------------------------------*/

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

#et-slider-wrapper {
	height: 845px;
	position: relative;
	background: #efefef url(../images/banner-bg.jpg) no-repeat center center;
	background-size: cover;
}

.et-slide {
	background-repeat: no-repeat;
	background-position: top center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.et-slide .container {
	padding: 110px 35px 0;
}

.et-slide .description {
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	color: #253145;
	font-size: 17px;
	float: left;
	width: 450px;
	padding-top: 130px;
	-webkit-animation-duration: .6s;
	-webkit-animation-delay: .4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .6s;
	-moz-animation-delay: .4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .6s;
	-ms-animation-delay: .4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .6s;
	animation-delay: .4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.description h2 {
	font-size: 41px;
	color: inherit;
}

.description h2 a:hover {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.95);
}

.subtitle {
	font-size: 30px;
	text-transform: uppercase;
	color: #1e1e7f;
}

.description .item {
	text-transform: uppercase;
	font-size: 16px;
	margin: 0;
	padding: 1em 0 0 1.5em;
}

.description .item li {
	float: left;
	width: 50%;
}

.featured-image {
	float: right;
	width: 650px;
	padding-top: 110px;
	-webkit-animation-duration: .6s;
	-webkit-animation-delay: .8s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .6s;
	-moz-animation-delay: .8s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .6s;
	-ms-animation-delay: .8s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .6s;
	animation-delay: .8s;
	animation-timing-function: ease;
	animation-fill-mode: both;
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}

.js .et-slide {
	display: none;
}

.js .et-slide:first-child {
	display: block;
}

.et-slider-arrows a {
	display: block;
	background-color: transparent;
	background-repeat: no-repeat;
	width: 28px;
	height: 40px;
	position: absolute;
	top: 400px;
	text-indent: -9999px;
	border: none;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
	border: none;
}

.et-slider-arrows a:hover {
	background-color: inherit;
}

#et-slider-wrapper .et-arrow-prev {
	left: 60px;
	background-image: url(../images/left-arrow.png);
}

#et-slider-wrapper .et-arrow-next {
	right: 60px;
	background-image: url(../images/right-arrow.png);
}

#et-slider-wrapper:hover .et-slider-arrows a {
	opacity: 1;
}

#et-slider-wrapper:hover .et-arrow-prev {
	left: 80px;
}

#et-slider-wrapper:hover .et-arrow-next {
	right: 80px;
}

#et-slider-controls {
	position: absolute;
	bottom: 75px;
	left: 0;
	width: 100%;
}

#et-slider-controls .et-controllers {
	width: 530px;
	float: right;
	text-align: center;
}

#et-slider-controls .et-controllers a {
	display: inline-block;
	width: 17px;
	height: 17px;
	background: transparent url(../images/slider_control.png) no-repeat;
	text-indent: -9999px;
	margin: 0 1px;
	border: none;
}

#et-slider-controls .et-controllers a:hover {
	background-color: transparent;
}

#et-slider-controls .et-controllers a.et-active-control {
	background-image: url(../images/active_slider_control.png);
}

.et-controllers a.et-active-control:hover {
	cursor: default;
}

@media only screen and (max-width: 1199px) {
	.featured-image {
		padding-top: 150px;
		width: 450px !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
	.container {
		width: 728px;
	}

	#et-slider-wrapper {
		height: 760px;
	}

	.et-slide .container {
		padding-top: 150px;
	}

	.et-slide .description {
		width: 240px !important;
		padding-top: 32px;
	}

	.description h2 {
		font-size: 25px;
	}

	.description .subtitle {
		font-size: 19px;
	}

	.et-slide .description li {
		float: none;
		width: 100%;
		font-size: 15px;
	}

	.featured-image,
	#et-slider-controls .et-controllers {
		width: 400px !important;
	}

	#et-slider-controls {
		bottom: 100px;
	}

	.et-slider-arrows a {
		top: 413px;
	}

	#et-slider-wrapper .et-arrow-prev {
		left: 0;
	}

	#et-slider-wrapper .et-arrow-next {
		right: 0;
	}

	#et-slider-wrapper:hover .et-arrow-prev {
		left: 25px;
	}

	#et-slider-wrapper:hover .et-arrow-next {
		right: 25px;
	}
}

@media only screen and (max-width: 767px) {
	.container {
		width: 480px;
	}

	#et-slider-wrapper {
		height: 800px;
	}

	.et-slide .container {
		padding-top: 110px;
	}

	.et-slide .description {
		width: 100%;
		padding-top: 22px;
		float: none;
	}

	.featured-image {
		clear: both;
		float: none;
		width: 100%;
		padding-top: 40px;
		text-align: center;
		margin: 0 auto;
	}

	#et-slider-controls .et-controllers {
		width: 100%;
		text-align: center;
	}

	#et-slider-controls {
		bottom: 60px;
	}

	.et-slider-arrows a {
		top: 312px;
	}

	#et-slider-wrapper .et-arrow-prev {
		left: 0;
	}

	#et-slider-wrapper .et-arrow-next {
		right: 0;
	}

	#et-slider-wrapper:hover .et-arrow-prev {
		left: 10px;
	}

	#et-slider-wrapper:hover .et-arrow-next {
		right: 10px;
	}

}

@media only screen and (max-width: 479px) {
	.container {
		width: 320px;
	}

	#et-slider-wrapper {
		height: 900px;
	}

	.et-slide .container {
		padding: 110px 10px 0;
	}

	.featured-image,
	#et-search-form,
	#content .wp-pagenavi .pages {
		display: none;
	}

	.et-slide .description {
		float: none;
		width: 100%;
		padding-left: 12%;
	}

	.et-slide .description h2 {
		font-size: 25px;
	}

	.et-slide .description .subtitle {
		font-size: 19px;
	}

	.et-slide .description li {
		float: none;
		width: 100%;
		font-size: 15px;
	}

	.featured-image {
		display: block;
		float: none;
		clear: both;
		width: 300px !important;
	}

}

/* map iframe 客製 */
.iframe_wrap {
	display: flex;
	justify-content: space-between;
}

.iframe_wrap div {
	width: 45%;
}

/* footer 客製 */
.page-footer {
	padding-bottom: 50px;
}

.disclaimer div span {
	margin-right: 20px;
}

.page-top {
	padding-bottom: 0;
}

@media(max-width:768px) {

	.iframe_wrap {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	.iframe_wrap div {
		width: 95%;
		margin-bottom: 20px;
	}

	.page-footer .disclaimer {
		font-size: 14px;
	}

	.disclaimer div span {
		margin-right: 0px;
	}

	.disclaimer div {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}
}