@charset "utf-8";
/* CSS Document */

/* GENERAL STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.uk-overlay-panel {
	width: 20%;
	background:rgba(0, 0, 0, .35);
	left: auto;
}

.uk-position-top {
	top: 15px;
}

.caption {
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

h3 {
	font-weight: bold;
	line-height: 1.2em;
	text-transform: uppercase;
}

.uk-overlay-panel a:not([class]) {
	text-decoration: none;
	padding: 7px 10px;
	background: #8E001C;
	text-transform: capitalize;
	display: inline-block;	
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
	.uk-overlay-panel {
		left: 0;
		width: 100%;
		top: auto;
		padding: 15px 10px;
		box-sizing: border-box;
	}

	.uk-overlay-panel > img {
		display: none;
	}

	.caption {
		position: static;
		transform: none;
	}

	p {
		margin: 10px 0;
	 }
}

/*智慧管家 Start*/
.banner_top {
	position:relative;
	margin: 18% 0% 0% 0%;
}
.banner_bg {
    width: 100%;
    background: url("../img/about/about_banner.png");
    height: 393px;
    position: absolute;
    z-index: 1;
}
.banner_clear {
    clear: both;
    height: 470px;
}

.photo {
    width: 60%;
    margin: -11% 5% 0% 0%;
    right: 0;
    position: absolute;
    z-index: 2;
}
/*.photo_img {
	width: 80%;
}*/
/*智慧管家 End*/

/* 團體、紓壓課程樣式 Start */
/* 分隔線 */
.is-divider {
    height: 3px;
    display: block;
    background-color: rgba(0,0,0,0.1);
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px;
	margin-left: auto;
    margin-right: auto;
}

/* blog-area */
.blogs {
    padding: 20px 0;
}
.blogs a {
	text-decoration: none;
}
.blogs:after {
    content: '';
    display: block;
    clear: both;
}
.blog-area {
    background: url(../images/bg-building.jpg) repeat-x;
    padding-bottom: 30px;
    background-position: bottom;
    animation-name: motion2;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: 100%;
}
.blogs-item {
    width: calc(100%/3 - 30px);
    float: left;
    margin: 0 15px 30px;
    transition: all 0.25s;
}
.blog-img .blog-time {
    position: absolute;
    height: 50px;
    width: 50px;
    background: #fb8f50;
    top: 10px;
    left: 10px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    margin: 0;
}
.blog-img .blog-time .blog-month {
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.blog-img .blog-time .blog-date {
    font-size: 2.2rem;
    line-height: normal;
    font-weight: 600;
}
.blog-img {
    position: relative;
}
.blog-img img {
    max-width: 100%;
    height: auto;
}
.blog-detail {
    padding: 20px 25px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    -webkit-transition: border .4s;
    -moz-transition: border .4s;
    -ms-transition: border .4s;
    transition: border .4s;
    background: #fff;
    z-index: 0;
}
.blogs-item:hover .blog-detail:after {
    left: 0;
    bottom: 0;
    -webkit-transform: scale(15) translateZ(0);
    -moz-transform: scale(15) translateZ(0);
    -ms-transform: scale(15) translateZ(0);
    -o-transform: scale(15) translateZ(0);
    transform: scale(15) translateZ(0);
}
.blog-detail h4 {
    font-size: 1.8rem;
	color: #202020;
    line-height: 30px;
    text-transform: capitalize;
	text-align: center;
    font-weight: 500;
    margin: 0;
}
.blog-detail p.text-justify {
    line-height: 25px;
    font-size: 1.6rem;
    letter-spacing: .5px;
    color: #878787;
    margin: 0;
	text-align: justify;
}
.blog-detail p.text-center {
    line-height: 25px;
    font-size: 1.6rem;
    letter-spacing: .5px;
    color: #878787;
    margin: 0;
	text-align: center;
}
/*
.blog-detail ul li a {
    color: #676767;
    text-decoration: none;
}
.blog-detail ul li {
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
    padding-right: 10px;
    display: inline-block;
}
.blog-detail ul {
    list-style: none;
    padding: 0;
}
.blog-detail ul li:last-child {
    border: 0;
    padding-right: 0;
}
*/
/* 濾鏡效果 */
.blogs-item .blog-img img {
    /*filter: grayscale(1);*/
    -webkit-filter: blur(.8px);
}
.blogs-item:hover .blog-img img {
    /*filter: grayscale(0);*/
    -webkit-filter: blur(0px);
}
/* 閱讀更多按鈕 */
.read-more-btn {
    text-align: center;
    padding: 10px 0;
}
.read-more-btn a {
    padding: 10px 25px;
    display: inline-block;
    color: #666;
    border: 1px solid #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 3px 0 transparent;
    transition: 0.3s ease;
}
.read-more-btn a:hover {
    background: #5745ae;
    border-color: #5745ae;
    color: #fff;
    box-shadow: 0 3px 0 #3c377b;
    text-decoration: none;
}
/* end */
.heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}
.heading h4 {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    color: #3c377b;
    padding: 5px 0;
}
.heading h4:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 150px;
    background: #ffbe00;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}
.heading h4:after {
    content: '';
    height: 3px;
    width: 50px;
    background: #3c377b;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.heading p {
    color: #878787;
}
/* hover */
.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    /*box-shadow: 0 0 1px transparent;*/
    box-shadow: 0 3px 3px -4px rgba(0,0,0,0.16), 0 3px 3px rgba(0,0,0,0.23);
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
	padding: 0;
}
.hvr-float-shadow:active, .hvr-float-shadow:focus, .hvr-float-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    /*background: -webkit-radial-gradient(center, ellipse, rgba(0,0,0,.35) 0, transparent 80%);
    background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0, transparent 80%);*/
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.hvr-float-shadow:active:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

/* media */
@media (max-width:991px) {
	.blogs-item {
		width: calc(100%/2 - 30px);
		margin: 0 15px 30px;
	}
}

/* Small devices (Mobile, <768px) */
@media (max-width:767px) {
	.blogs-item {
		width: 100%;
		margin: 0 auto 30px;
		max-width: 470px;
		display: block;
		float: none;
	}
	.read-more-btn {
		padding: 0 0 10px;
	}
	.banner_bg {
		height: 283px;
	}
	.photo {
		width: 100%;
    	margin: -11% 0 0 0;
	}
	.photo_img {
/*		width: 90%;*/
/*		margin: -11% 0 0 0;*/
	}
	.img-responsive {
		max-width: 80%;
		margin: auto;
	}
	.h3-title {
		text-align: center
	}
	.icon-location, .icon-tel {
		margin: 1% 2% 0 15%;
	}
}

@media (max-width:400px) {
	.blog-detail {
		padding: 20px;
	}
}

/* 課程介紹 */
.h1, h1 {
    font-size: 2.4rem;
    line-height: 1.3;
}
.post {
    margin: 0 0 30px;
}
.article-inner.has-shadow {
    background-color: #fff;
}
.row-box-shadow-1 .col-inner, .row-box-shadow-1-hover .col-inner:hover, .box-shadow-1, .box-shadow-1-hover:hover {
    box-shadow: 0 1px 3px -2px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.article-inner {
    transition: opacity .3s, box-shadow .5s, transform .3s;
}
header, #header-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.article-inner.has-shadow .entry-header-text-top {
    padding-top: 1.5em;
}
.article-inner.has-shadow .entry-content, .article-inner.has-shadow footer.entry-meta, .article-inner.has-shadow .entry-header-text, .article-inner.has-shadow .author-box {
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.entry-header-text.text-center {
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.entry-header-text-top {
    padding-top: 0;
}
.entry-header-text {
    padding: 1.5em 0 1.5em;
}
.text-center {
    text-align: center;
}
.is-xsmall {
    font-size: 1.2rem;
}
.is-xsmall a {
	color: #fb8f50;
	text-decoration: none;
}
.is-xsmall a:hover, .is-xsmall a.remove:hover, .is-xsmall a.icon-circle:hover {
    color: #000;
}
.is-xsmall a:active, .is-xsmall a:hover {
    outline-width: 0;
}
.is-uppercase, .uppercase {
    line-height: 1.2;
    text-transform: uppercase;
}
.uppercase, h6, th, span.widget-title {
    line-height: 1.05;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.article-inner.has-shadow .entry-content, .article-inner.has-shadow footer.entry-meta, .article-inner.has-shadow .entry-header-text, .article-inner.has-shadow .author-box {
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.entry-content {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
img.size-full.alignnone {
    margin-bottom: 2em;
}
img {
    transition: opacity 1s;
    opacity: 1;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
img {
    border-style: none;
}
pre, blockquote, form, figure, p, dl, ul, ol {
    margin-bottom: 1.3em;
}
.article-inner.has-shadow .entry-content, .article-inner.has-shadow footer.entry-meta, .article-inner.has-shadow .entry-header-text, .article-inner.has-shadow .author-box {
    padding-left: 1.5em;
    padding-right: 1.5em;
}
footer.entry-meta {
    font-size: 1.2rem;
    border-top: 1px solid #ececec;
    border-bottom: 2px solid #ececec;
    padding: .5em 0 .6em;
}
footer.entry-meta a {
	color: #fb8f50;
	text-decoration: none;
}
.bb {
    border-bottom: 1px solid #ececec;
}
.bt {
    border-top: 1px solid #ececec;
}
.flex-row {
	width: 100%;
    -js-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}
.text-left {
    text-align: left;
}
.lazy-icons i[class^="icon-"] {
    visibility: hidden;
}
.lazy-icons i[class^="icon-"] {
    visibility: visible !important;
}
.next-prev-nav i {
    font-size: 1.75rem;
    margin: 0 10px !important;
    top: -1px;
    vertical-align: middle;
}
.links>li>a:before, i[class^="icon-"], i[class*=" icon-"] {
    font-family: 'fl-icons' !important;
    speak: none !important;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    position: relative;
    line-height: 1.2;
}
.icon-angle-left:before {
    content: "\f104";
	font-family: "FontAwesome", "Font Awesome 5 Free", 'Microsoft JhengHei', ' Source Sans Pro', sans-serif, tinymce-small, 'tinymce' !important;
}
.flex-col {
    max-height: 100%;
}
.next-prev-nav .flex-col+.flex-col {
    border-left: 1px solid #ececec;
}
.next-prev-nav .flex-col {
    padding: .7em 0;
}
.text-right {
    text-align: right;
}
.icon-angle-right:before {
    content: "\f105";
	font-family: "FontAwesome", "Font Awesome 5 Free", 'Microsoft JhengHei', ' Source Sans Pro', sans-serif, tinymce-small, 'tinymce' !important;
}

.nav-previous a:hover, .nav-previous a.remove:hover, .nav-previous a.icon-circle:hover {
    color: #000;
	text-decoration: none;
}
.nav-previous a:active, .nav-previous a:hover {
    outline-width: 0;
}
.nav-next a:hover, .nav-next a.remove:hover, .nav-next a.icon-circle:hover {
    color: #000;
	text-decoration: none;
}
.nav-next a:active, .nav-next a:hover {
    outline-width: 0;
}
@media screen and (min-width: 850px)
.large-10 {
    max-width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
}

.col, .gallery-item, .columns {
    position: relative;
    margin: 0;
    padding: 0 15px 30px;
    width: 100%;
}

/* 團體、紓壓課程樣式 End */