﻿/*
Theme Name: Kiddie
Theme URI: http://www.zoutula.com/themes/kiddie
Author: Zoutula
Author URI: http://www.zoutula.com
Description: Kiddie is a fully responsive WordPress theme best suitable for kindergarten, child care center, preschool or nursery, school or child related project.
Version: 2.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kiddie
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-menu, editor-style, full-width-template, translation-ready

Kiddie is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Header
    5.1. Logo
6.0 Navigation
    6.1 Links
    6.2 Menus
7.0 Accessibility
8.0 Alignments
9.0 Clearings
10.0 Widgets
11.0 Content
    11.1 Main container
    11.2 Posts and pages
    11.3 Asides
    11.4 Comments
12.0 Footer
13.0 Infinite scroll
14.0 Media
    14.1 Captions
    14.2 Galleries
15.0 Revolution slider custom navigation
16.0 Contact page
17.0 404 Page
18.0 Pricing plans
19.0 Staff listing page
20.0 Courses listing page
21.0 Misc
--------------------------------------------------------------*/

@import url('font-awesome.min.css'); 

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}

html, html a {
    -webkit-font-smoothing: antialiased !important;
    text-decoration: none !important;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
    border-bottom: 1px solid #e8e8e8;
}

caption,
td {
    text-align: left;
    border-top: 1px solid #e8e8e8;
    padding: 6px 10px 6px 0;
}

th {
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 10px 6px 0;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    color: #777;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
}

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #fff inset;
    -webkit-text-fill-color: #777;
}
input:-webkit-autofill:focus {
    -webkit-box-shadow:0 0 0 50px #fff inset;
    -webkit-text-fill-color: #777;
}

h1,
h2,
h3,
h4,
h5 {
    clear: both;
}

p {
    margin-bottom: 1.5rem;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5rem;
    font-size: 2.4rem;
    text-style: italic;
    font-weight: 300;
}

address {
    margin: 0 0 1.5rem;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    max-width: 100%;
    overflow: auto;
    padding: 1.6rem;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 1.5rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    text-decoration: none;
    background-color:transparent;
}

sup,
sub {
    font-size: 80%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

small {
    font-size: 80%;
}

big {
    font-size: 115%;
}

.clear {
    clear: both;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5rem;
}

ol {
    margin: 0 0 1.5rem 3rem;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ol {
    margin-bottom: 0;
    margin-left: 1.5rem;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

figure {
    margin: 0;
    width: 100%;
}

table {
    margin: 0 0 1.5rem;
    width: 100%;
}

th {
    font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    padding: 10px 20px;

}

input[type="checkbox"],
input[type="radio"] {
    padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea {
    color: #777;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"] {
    padding: 8px;
}

input[type="search"] {
    padding: 8px;
}

textarea {
    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
    vertical-align: top; /* Improves readability and alignment in all browsers */
    width: 100%;
    padding: 8px;
}

.ztl-input {
    padding: 8px !important;
    border-radius: 5px !important;
    border-color: #e8e8e8 !important;
    width: 100%;
}

::-webkit-input-placeholder {
    color: #777;
}

:-moz-placeholder {
    color: #777;
}

::-moz-placeholder {
    color: #777;
}

:-ms-input-placeholder {
    color: #777;
}

.wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

.wrapper .fixed-header {
    max-width: 1050px;

}

/*--------------------------------------------------------------
5.0 Header
--------------------------------------------------------------*/
.site {
    background-color: #fff;
}

.site-header {
    !box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    width: 100%;
    z-index: 499;
    position: relative;
}

.fixed-header {
    position: fixed;
}

.fixed-header #logo img {
    width: 75%;
}

.fixed-header #logo {
    line-height: 60px;
}

#logo{
    max-width:200px;
}

.custom-header {
    background-size: cover;
    background-position: center center;
    position: relative;
}
.custom-header.ztl-header{
    margin-bottom:7rem;
}


/*--------------------------------------------------------------
5.1 Logo
--------------------------------------------------------------*/
#logo {
    line-height: 90px;
    float: left;
}

#logo img {
    -webkit-transform: translate3d(0, 0, 0);
}

#logo a {
    vertical-align: middle;
    display: block;
}

/*--------------------------------------------------------------
6.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.1 Links -> moved to customizer to implement theme colors
--------------------------------------------------------------*/

/*--------------------------------------------------------------
6.2 Menus
--------------------------------------------------------------*/
.main-navigation {
    float: right;
}

.main-navigation ul {
    list-style: none;
    vertical-align: middle;
}

.main-navigation > div > ul {
    height: 90px;
    margin: 0;
    padding-left: 0;
}

.main-navigation li a {
    padding: 57px 5px 12px;
    line-height: 16px;
    font-size: 14px;
}

.main-navigation li>a{
    -webkit-font-smoothing: subpixel-antialiased;!important;
    -moz-osx-font-smoothing: initial !important;
}

.main-navigation > div > ul > li > a {
    min-width: 75px;
    text-align: center
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

.main-navigation ul ul {
    float: left;
    position: absolute;
    left: -999rem;
    z-index: 99999;
    width: 214px;
    padding: 12px 0;
}

#nav-mobile-wrapper {
    display: inline-block;
    float: right;
}

.main-navigation ul li:hover > ul {
    left: 0px;
}

.main-navigation ul ul li:hover > ul {
    left: 100%;
}

.main-navigation ul li {
    padding: 0;
}

.main-navigation ul ul li {
    padding: 0;
}

/* Small menu */

#menu-toggle {
    width: 26px;
    height: 20px;
    position: relative;
    margin: 20px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
    float: right;
    display: none;
}

#menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

#menu-toggle span:nth-child(1) {
    top: 0px;
}

#menu-toggle span:nth-child(2),
#menu-toggle span:nth-child(3) {
    top: 8px;
}

#menu-toggle span:nth-child(4) {
    top: 16px;
}

#menu-toggle.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#menu-toggle.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#menu-toggle.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.main-navigation ul ul {
    box-shadow: 0 1px 6px rgba(0, 0, 0, .2);

}

.main-navigation ul ul:before {
    content: "";
    width: 214px;
    height: 4px;
    position: absolute;
    top: -4px;
    left: 0px;
}

.main-navigation ul ul li a {
    display: block;
    width: 190px;
    padding: 9px 12px;
    margin: 0 12px;
    box-sizing: border-box;
}

.main-navigation .fa::before {
    float: left;
    margin-top: 24px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    position: relative;
    z-index: 0;
}

.main-navigation ul > li a {
    position: relative;
    z-index: 1;
}

.fixed-header .main-navigation .fa::before {
    display: none;
}

.fixed-header .main-navigation > div > ul {
    height: 60px;
}

.fixed-header .main-navigation li a {
    !padding: 18px 16px;
    padding: 18px 5px 16px;
    line-height: 16px;
}

.fixed-header .sub-menu li a,
.fixed-header .children li a {
    padding: 6px 12px;
}

.main-navigation li, .main-navigation li a {
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.main-navigation li:hover,
.main-navigation ul > li:hover > a {
    color: #fff !important;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
    margin: 0 0 5rem;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 48%;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom-right-radius: 5px;
    padding: 5px 45px;
    text-align: right;
    margin: 10px 0;
    position: relative;
}

.post-navigation .nav-previous .fa {
    position: absolute;
    left: 25px;
    top: 6px;
    line-height: 2;
}

.post-navigation .nav-next .fa {
    position: absolute;
    right: 25px;
    top: 6px;
    line-height: 2;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    line-height: 2;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    overflow: hidden;
    height: 42px;
}

.comment-navigation .nav-previous .meta-nav,
.paging-navigation .nav-previous .meta-nav,
.post-navigation .nav-previous .meta-nav {
    float: left;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: left;
    width: 48%;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-bottom-left-radius: 5px;
    padding: 5px 45px;
    margin: 10px 0;
    position: relative;
}

.comment-navigation .nav-next .meta-nav,
.paging-navigation .nav-next .meta-nav,
.post-navigation .nav-next .meta-nav {
    float: right;
}

.comment-navigation .nav-next a,
.paging-navigation .nav-next a,
.post-navigation .nav-next a,
.comment-navigation .nav-previous a,
.paging-navigation .nav-previous a,
.post-navigation .nav-previous a {
    display: block;
    text-decoration: none;
}

/*--------------------------------------------------------------
7.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar */
}

.edit-link {
    display: block;
    font-weight: normal;
    margin: 10px 0;
}

.cat-links {
    float: right;
}

.ztl-full-img,
.ztl-full-img a,
.ztl-full-img a img {
    width: 100%;
}

/*--------------------------------------------------------------
8.0 Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}

.centered {
    text-align: center;
}

/*--------------------------------------------------------------
9.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

.clear10 {
    clear: both;
    height: 1rem;
}

.clear20 {
    clear: both;
    height: 2rem;
}

.clear40 {
    clear: both;
    height: 4rem;
}

.clear60 {
    clear: both;
    height: 6rem;
}

.clear80 {
    clear: both;
    height: 8rem;
}

.clear100 {
    clear: both;
    height: 10rem;
}

/*--------------------------------------------------------------
10.0 Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 6rem;
}

/* Make sure select elements fit in widgets */
.widget select {
    max-width: 100%;
}

/* Search widget */

.widget_search .search-submit {
    display: none;
}

.widget-title, .ztl-heading {
    line-height: 48px;
    padding-bottom: 4rem;
}

.ztl-widget-description {
    font-size: 16px;
    text-align: center;
}

.ztl-widget-description-light {
    color: #fff;
}

.ztl-widget-title,
.ztl-heading {
    text-align: center;
    font-family: 'Salsa', cursive;
    font-size: 42px;
}

/*Circles widget*/
.ztl-widget-circle {
    position: relative;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    margin: 0rem auto;
    !line-height: 110px;
    text-align: center;
    background-color: transparent !important;
}

.ztl-item-circle-edge {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-sizing: content-box;
    top: -5px;
    left: -5px;
    box-shadow: 0 0 0 5px #000;
    transition: transform 0.25s, opacity 0.25s;
    transform: scale(0.8);
    opacity: 0;
}
.ztl-item-circle-edge a {
    display: block;
    text-decoration: none;
}

.ztl-widget-circles .item:hover .ztl-item-circle-edge {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
    opacity: 1;
    display: none;
}

.ztl-widget-circle img {
    !height: 60px;
    !max-height: 50%;
}

.ztl-widget-circle-title {
    width: 100%;
    text-align: center;
    margin: 2rem 0;
    font-size: 28px;
    line-height: 1.2;
    word-spacing: 999px;
    font-family: 'Salsa', cursive;
}

.ztl-widget-circle-title a {
    color: inherit !important;
}

.ztl-widget-circle-title a:hover {
    color: inherit;
    text-decoration: none;
}

.ztl-widget-circle-description {
    text-align: center;
    font-size: 16px;
}

.ztl-widget-circle-description a, .ztl-widget-circle-description a:hover {
    color: inherit !important;
    text-decoration: none;
}

/*WP Calendar*/
.widget_calendar #next,
.widget_calendar #prev {
    text-transform: uppercase;
}

/*Staff widget*/
.ztl-widget-staff-wrapper {
    width: 100%;
    position: relative;
}

.ztl-widget-staff-parallax {
    background-image: url('../images/widget_staff_bg.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: 0px;
    z-index: 99;
    width: 100%;
    height: 100%;
}

.ztl-staff-upper {
    width: 100%;
    padding-top: 4rem;
    min-height: 280px;
    position: relative;
    z-index: 101;
}

.ztl-staff-lower {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 280px;
    padding-bottom: 4rem;
    position: relative;
    z-index: 100;
}

.ztl-staff-delimiter {
    height: 105px;
    clear: both;
}

.ztl-staff-carousel .circle-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    margin: 4px auto;
}

.ztl-staff-carousel .ztl-circle-staff-contact {
    top: 0;
    left: 0;
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
}

.ztl-staff-carousel .ztl-circle-staff-contact i {
    padding: 0 2px;
}

.ztl-circle-staff-contact a {
    color: #fff !important;
    text-decoration: none;
    padding: 0 5px;
}

.ztl-staff-carousel .item {
    display: inline-block;
    margin: auto;
}

.ztl-staff-carousel .item:hover .ztl-circle-staff-contact {
    opacity: 1;
    visibility: visible;
    transition: opacity ease-in-out 0.25s;
}

.ztl-staff-carousel .circle-portrait img {
    border-radius: 50%;
    vertical-align: middle;
}

.ztl-staff-carousel-wrapper {
    position: relative;
    padding: 0 40px 40px 40px;
    max-height: 370px;
    overflow: hidden;
    width: 100%;
}

.ztl-widget-staff-container {
    position: absolute;
    bottom: -300px;
    height: 375px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.ztl-widget-staff-container .owl-buttons {
    display: none;
    font-size: 24px;
    width: 100px;
    margin: auto !important;
}

.ztl-staff-carousel-wrapper .owl-controls {
    text-align: center !important;
}

.ztl-staff-carousel-wrapper .owl-dots {
    display: inline-block !important;
    margin: 10px 0;
}

.ztl-staff-carousel-wrapper .owl-dot {
    float: left;

}

.ztl-widget-staff-container .owl-buttons {
    margin: 10px 0;
}

.ztl-widget-staff-container .owl-prev {
    float: left;
    opacity: 0.6;
}

.ztl-widget-staff-container .owl-next {
    float: right;
    opacity: 0.6;
}

.ztl-widget-staff-container .owl-prev:hover, .ztl-widget-staff-container .owl-next:hover {
    opacity: 1;
}

.ztl-staff-carousel-wrapper .owl-theme .owl-controls .owl-dot span {
    width: 20px;
    height: 20px;
    background-color: transparent;
    padding: 10px;
    opacity: 0.6;
}

.ztl-staff-carousel-wrapper .owl-theme .owl-controls .active span {
    opacity: 1;
}

.ztl-staff-carousel-wrapper .owl-theme .owl-controls {
    padding-top: 20px;
}

.ztl-staff-carousel-wrapper .owl-dots .owl-dot span:after {
    content: "\f004";
    font-family: "FontAwesome";
    font-size: 20px;
}

.ztl-widget-staff-container .staff-title {
    width: 100%;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2;
    word-spacing: 999px;
}

.ztl-widget-staff-container .staff-title a {
    font-family: 'Salsa', cursive;
}

.ztl-widget-staff-container .staff-position {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
}

.staff-position{
    text-align: center;
}

/*widget Courses*/

.ztl-courses-wrapper .item {
    margin: 10rem auto 0rem auto;
    width: 224px;
    min-height: 400px;
    border-radius: 20px;
    position: relative;
}

.ztl-courses-wrapper .item-circle-top {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -60px;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    line-height: 120px;
}

.ztl-courses-wrapper .item-circle-top img {
    max-height: 50%;
}

.ztl-courses-wrapper .item-course-title {
    text-align: center;
    font-size: 24px;
    font-family: 'Salsa', cursive;
    padding-top: 8rem;
}

.ztl-courses-wrapper .item-course-sub-title {
    text-align: center;
    font-size: 18px;
    font-family: 'Salsa', cursive;
    color: #fff;
    padding: 0 0 20px 0;
}

.ztl-courses-wrapper .item-course-description {
    width: 100%;
    padding: 10px 25px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
}

.ztl-courses-wrapper .item-course-description::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    background-color: #fff;
}

.ztl-courses-wrapper .item-course-description a {
    color: #fff;
    text-decoration: underline;
}

.ztl-courses-wrapper .item-course-description p {
    margin-bottom: 0;
}

.ztl-courses-wrapper .item-course-description .title {
    margin-bottom: 0.7rem;
}

.ztl-courses-wrapper .item-course-description i {
    padding-right: 5px;
    font-size: 16px;
}

.ztl-courses-wrapper .item-footer-content {
    box-sizing: border-box;
    padding: 2rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ztl-courses-wrapper .item-footer-phantom {
    opacity: 0.2;
    position: absolute;
    bottom: 0px;
    left: -4rem;
    right: auto;
    width: 40%;
}

.ztl-courses-wrapper .item-available-places {
    font-size: 16px;
    text-align: center;
    padding-bottom: 2rem;
}

.ztl-courses-wrapper .item-get-in-touch {
    text-align: center;
}

.ztl-courses-wrapper .item-get-in-touch a {
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    background-color: #fff;
    margin-bottom: 2rem;
    text-decoration: none;
    display: inline-block;
    line-height: 20px;
    text-align: center;
    font-size: 18px;
    padding: 1rem 2rem;
    border-radius: 5px;
}

.ztl-courses-wrapper .item-get-in-touch a:hover {
    background-color: #fff !important;
}

/*Widget Testimonials*/
.ztl-widget-testimonials-container {
    min-height: 400px;
    position: relative;
}

.ztl-widget-testimonials-parallax {
    background-image: url('../images/testimonials_bg.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: initial;
    position: absolute;
    top: 0px;
    z-index: 99;
    width: 100%;
    height: 100%;
}

.ztl-widget-testimonials-container .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.ztl-widget-testimonials-container .item {
    margin: 0 auto;
    background-image: url('images/quote_icon.png');
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position: center 0;
    min-height: 90px;
    padding-top: 14rem;
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 300;
}

.ztl-widget-testimonials-container .testimonial-content {
    font-style: italic;
    padding: 0 10px;
}

.ztl-widget-testimonials-container .item p {
    margin-bottom: 0;
}

.ztl-widget-testimonials-container .owl-controls {
    text-align: center;
}

.ztl-widget-testimonials-container .owl-dots {
    display: inline-block;
}

.ztl-widget-testimonials-container .owl-dots .owl-dot {
    float: left;
    margin: 0 10px;
    width: 20px;
    height: 20px;
}

.ztl-widget-testimonials-container .owl-dots .owl-dot span {
    display: block;
    color: #fff;
    opacity: 0.6;
}

.ztl-widget-testimonials-container .owl-dots .owl-dot span:after {
    content: "\f004";
    font-family: "FontAwesome";
    font-size: 20px;
}

.ztl-widget-testimonials-container .owl-dots .active span {
    color: #fff;
    content: "\f004";
    opacity: 1;
}

.ztl-widget-testimonials-container .owl-dots span {
    -webkit-transition: -webkit-transform 0.25s ease, background-color 0.25s ease;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.ztl-testimonials-carousel .author {
    font-size: 16px;
    margin-bottom: 4rem;
    font-style: italic;
}

.ztl-testimonials-carousel .delimiter {
    height: 1px;
    width: 60px;
    background-color: #fff;
    margin: 3rem auto;
}

/* Widget gallery */
.ztl-widget-gallery-container .ztl-widget-description {
    padding-bottom: 4rem;
}

.ztl-widget-gallery-container .item-isotope {
    padding: 1px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.item-isotope-cover {
    opacity: 0;
    transition: all .35s ease-in;
}

.ztl-widget-gallery-container .item-isotope:hover .item-isotope-cover {
    opacity: 1;
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.item-isotope img {
    width: 100%;
}

.ztl-widget-gallery-container .item-isotope a {
    display: block;
    position: relative;
    overflow: hidden;

}

.ztl-widget-gallery-container .item-isotope a .icon-gallery {
    opacity: 0;
    position: absolute;
    z-index: 101;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: -50px;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    line-height: 100px;
    text-align: center;
    font-size: 26px;
    transition: all .35s ease-in;
}

.ztl-widget-gallery-container .item-isotope:hover a .icon-gallery {
    opacity: 1;
}

.ztl-widget-gallery-container .item-isotope a .icon-gallery span:before {
    font-size: 30px;
    margin: 0px;
}

.ztl-widget-gallery-container .item-isotope a:hover .icon-gallery {
    display: block;
}

.ztl-widget-gallery-container .item-isotope a img {
    transition: all .35s ease-in;
}

.ztl-widget-gallery-container .item-isotope a:hover img {
    transform: scale(1.1);
}

.ztl-widget-gallery-container .overlay-gallery {
    display: none;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.ztl-widget-gallery-container .item-isotope a:hover .overlay-gallery {
    display: block;
}

/* Widget numbers */
.ztl-widget-numbers {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
    box-sizing: border-box;
    font-weight: 300;
}

.ztl-widget-numbers-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: absolute;
    top: 0px;
    z-index: 99;
    width: 100%;
    height: 100%;

}

.ztl-widget-numbers .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    top: 0;
}

.ztl-widget-numbers .container {
    position: relative;
    z-index: 101;
}

.ztl-widget-number {
    border: 5px solid #fff;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 20px auto 20px auto;
    line-height: 160px;
    text-align: center;
    font-size: 50px;
    color: #fff;
}

.ztl-sidebar-area .widget_kiddie_numbers_widget .clear15e {
    height: 0px !important;
}

.category-sidebar-right aside:nth-child(1) {
    margin-top: 62px;
}

.category-sidebar-right aside{
    margin: 0 0 4rem;
}

.category-sidebar-right .widget-title,
.sidebar-right .widget-title {
    padding-bottom: 3rem;
}

.post-sidebar-right aside:nth-child(1) {
    margin-top: 6px;
}

.category-sidebar-right .widget_text li,
.post-sidebar-right .widget_text li {
    padding-left: 3rem;
    text-indent: -1.4rem;
    padding-bottom: 0.5rem;
}

.category-sidebar-right .widget_text li:before,
.post-sidebar-right .widget_text li:before,
.ztl-list li:before {
    font-family: 'Flaticon';
    content: "\f116";
    padding-right: 1.5rem;
    display: inline-block;
}

.ztl-list {
    text-align: left;
    list-style: none;
}

.sidebar-right caption {
    text-transform: uppercase;
}

.ztl-widget-number-title {
    text-align: center;
    line-height: 1.2;
    font-size: 32px;
    color: #fff;
    word-spacing: 999px;
    padding-bottom: 1rem;
    font-weight: 300;
}

/* Category listing widget */
.ztl-widget-category-container .item .title {
    min-height: 50px;
    margin: 1rem 0;
}

.ztl-widget-category-button {
    text-align: center;
    margin-top: 2rem;
}

.ztl-widget-category-container .item .title a {
    font-size: 24px;
    line-height: 1.4;
}

.ztl-widget-category-container .item .content a {
    text-decoration: none;
}

.ztl-widget-category-container .item .title a:hover {
    text-decoration: underline;
}

.ztl-widget-category-container .item .image {
    width: 100%;
    position: relative;
}

.ztl-widget-category-container .item .image img {
    width: 100%;
}

.ztl-widget-category-container .entry-date {
    padding: 10px 0;
    display: block;
    font-size: 16px;
}

.ztl-entry-date {
    font-size: 15px;
}

.ztl-widget-category-container .read-more {
    color: #a0a0a0;
}

.ztl-widget-category-container .content {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.ztl-widget-category-container .comments-no {
    position: absolute;
    z-index: 101;
    bottom: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.ztl-widget-category-container .comments-no i {
    font-size: 38px;
}

.ztl-widget-category-container .comments-no i:before {
    font-size: 38px;
    margin-left: 0px;
    line-height: 50px;
}

.ztl-widget-category-container .comments-no span {
    position: absolute;
    color: #fff;
    font-size: 18px;
    z-index: 102;
    width: 40px;
    height: 40px;
    text-align: center;
    top: 0px;
    left: 0px;
}

.ztl-widget-category-container .category,
.ztl-widget-category-container .author {
    float: left;
    font-size: 16px;
}

.ztl-widget-category-container .author {
    margin-right: 25px;
}

.ztl-widget-category-container .author i,
.ztl-widget-category-container .category i {
    padding: 0 8px 0 0;
    font-size: 15px;
}

.ztl-widget-category-container .author i:before,
.ztl-widget-category-container .category i:before {
    margin: 0px;
    font-size: 18px;
}

.ztl-widget-category-container .category i {
    text-transform: capitalize;
}

.ztl-sidebar-area .widget:last-child.widget_kiddie_numbers_widget,
.ztl-sidebar-area .widget:last-child.widget_kiddie_testimonials_widget {
    margin-bottom: 0px;
}

.widget_kiddie_contact_widget {
    margin-bottom: 0px !important;
}

.ztl-widget-contact-container input {
    border: none;
}

.ztl-widget-contact-container input[type=text],
.ztl-widget-contact-container input[type=email] {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 0 10px;
    height: 40px;
}

.ztl-widget-contact-container textarea {
    height: 170px;
    border-radius: 5px;
    padding: 10px;
    border: none;
    resize: none;
}

.ztl-widget-contact-container ::-webkit-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container ::-moz-placeholder {
    opacity: 1 !important;
    color: #fff;
}

.ztl-widget-contact-container :-ms-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container input:focus::-webkit-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container input:focus::-moz-placeholder {
    color: #fff;
}

.ztl-widget-contact-container input:focus:-ms-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container textarea:focus::-webkit-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container textarea:focus::-moz-placeholder {
    color: #fff;
}

.ztl-widget-contact-container textarea:focus:-ms-input-placeholder {
    color: #fff;
}

.ztl-widget-contact-container input,
.ztl-widget-contact-container textarea {
    color: #fff;
}

.ztl-widget-contact-container .title {
    font-size: 24px;
    color: #fff;
    font-family: 'Salsa', cursive;
}

.ztl-widget-contact-container * {
    outline: none;
}

.ztl-widget-contact-container input[type=submit] {
    border-radius: 5px;
    height: 40px;
    font-size: 18px;
    box-shadow: none;
    text-shadow: none;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.ztl-widget-contact-container .address {
    line-height: 20px;
    padding: 8px 0;
    text-align: right;
    color: #fff;
}

.ztl-widget-contact-container {
    padding: 4rem 0 2.5rem 0;
}

.ztl-map {
    width: 100%;
    height: 360px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/** Recent Posts Widget**/
.ztl-list-reset {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.ztl-widget-recent-posts ul > li {
    margin-bottom: 2.5rem;
}

.ztl-widget-recent-posts ul > li:last-child {
    margin-bottom: 0;
}

.ztl-widget-recent-posts ul > li > a + h6,
.ztl-widget-recent-posts ul > li > a + h6 + span {
    margin-left: 10rem;
}

.ztl-widget-recent-posts ul > li > a + h6 + span i {
    font-size: 16px;
}

.ztl-widget-recent-posts ul > li > a {
    float: left;
    width: 80px;
    height: 80px;
    display: block;
}

.ztl-widget-recent-posts ul > li > a > img {
    display: block;
}

.ztl-widget-recent-posts ul > li > a + h6 {
    margin-bottom: 10px;
}

.ztl-widget-recent-posts ul > li > h6 > a {
    font-size: 16px;
    text-decoration: none;
    line-height: 1.5;
    font-weight: normal;
}

.ztl-widget-recent-posts ul > li > h6 > a:hover {
    text-decoration: underline;
}

.ztl-widget-recent-posts ul > li > h6 {
    margin: 0px;
}

.ztl-widget-recent-posts ul > li > span {
    display: block;
    font-size: 16px;
}

.ztl-widget-title-right h2,
.sidebar-right h2{
    font-size: 20px;
    text-transform: uppercase;
}

.ztl-rounded {
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-right ul {
    list-style-type: none;
}

.sidebar-right ul li {
    padding: 0.5rem 0;
}

.sidebar-right select {
    width: 100%;
    padding: 0.5rem 0;
}

.sidebar-right input[type="search"], .sidebar-right label {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Action Widget*/
.ztl-widget-action {

}

.ztl-widget-action a {
    margin: 1rem 0 1rem 3rem;
}

.ztl-action-content-box {
    line-height: 1.2;
    font-size: 42px;
    float: left;
    max-width: 75%;
    font-weight:300;
}

.ztl-action-button {
    float: right;
    max-width: 25%;
}

.ztl-widget-action .ztl-action-title {
    font-family: 'Salsa', cursive;
    font-weight:normal;
}

.ztl-widget-action .ztl-action-description {
    font-weight: 300;
}

/*--------------------------------------------------------------
11.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
11.1 Main container
--------------------------------------------------------------*/
.container {
    max-width: 1050px;
    padding: 0 25px;
    width: 100%;
}

/*--------------------------------------------------------------
11.2 Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.sticky-tag {
    padding-right: 20px;
    display: inline-block;
}

.hentry {
    !margin-bottom: 7rem;
}

.byline,
.updated:not(.published) {
    display: none;
}

.ztl-single .entry-title {
    display:none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.entry-content h1,
.comment-content h1 {
    font-size: 32px;
    line-height: 1.5;
    margin: 1.5rem 0;
}

.entry-content h2,
.comment-content h2,
.mu_register h2 {
    font-size: 28px;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.entry-content h3,
.comment-content h3 {
    font-size: 24px;
    line-height: 1.846153846;
    margin: 1.5rem 0;
}

.entry-content h4,
.comment-content h4 {
    font-size: 20px;
    line-height: 1.846153846;
    margin: 1.5rem 0;
}

.entry-content h5,
.comment-content h5 {
    font-size: 16px;
    line-height: 1.846153846;
    margin: 1.5rem 0;
}

.entry-content h6,
.comment-content h6 {
    font-size: 12px;
    line-height: 1.846153846;
    margin: 1.5rem 0;
}

.entry-content .entry-meta {
    font-size: 15px;
    margin-bottom: 3rem;
}

.entry-content p a[href]:not([class]) {
    text-decoration: underline;
}

.entry-content ol,
.entry-content ul {
    margin: 0 0 1.5rem 3rem;
}

.page-links {
    clear: both;
    margin: 0 0 15px;
}

.page-top .entry-title {
    text-align: center;
    line-height: 1.5;
    padding: 30px;
    font-family: 'Salsa', '微軟正黑體', cursive;
    font-size: 42px;
}

.custom-header-title,
.page-title .entry-title {
    text-align: center;
    line-height: 1.2;
    padding: 4rem 2rem;
    font-family: 'Salsa', '微軟正黑體', cursive;
    font-size: 42px;
}

.sub-heading {
    color: #fff;
    padding: 0 30px 30px 30px;
    text-align: center;
    font-size: 26px;
}

.sub-heading p {
    padding: 0 !important;
    margin: 0 !important;
}

.ztl-post-info:before {
    margin-left: 0px !important;
    margin-right: 10px;
}

/*Blog Right Sidebar */
.category-listing .item {
    padding-bottom: 6rem;
}

.category-listing {
    padding-bottom: 4rem;
}

.index-listing {
    padding-top: 6rem;
}

.category-listing .title {
    text-align: center;
}

.category-listing .item .title a {
    font-size: 40px;
    line-height: 1.2;
    padding: 0 0 2rem 0;
    font-weight: 300;
    display: block;
}

.sidebar-right h2 {
    font-size: 20px;
}

.category-listing .col-lg-8 .item .title a {
    font-size: 30px;
    line-height: 1.2;
    font-weight: normal;
}

.category-listing .item i {
    font-size: 16px;
}

.category-listing .text-content {
    font-size: 16px;
    padding: 2rem 0 0 0;
    color: #777;
}

.category-listing .text-content a {
    text-decoration: none;
    color: #a0a0a0;
}

.category-listing .item:after {
    content: '';
    width: 60px;
    height: 1px;
    margin: 4rem auto 0 auto;
    background-color: #e8e8e8;
    display: block;
}

.category-listing .item .info,
.ztl-post .info {
    padding: 2rem 0 1rem 0;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.category-listing .item .info span,
.ztl-post .info span {
    display: inline-block;
    padding: 0px 1rem 1rem 0;
}

.ztl-post .date a {
    text-decoration: none;
}

.ztl-post .image img {
    width: 100%;
}

.ztl-post i {
    padding: 0 7px 0 0;
}

.ztl-overflow{
    overflow:hidden;
}

.category-listing .item .date,
.ztl-post .date {
    text-align: center;
    padding-bottom: 3rem;
}

.date-tag {
    display: inline-block;
}

.category-listing .item .read-more {
    text-align: center;
}

.category-listing .item .read-more a,
.ztl-button, .comment-body .reply a,
.post-password-form input[type=submit] {
    border-radius: 5px;
    border: none;
    line-height: 26px;
    font-size: 18px !important;
    text-decoration: none;
    display: inline-block;
    padding: 7px 20px;
    margin: 2rem 0;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;

}

p .ztl-button {
    margin-top: 5px;
}

.ztl-button {
    text-decoration: none !important;
}

.category-listing .item .image a img {
    width: 100%;
}

/*Blog masonry*/

.ztl-masonry h4 {
    font-size: 24px;
    line-height: 1.4;
}

.ztl-masonry h4 a:hover {
    text-decoration: underline;
    opacity: 1 !important;
}

.ztl-masonry p {
    font-size: 16px;
    color: #777;
}

.ztl-masonry .vc_gitem-post-data {
    font-size: 15px;
}

.ztl-masonry select {
    border-radius: 5px;
    padding: 5px;
}

.ztl-masonry .vc_pageable-load-more-btn {
    margin-top: 0px;
    margin-bottom: 25px;
}

.ztl-masonry .vc_pageable-load-more-btn a {
    border-radius: 5px;
}

.ztl-masonry .read-more a {
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    font-size: 18px;
    height: 40px;
    line-height: 36px;
    padding-top: 0px !important;
    padding-bottom: 0px;
}

.ztl-masonry .vc_pageable-load-more-btn a:hover {
    background-position: 0 100%;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

/*--------------------------------------------------------------
11.3 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}

.common-blog i:before {
    margin: 0px;
    font-size: 18px;
}

.common-blog i {
    padding: 0 7px 0 0;
}

.common-blog .date {
    font-size: 15px;
}

/*--------------------------------------------------------------
11.4 Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.comment-respond {
    padding-bottom: 3.5rem;
}

.bypostauthor {
    display: block;
}

.comment-reply-title {
    text-align: center;
    font-family: 'Salsa', cursive;
    font-size: 32px;
    line-height: 1.5;
    padding: 10px;
}

.comment-notes {
    text-align: center;
    font-size:15px;
}

#comments label {
    display: none;
}

.comments-title {
    padding-bottom: 30px;
    font-size: 32px;
    font-weight: normal;
    font-family: 'Salsa', cursive;
    text-align: center;
}

.comment-metadata {
    font-size: 14px;
    margin-left: 60px;
}

.says {
    display: none;
}

.comment-author .fn {
    margin-left: 60px;
    margin-top: -45px;
    display: block;
    font-weight: normal !important;
    font-size: 20px;
}

.comment article {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 2.5rem;
}

.comment-content p {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin-bottom: 0px;
}

.comment .reply a {
    margin-bottom: 25px;
}

.ztl-line-delimiter {
    width: 60px;
    height: 1px;
    background-color: #e8e8e8;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    clear: both;
}

/*--------------------------------------------------------------
12.0 Footer
--------------------------------------------------------------*/
.site-footer .site-info {
    padding: 0.6rem 0;
}

.sidebar-footer aside {
    margin: 4.5rem 0 6rem 0;
    color: #e8e8e8;
}

.sidebar-footer h2 {
    padding-top: 0px;
    font-family: 'Salsa', '微軟正黑體',  cursive;
    font-size: 24px;
    color: #fff;
}

.sidebar-footer h2:after {
    margin: 0;
    width: 40px;
}

.sidebar-footer ul {
    list-style-type: none;
}

.sidebar-footer a {
    color: #fff !important;
    background-color: transparent !important;
}

.sidebar-footer li a:hover {
    text-decoration: underline;
}

.sidebar-footer caption {
    color: #e8e8e8;
    text-transform: uppercase;
}

.sidebar-footer .ztl-recent-post-date {
    color: #e8e8e8 !important;
}

.ztl-recent-post-date i:before {
    font-size: 18px;
    margin: 0px;
}

.ztl-recent-post-date i {
    padding: 0 7px 0 0;
}

.ztl-widget-recent-posts ul > li > .ztl-recent-post-date {
    font-size: 15px;
}

aside .menu li:before {
    display: none !important;
}

aside .menu li {
    width: 100%;
    padding: 0 !important;
    line-height: 1.5;
}

aside .menu li a {
    font-size: 16px;
    line-height: 1.5;
}

aside ul ul {
    margin-left: 24px;
}

aside ul ul li:hover a {
    background-color: transparent !important;
}

aside .menu li:hover a {
    background-color: transparent !important;
}

aside select {
    width: 100%;
    padding: 7px;
    border-radius: 5px;
}

.sidebar-footer select {
    border-color: transparent;
}

.sidebar-footer i {
    color: #fff !important;
}

.sidebar-footer .tagcloud a {
    color: #fff;
}

.sidebar-footer .recentcomments {
    padding-bottom: 1rem;
}

.sidebar-footer .widget_text li, .ztl-list li {
    padding-left: 2rem;
    text-indent: -2rem;
    padding-bottom: 0.5rem;
}

.sidebar-footer .widget_text li:before {
    font-family: 'Flaticon';
    content: "\f116";
    padding-right: 1.5rem;
    color: #fff;
}

.sidebar-footer form label {
    width: 100%;
}

.sidebar-footer input[type='search'] {
    border-color: transparent !important;
    width: 100%;
}

.ztl-scroll-top {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    position: fixed;
    z-index: 999999;
    bottom: 69px;
    right: 25px;
    display: none;
    text-align: center;
    line-height: 40px;
    color: #fff !important;
    font-size: 36px;
}

.ztl-scroll-top:hover {
    color: #fff;
}

#ztl-copyright {
    line-height: 20px;
    padding: 10px 0;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

#ztl-social {
    list-style-type: none;
    text-align: right;
}

#ztl-social li {
    display: inline-block;
    padding: 0 3px;
}

#ztl-social .fa {
    font-size: 1.4em;
}

#ztl-social .fa {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.05s ease-in-out;
    -moz-transition: all 0.05s ease-in-out;
    -ms-transition: all 0.05s ease-in-out;
    -o-transition: all 0.05s ease-in-out;
    transition: all 0.05s ease-in-out;
}

#ztl-social .fa:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.entry-footer a {
    font-size: 15px;
    padding: 5rem 0 2.5rem 0;
}

.entry-footer-meta {
    padding: 5rem 0 2.5rem 0;
}

/* Stick the footer */
.home .site-footer {
    position: relative;
}

.home #content {
    padding: 0px;
}

.site-footer {
    position: absolute;
    width: 100%;
    bottom: 0px;
}

#content {
    padding-bottom: 80px;
}

html, body {
    height: 100%;
}

.site {
    position: relative;
    min-height: 100%;
}

/*--------------------------------------------------------------
13.0 Infinite scroll and pagination
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
    display: block;
}

.pagination {
    text-align: center;
    width: 100%;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 2rem;
}

.pagination .page-numbers {
    min-width: 40px;
    margin: 3px;
    height: 40px;
    text-align: center;
    padding: 0 5px;
    line-height: 40px;
    display: inline-block;
    text-decoration: none;
    border-radius: 50%;
    font-size: 18px;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;

}

/*--------------------------------------------------------------
14.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
14.1 Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

/*--------------------------------------------------------------
14.2 Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------------
15.0 Revolution slider custom navigation
----------------------------------------------------------------------*/

.tp-leftarrow {
    background-position: center center !important;
    border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    opacity: 0.7 !important;

}

.tp-rightarrow {
    background-position: center center !important;
    border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    opacity: 0.7 !important;
}

.tp-leftarrow:before {
    font-family: 'FontAwesome' !important;
    content: '\f104' !important;
    font-size: 26px !important;
}

.tp-rightarrow:before {
    font-family: 'FontAwesome' !important;
    content: '\f105' !important;
    font-size: 26px !important;
}

.tp-leftarrow:hover,
.tp-rightarrow:hover {
    opacity: 1 !important;
}

.custom .tp-bullet {
    width: 24px !important;
    height: 24px !important;
    background-color: transparent !important;
    text-align: center;
    margin-top: -6rem;
}

.custom .tp-bullet:after {
    content: "\f004";
    font-family: "FontAwesome";
    font-size: 20px;
}

.widget_revslider .widget-title {
    display: none;
}

.tp-bullets.custom {
    transform: none !important;
    margin-left: -3rem;
}

.sidebar-right .widget-title::after {
    content: '';
    display: block;
    margin: 0;
    width: 40px;
    height: 4px;
    border-radius: 2px;
}

.sidebar-right .menu li a {
    background-color: transparent !important;
}

.custom-header-title::after, .widget-title::after {
    content: '';
    display: block;
    margin: 2rem auto 0 auto;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.custom-header-title::after {
    margin: 2rem auto 0 auto !important;
}

.ztl-widget-title-light .widget-title::after {
    border-top: 3px solid #fff !important;
}

.widget_kiddie_staff_widget .widget-title::after,
.widget_kiddie_numbers_widget .widget-title::after,
.ztl-background-image::after {
    display: none !important;
}

.widget_kiddie_staff_widget .widget-title,
.widget_kiddie_numbers_widget .widget-title {
    padding-bottom: 2rem;
}

/*--------------------------------------------------------------------
16.0 Contact page
----------------------------------------------------------------------*/
/*Contact page*/
#map-canvas-contact {
    width: 100%;
    height: 500px;
}

.ztl-contact-heading {
    font-family: 'Salsa', cursive;
    font-size: 42px !important;
    padding-top: 26px;
}

/*Contact form Contact I*/
.ztl-contact-form input[type="text"],
.ztl-contact-form input[type="email"],
.ztl-contact-form input[type="date"]{
    width: 100%;
    height: 40px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 5px;
    padding: 0 10px;
    color: #777;

}

.ztl-contact-form form {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.ztl-contact-form h2{
    font-family: 'Salsa', cursive;
    font-size: 32px;
    line-height:1.2;
}

.ztl-contact-form textarea {
    width: 100%;
    background-color: #f6f6f6;
    color: #777;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

.ztl-contact-form ::-webkit-input-placeholder {
    color: #777 !important;
}

.ztl-contact-form ::-moz-placeholder {
    opacity: 1 !important;
    color: #777 !important;
}

.ztl-contact-form :-ms-input-placeholder {
    color: #777 !important;
}

.ztl-contact-over-map {
    position: relative;
    min-height: 160px;
}

input:focus,
textarea {
    outline: 0;
}
:focus {
    outline:none;
}

.ztl-contact-form input[type=submit] {
    border-radius: 5px;
    height: 40px;
    font-size: 18px;
    box-shadow: none;
    text-shadow: none;
    border-color: transparent;
}

.post-password-form p{
    text-align:center;
}
.post-password-form input[type=password]{
    max-width: 250px;
    width:100%;
    height: 40px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 5px;
    padding: 0 10px;
    color: #777;
}
.post-password-form label{
    display: inline;
}

/*--------------------------------------------------------------------
17.0 404 page
----------------------------------------------------------------------*/
.error404 #page {
    background-size: cover;
    background: url('./images/404.jpg') top center;
}

.ztl-404 {
    padding: 180px 0 204px 0;
    text-align: center;
    color: #fff;
}

.ztl-404 .ztl-error-code {
    font-family: 'Salsa', cursive;
    font-size: 96px;
    padding-bottom: 30px;
}

.ztl-404-oops {
    font-size: 24px;
}

.ztl-404-page-description {
    font-family: 'Salsa', cursive;
    font-size: 36px;
    padding-bottom: 30px;
}

.ztl-404-page-directions {
    font-size: 16px;
    padding-bottom: 40px;
    color: #777;
}

#head-frame {
    height: 90px;
}

/*--------------------------------------------------------------------
17.1 No results page
----------------------------------------------------------------------*/
.no-results .page-title {
    font-size: 26px;
}

.no-results .page-header {
    border: none !important;
}

/*--------------------------------------------------------------------
18.0 Pricing plans pages
----------------------------------------------------------------------*/
.ztl-pricing {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.ztl-bars div {
    box-shadow: none !important;
}

/*--------------------------------------------------------------------
19.0 Staff page
----------------------------------------------------------------------*/
.ztl-staff-item {
    overflow: hidden;
    height: auto;
    padding: 0 0 4rem 0;
}

.ztl-social-single {
    position: relative;
    z-index: 1;
}

.ztl-staff-item:last-of-type {
    border-bottom: none !important;
}

.ztl-staff-item .item-left {
    width: 260px;
    float: left;
    padding: 25px 0;
    margin-right: 40px;
}

.ztl-staff-item .item-right {
    float: none;
    width: 100%;
    padding: 25px 0 0 25px;
}

.ztl-staff-item .image {
    position: relative;
    border-bottom: 6px solid;
}

.ztl-staff-item .social, .single-kiddie_staff .social {
    width: 100%;
    text-align: center;
}

.single-kiddie_staff .social{
    padding:1rem;    
}

.ztl-staff-item .social{
    padding-bottom:1rem;
}

.single-kiddie_staff .social .fa {
    color: #fff;
}

.single-kiddie_staff .social .fa:hover {
    color: #e8e8e8;
}

.ztl-staff-item .social a, .single-kiddie_staff .social a {
    color: #c2c2c2;
    padding-right: 10px;
    font-size: 16px;
}

.ztl-staff-item .social .fa, .single-kiddie_staff .social .fa {
    transition: color 0.25s ease-in-out;
}

.ztl-staff-item .social .fa:hover {
    color: #afafaf;
}

.ztl-staff-item .staff-title {
    font-size: 36px;
    font-weight: normal;
}

.ztl-staff-item .staff-position {
    font-size: 24px;
}

.ztl-staff-item .staff-description div, .item-row-description {
    background-color: #f6f6f6;
    width: 100%;
    padding: 10px 15px;
    text-align: right;
}

.ztl-staff-item .staff-description div span, .item-row-description span {
    font-weight: normal;
    float: left;
}

.ztl-staff-item .staff-description div span i, .item-row-description span i {
    padding-right: 5px;
    min-width: 25px;
}

.ztl-staff-item .staff-excerpt {
    color: #777;
}

.ztl-staff-item .staff-description {
    margin-top: 0.8rem;
}

.ztl-staff-item .staff-more {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.ztl-staff-item .read-more {
    color: #a0a0a0;
    text-decoration: none;
}

.ztl-staff-item .staff-more a {
    margin: 0px;
}

.ztl-staff-item .variation-2 .staff-title {
    font-size: 28px;
    font-family: 'Salsa', cursive;
    text-align: center;
    padding: 1rem 0;
}

.ztl-staff-item .variation-2 .staff-position {
    font-size: 20px;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

.ztl-staff-item .staff-excerpt {
    margin: 2rem 0 0 0;
    float: left;
}

.ztl-staff-item .item-wide {
    float: left;
    width: 100%;
}

.ztl-staff-item .variation-2 .item-left {
    width: 100%;
    margin-right: 0px;
    padding: 0;
}

.ztl-staff-item .variation-2 .item-left img {
    width: 100%;
}

.ztl-staff-item .variation-2 .item-right {
    padding: 0;
    float: left;
}

.ztl-staff-item-v-2 {
    width: 50%;
    float: left;
}

.ztl-staff-item .variation-2 .staff-description {
    float: left;
    width: 100%;
}

.ztl-staff-navigation-left {
    left: 0px;
}

.ztl-staff-navigation-right {
    right: 0px;
}

.ztl-staff-navigation {
    position: absolute;
    z-index: 101;
    top: 177px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.ztl-staff-navigation {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.ztl-staff-navigation:hover {
    cursor: pointer;
}

.ztl-staff-navigation-right:before {
    font-size: 26px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
    content: "\f105";
    font-family: "FontAwesome";
}

.ztl-staff-navigation-left:before {
    font-size: 26px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
    content: "\f104";
    font-family: "FontAwesome";
}

.single-kiddie_staff .staff-position {
    font-size: 24px;
    margin-top: -3.5rem;
    margin-bottom: 6rem;
}

/*--------------------------------------------------------------------
20.0 Courses listing page
----------------------------------------------------------------------*/
.ztl-course-item {
    margin: 0 0 4rem 0;
}

.ztl-course-item .image {
    border-bottom: 6px solid;
}

.ztl-course-item .image img {
    width: 100% !important;
}

.ztl-course-item .course-title {
    padding: 20px;
    text-align: center;
    font-family: 'Salsa', cursive;
    font-size: 28px;
}

.ztl-course-item .course-description div,
.ztl-staff-item .staff-description div,
.ztl-course-description div,
.ztl-staff-description div {
    background-color: #f6f6f6;
    width: 100%;
    padding: 1rem 2rem 1rem 1rem;
    text-align: right;
}

.ztl-course-item .course-description div:nth-child(even),
.ztl-course-description div:nth-child(even),
.ztl-staff-description div:nth-child(even),
.ztl-staff-item .staff-description div:nth-child(even) {
    background-color: #fff;
}

.ztl-course-item .course-description div span,
.ztl-course-description div span,
.ztl-staff-description div span,
.ztl-staff-item .staff-description div span {
    font-weight: normal;
    float: left;
}

.ztl-course-item .course-description div span i,
.ztl-staff-item .staff-description div span i,
.ztl-staff-description div span i,
.ztl-course-description div span i {
    padding-right: 5px;
    min-width: 25px;
}

.ztl-course-item,
.ztl-staff-item,
.ztl-course-description,
.ztl-staff-description {
    color: #777;
}

.ztl-course-item .course-more {
    text-align: center;
}

/*--------------------------------------------------------------------
21.0 Miscellaneous
----------------------------------------------------------------------*/

.fastgallery .fg-zoom-icon:before,
.fastgallery .fg-zoom-icon:after {
    font-family: Flaticon !important;
}

.fastgallery .icon-plus:before {
    content: "\f136" !important;
    font-size: 30px;
    /*flaticon-picture31*/
}

.home .wpcf7-response-output {
    color: #f2f2f2 !important;
}

.forcefullwidth_wrapper_tp_banner {
    overflow: hidden;
}

.ztl-accordion-title h4 {
    font-size: 16px !important;
}

.ztl-circle-menu {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

article .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading,
article .vc_progress_bar .vc_single_bar {
    background-color: #f6f6f6;
}

.vc_grid-filter {
    padding-bottom: 2rem;
}

.tt_tabs ul {
    margin: 0;
}

table.tt_timetable {
    margin-bottom: 0px;
}

.vc_sep_line {
    border-top: 1px solid #e8e8e8 !important;
}



#text-3.widget_text {
    margin: 0 0 2rem;
}
#kiddie_circles_widget-2.widget_kiddie_circles_widget {
    margin: 0 0 2rem;
}
.ztl-widget-staff-2 .ztl-staff-navigation {
    background-color: #ffcc33 !important;
}
.our_service_button_a {
    width: 110px; 
    margin: 0 auto; 
    padding: 4px 0 ; 
    text-align: center; 
    color: #fff; 
    background-color: #ff4121; 
    border-radius: 3px;
}
.our_service_button_b {
    width: 110px; 
    margin: 0 auto; 
    padding: 4px 0 ; 
    text-align: center; 
    color: #fff; 
    background-color: #ffd823; 
    border-radius: 3px;
}
.our_service_button_c {
    width: 110px; 
    margin: 0 auto; 
    padding: 4px 0 ; 
    text-align: center; 
    color: #fff; 
    background-color: #93c524; 
    border-radius: 3px;
}
.our_service_button_d {
    width: 110px; 
    margin: 0 auto; 
    padding: 4px 0 ; 
    text-align: center; 
    color: #fff; 
    background-color: #25a9e4; 
    border-radius: 3px;
}
.enroll_title {
    font-size: 38px;
    text-align: left;
    padding: 8px 0;
}
.enroll_title  span.enroll_title_a{
    font-family:Salsa, cursive; 
    color: #704825;
}
.enroll_title  span.enroll_title_b{
    font-family:'Open Sans', sans-serif;
}
.enroll_title_button {
    width: 100%;  
    background-color: #ffd62b; 
    color: #704825;  
    border-radius: 3px; 
    padding: 8px 0; 
    margin: 6px 0 0;"
}
#text-4.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-4.widget_text h4 {
    color: rgb(112, 72, 37); 
    padding: 0px 0 20px; 
    font-size: 28px;
    text-align: center;
}
#text-4.widget_text p {
    text-align: center;
}
#text-4.widget_text .science_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 110px;
    padding: 8px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
#text-5.widget_text .ztl-widget-testimonials-parallax {
    background-color: #75aecf;
}
#text-5.widget_text h1 {
    text-align: center;
    font-size: 42px;
    color: #fff;
    font-family:Salsa, cursive;
    padding: 45px 0 10px;
}
#text-5.widget_text span {
    font-family:'Open Sans', sans-serif;
}
#text-5.widget_text .counselling_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 10px;
}
#text-6.widget {
    margin: 0 0 4rem;
}
#text-6.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-6.widget_text .videos_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
}
#kiddie_gallery_widget-2.widget {
    margin: 0 0 2rem !important;
}
#kiddie_gallery_widget-2.widget_kiddie_gallery_widget {
    background-image: url(../images/testimonials_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: initial;
    top: 0px;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #ffcc66;
    padding-bottom: 120px;
} 
#kiddie_gallery_widget-2.widget_kiddie_gallery_widget h2 {
    padding-top: 4rem;
    color: #fff;
}
#kiddie_gallery_widget-2.widget_kiddie_gallery_widget h2.widget-title::after {
    background-color: #fff !important;
}
#kiddie_gallery_widget-2.widget_kiddie_gallery_widget .ztl-widget-gallery-container .ztl-widget-description {
    padding-bottom: 0rem !important;
}
#text-7.widget {
    margin: 0 0 0rem !important;
}
.media_button {
    background-color: #25a9e4; 
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
    top: -120px;
}
#text-8.widget {
    margin: 0 0 0rem !important;
}
#text-8.widget_text {
    background: #87582e;
    padding: 40px 0 30px;
    border-bottom: 1px solid #ffe4c4;
}
#text-8.widget_text h4 {
    color: #fff; 
    padding: 0 0 20px; 
    font-size: 24px;
    font-family:Salsa, cursive;
}
#text-13.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-13.widget_text h4 {
    color: rgb(112, 72, 37); 
    padding: 0px 0 20px; 
    font-size: 28px;
    text-align: center;
}
#text-13.widget_text p {
    text-align: center;
}
#text-13.widget_text .science_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 110px;
    padding: 8px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 90px;
}
#text-14.widget_text .ztl-widget-testimonials-parallax {
    background-color: #75aecf;
}
#text-14.widget_text h1 {
    text-align: center;
    font-size: 42px;
    color: #fff;
    font-family:Salsa, cursive;
    padding: 45px 0 10px;
}
#text-14.widget_text span {
    font-family:'Open Sans', sans-serif;
}
#text-14.widget_text .counselling_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 10px;
}
#text-15.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-15.widget_text .videos_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
}
#text-16.widget {
    margin: 0 0 0rem !important;
}
#kiddie_gallery_widget-4.widget {
    margin: 0 0 2rem !important;
}
#kiddie_gallery_widget-4.widget_kiddie_gallery_widget {
    background-image: url(../images/testimonials_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: initial;
    top: 0px;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #ffcc66;
    padding-bottom: 120px;
} 
#kiddie_gallery_widget-4.widget_kiddie_gallery_widget h2 {
    padding-top: 4rem;
    color: #fff;
}
#kiddie_gallery_widget-4.widget_kiddie_gallery_widget h2.widget-title::after {
    background-color: #fff !important;
}
#kiddie_gallery_widget-4.widget_kiddie_gallery_widget .ztl-widget-gallery-container .ztl-widget-description {
    padding-bottom: 0rem !important;
}
#text-17.widget {
    margin: 0 0 0rem !important;
}
#text-17.widget_text {
    background: #87582e;
    padding: 40px 0 30px;
    border-bottom: 1px solid #ffe4c4;
}
#text-17.widget_text h4 {
    color: #fff; 
    padding: 0 0 20px; 
    font-size: 24px;
    font-family:Salsa, cursive;
}
#text-21.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-22.widget_text .ztl-widget-testimonials-parallax {
    background-color: #75aecf;
}
#text-22.widget_text h1 {
    text-align: center;
    font-size: 42px;
    color: #fff;
    font-family:Salsa, cursive;
    padding: 45px 0 10px;
}
#text-22.widget_text span {
    font-family:'Open Sans', sans-serif;
}
#text-22.widget_text .counselling_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 10px;
}
#text-23.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-23.widget_text .videos_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 140px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
}
#text-25.widget {
    margin: 0 0 0rem !important;
}
#text-25.widget_text {
    background: #87582e;
    padding: 40px 0 30px;
    border-bottom: 1px solid #ffe4c4;
}
#text-25.widget_text h4 {
    color: #fff; 
    padding: 0 0 20px; 
    font-size: 24px;
    font-family:Salsa, cursive;
}

#text-21.widget_text h2 {
    text-align: center;
    font-size: 42px;
    color: rgb(112, 72, 37);
    font-family:Salsa, cursive; 
}
#text-21.widget_text h4 {
    color: rgb(112, 72, 37); 
    padding: 0px 0 20px; 
    font-size: 28px;
    text-align: center;
}
#text-21.widget_text p {
    text-align: center;
}
#text-21.widget_text .science_button {
    background-color: #ffd823; 
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 110px;
    padding: 8px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.lang-item {
    list-style: none;
    width: 60px;
    text-align: center;
    float: right;
}
.lang-item a {
    color: #fff !important;
    font-size: 14px;
}


.contact_title {
    font-family:Salsa, cursive;
    color: #FFD823;
    margin-bottom: 0.6rem;
}
.map_title {
    font-family:Salsa, cursive;
    color: #fff;
    margin-bottom: 2rem;
}

.wpcf7#wpcf7-f3273-p3622-o1 input {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p3622-o1 textarea {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p3622-o1 select {
    width: 100%;
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
    padding: 8px;
    border-radius: 5px;
}
.wpcf7#wpcf7-f3273-p3622-o1 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3622-o1 ::-moz-placeholder { /* Firefox 19+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3622-o1 :-ms-input-placeholder { /* IE 10+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3622-o1 :-moz-placeholder { /* Firefox 18- */
  color: #777;
}

.wpcf7#wpcf7-f3273-p3817-o1 input {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p3817-o1 textarea {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p3817-o1 select {
    width: 100%;
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
    padding: 8px;
    border-radius: 5px;
}
.wpcf7#wpcf7-f3273-p3817-o1 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3817-o1 ::-moz-placeholder { /* Firefox 19+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3817-o1 :-ms-input-placeholder { /* IE 10+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p3817-o1 :-moz-placeholder { /* Firefox 18- */
  color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 input {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 textarea {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 select {
    width: 100%;
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #777;
    padding: 8px;
    border-radius: 5px;
}
.wpcf7#wpcf7-f3273-p4043-o1 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 ::-moz-placeholder { /* Firefox 19+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 :-ms-input-placeholder { /* IE 10+ */
  color: #777;
}
.wpcf7#wpcf7-f3273-p4043-o1 :-moz-placeholder { /* Firefox 18- */
  color: #777;
}


.wpcf7-form p {
    margin-bottom: 1rem;
}
.wpcf7-form-control-wrap textarea {
    width: 100%;
    height: 180px;
    background-color: #704825;
    border-color: #704825;
    color: #fff;
}
.wpcf7-form-control-wrap input {
    width: 100%;
    background-color: #704825;
    border-color: #704825;
    color: #fff;
}
.wpcf7-form .wpcf7-submit {
    background-color: #ffd823 !important;
    text-align: center;
    font-size: 16px;
    color: #704825 !important;
    width: 100px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 30px;
    border: 0;
}


#wpcf7-f3560-o1 ::-webkit-input-placeholder { 
  color: #fff;
}
#wpcf7-f3560-o1 ::-moz-placeholder { 
  color: #fff;
}
#wpcf7-f3560-o1 :-ms-input-placeholder {
  color: #fff;
}
#wpcf7-f3560-o1 :-moz-placeholder { 
  color: #fff;
} 

#colophon.site-footer {
    color: #fff;
}
#text-10.widget_text {
    color: #fff;
}
#text-10.widget {
    margin: 4.5rem 0 5rem;
}
#kiddie_recent_posts_widget-3.widget {
    margin: 4.5rem 0 5rem;
}
#colophon.site-footer .about_us_img {
    background-color: #fff;
    padding: 15px 84px;
}
#text-11.widget_text {
    color: #fff;
}
#kiddie_staff_widget-2.widget_kiddie_staff_widget .owl-dots {
    display: none !important;
}
.fa-facebook {
    font-size: 14px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    padding-right: 5px;
}
.fa-youtube {
    font-size: 14px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    padding-right: 5px;
}
.fa-long-arrow-right {
    font-size: 21px !important;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    color: #777;
    text-align: center;
    width: 100%;
}

.form_select_week {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}
.form_select_week_left {
    border-right: 1px solid #fff;
}
.form_select_week_right {
    border-left: 1px solid #fff;
}
.label_width {
    width: 100%;
}

#wpcf7-f5-p3682-o1 ,#wpcf7-f3751-p3752-o1 ,#wpcf7-f5-p3806-o1 ,#wpcf7-f3751-p3865-o1 ,#wpcf7-f3751-p4075-o1 ,#wpcf7-f5-p4067-o1 ,#wpcf7-f4183-p3682-o1 ,#wpcf7-f4186-p4067-o1 ,#wpcf7-f4188-p4075-o1 ,#wpcf7-f4190-p3752-o1 {
    color: #795433;
}

#wpcf7-f5-p3682-o1 .wpcf7-select  ,#wpcf7-f3751-p3752-o1 .wpcf7-select ,#wpcf7-f5-p3806-o1 .wpcf7-select ,#wpcf7-f3751-p3865-o1 .wpcf7-select ,#wpcf7-f3751-p4075-o1 .wpcf7-select ,#wpcf7-f5-p4067-o1 .wpcf7-select ,#wpcf7-f4183-p3682-o1 .wpcf7-select ,#wpcf7-f4186-p4067-o1 .wpcf7-select ,#wpcf7-f4188-p4075-o1 .wpcf7-select ,#wpcf7-f4190-p3752-o1 .wpcf7-select {
    border-color: rgb(215, 215, 215);
}

#wpcf7-f5-p3682-o1 .form_part1 ,#wpcf7-f3751-p3752-o1 .form_part1 ,#wpcf7-f5-p3806-o1 .form_part1 ,#wpcf7-f3751-p3865-o1 .form_part1 ,#wpcf7-f3751-p4075-o1 .form_part1 ,#wpcf7-f5-p4067-o1 .form_part1 ,#wpcf7-f4183-p3682-o1 .form_part1 ,#wpcf7-f4186-p4067-o1 .form_part1 ,#wpcf7-f4188-p4075-o1 .form_part1 ,#wpcf7-f4190-p3752-o1 .form_part1 {
    padding-bottom: 15px;
}
#wpcf7-f5-p3682-o1 .form_part1_5 ,#wpcf7-f3751-p3752-o1 .form_part1_5 ,#wpcf7-f5-p3806-o1 .form_part1_5 ,#wpcf7-f3751-p3865-o1 .form_part1_5 ,#wpcf7-f3751-p4075-o1 .form_part1_5 ,#wpcf7-f5-p4067-o1 .form_part1_5 ,#wpcf7-f4183-p3682-o1 .form_part1_5 ,#wpcf7-f4186-p4067-o1 .form_part1_5 ,#wpcf7-f4188-p4075-o1 .form_part1_5 ,#wpcf7-f4190-p3752-o1 .form_part1_5 {
    text-align: right;
    padding: 15px 0;
}
#wpcf7-f5-p3682-o1 .form_part2 ,#wpcf7-f3751-p3752-o1 .form_part2 ,#wpcf7-f5-p3806-o1 .form_part2 ,#wpcf7-f3751-p3865-o1 .form_part2 ,#wpcf7-f3751-p4075-o1 .form_part2 ,#wpcf7-f5-p4067-o1 .form_part2 ,#wpcf7-f4183-p3682-o1 .form_part2 ,#wpcf7-f4186-p4067-o1 .form_part2 ,#wpcf7-f4188-p4075-o1 .form_part2 ,#wpcf7-f4190-p3752-o1 .form_part2 {
    padding-bottom: 10px;
}
#wpcf7-f5-p3682-o1 .form_part2_5 ,#wpcf7-f3751-p3752-o1 .form_part2_5 ,#wpcf7-f5-p3806-o1 .form_part2_5 ,#wpcf7-f3751-p3865-o1 .form_part2_5 ,#wpcf7-f3751-p4075-o1 .form_part2_5 ,#wpcf7-f5-p4067-o1 .form_part2_5 ,#wpcf7-f4183-p3682-o1 .form_part2_5 ,#wpcf7-f4186-p4067-o1 .form_part2_5 ,#wpcf7-f4188-p4075-o1 .form_part2_5 ,#wpcf7-f4190-p3752-o1 .form_part2_5 {
    margin: 0 5px;
}
#wpcf7-f5-p3682-o1 .form_part3 ,#wpcf7-f3751-p3752-o1 .form_part3 ,#wpcf7-f5-p3806-o1 .form_part3 ,#wpcf7-f3751-p3865-o1 .form_part3 ,#wpcf7-f3751-p4075-o1 .form_part3 ,#wpcf7-f5-p4067-o1 .form_part3 ,#wpcf7-f4183-p3682-o1 .form_part3 ,#wpcf7-f4186-p4067-o1 .form_part3 ,#wpcf7-f4188-p4075-o1 .form_part3 ,#wpcf7-f4190-p3752-o1 .form_part3 {
    padding-bottom: 20px;
}
#wpcf7-f5-p3682-o1 .child ,#wpcf7-f3751-p3752-o1 .child ,#wpcf7-f5-p3806-o1 .child ,#wpcf7-f3751-p3865-o1 .child ,#wpcf7-f3751-p4075-o1 .child ,#wpcf7-f5-p4067-o1 .child ,#wpcf7-f4183-p3682-o1 .child ,#wpcf7-f4186-p4067-o1 .child ,#wpcf7-f4188-p4075-o1 .child ,#wpcf7-f4190-p3752-o1 .child {
    height: 26px;
    width: 70px;
    margin: 0 8px;
    float: left;
}
#wpcf7-f5-p3682-o1 .form_select ,#wpcf7-f3751-p3752-o1 .form_select ,#wpcf7-f5-p3806-o1 .form_select ,#wpcf7-f3751-p3865-o1 .form_select ,#wpcf7-f3751-p4075-o1 .form_select ,#wpcf7-f5-p4067-o1 .form_select ,#wpcf7-f4183-p3682-o1 .form_select ,#wpcf7-f4186-p4067-o1 .form_select ,#wpcf7-f4188-p4075-o1 .form_select ,#wpcf7-f4190-p3752-o1 .form_select {
    width: 100%;
    padding: 8px;
    color: #795433;
    padding-left: 5px;
}
#wpcf7-f5-p3682-o1 .form_select2 ,#wpcf7-f3751-p3752-o1 .form_select2 ,#wpcf7-f5-p3806-o1 .form_select2 ,#wpcf7-f3751-p3865-o1 .form_select2 ,#wpcf7-f3751-p4075-o1 .form_select2 ,#wpcf7-f5-p4067-o1 .form_select2 ,#wpcf7-f4183-p3682-o1 .form_select2 ,#wpcf7-f4186-p4067-o1 .form_select2 ,#wpcf7-f4188-p4075-o1 .form_select2 ,#wpcf7-f4190-p3752-o1 .form_select2 {
    width: 120px;
    padding-left: 5px;
    margin-left: 15px;
}
#wpcf7-f5-p3682-o1 .form_select3 ,#wpcf7-f3751-p3752-o1 .form_select3 ,#wpcf7-f5-p3806-o1 .form_select3 ,#wpcf7-f3751-p3865-o1 .form_select3 ,#wpcf7-f3751-p4075-o1 .form_select3 ,#wpcf7-f5-p4067-o1 .form_select3 ,#wpcf7-f4183-p3682-o1 .form_select3 ,#wpcf7-f4186-p4067-o1 .form_select3 ,#wpcf7-f4188-p4075-o1 .form_select3 ,#wpcf7-f4190-p3752-o1 .form_select3 {
    width: 100%;
    color: #795433;
    padding-left: 5px;
}
#wpcf7-f5-p3682-o1 .form_select4 ,#wpcf7-f3751-p3752-o1 .form_select4 ,#wpcf7-f5-p3806-o1 .form_select4 ,#wpcf7-f3751-p3865-o1 .form_select4 ,#wpcf7-f3751-p4075-o1 .form_select4 ,#wpcf7-f5-p4067-o1 .form_select4 ,#wpcf7-f4183-p3682-o1 .form_select4 ,#wpcf7-f4186-p4067-o1 .form_select4 ,#wpcf7-f4188-p4075-o1 .form_select4 ,#wpcf7-f4190-p3752-o1 .form_select4 {
    width: 70%;
    padding-left: 5px;
    margin-left: 15px;
    color: #795433;
}
#wpcf7-f5-p3682-o1 .form_feature ,#wpcf7-f3751-p3752-o1 .form_feature ,#wpcf7-f5-p3806-o1 .form_feature ,#wpcf7-f3751-p3865-o1 .form_feature ,#wpcf7-f3751-p4075-o1 .form_feature ,#wpcf7-f5-p4067-o1 .form_feature ,#wpcf7-f4183-p3682-o1 .form_feature ,#wpcf7-f4186-p4067-o1 .form_feature ,#wpcf7-f4188-p4075-o1 .form_feature ,#wpcf7-f4190-p3752-o1 .form_feature {
    width: 83%;
    float: right;
}
#wpcf7-f5-p3682-o1 .form_feature_label ,#wpcf7-f3751-p3752-o1 .form_feature_label ,#wpcf7-f5-p3806-o1 .form_feature_label ,#wpcf7-f3751-p3865-o1 .form_feature_label ,#wpcf7-f3751-p4075-o1 .form_feature_label ,#wpcf7-f5-p4067-o1 .form_feature_label ,#wpcf7-f4183-p3682-o1 .form_feature_label ,#wpcf7-f4186-p4067-o1 .form_feature_label ,#wpcf7-f4188-p4075-o1 .form_feature_label ,#wpcf7-f4190-p3752-o1 .form_feature_label {
    float: left; 
    padding-top: 8px;
    padding-left: 7%;
}
#wpcf7-f5-p3682-o1 .schedule ,#wpcf7-f3751-p3752-o1 .schedule ,#wpcf7-f5-p3806-o1 .schedule ,#wpcf7-f3751-p3865-o1 .schedule ,#wpcf7-f3751-p4075-o1 .schedule ,#wpcf7-f5-p4067-o1 .schedule ,#wpcf7-f4183-p3682-o1 .schedule ,#wpcf7-f4186-p4067-o1 .schedule ,#wpcf7-f4188-p4075-o1 .schedule ,#wpcf7-f4190-p3752-o1 .schedule {
    background: #8fc646;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}
#wpcf7-f5-p3682-o1 .schedule_select ,#wpcf7-f3751-p3752-o1 .schedule_select ,#wpcf7-f5-p3806-o1 .schedule_select ,#wpcf7-f3751-p3865-o1 .schedule_select ,#wpcf7-f3751-p4075-o1 .schedule_select ,#wpcf7-f5-p4067-o1 .schedule_select ,#wpcf7-f4183-p3682-o1 .schedule_select ,#wpcf7-f4186-p4067-o1 .schedule_select ,#wpcf7-f4188-p4075-o1 .schedule_select ,#wpcf7-f4190-p3752-o1 .schedule_select {
    width: 100%;
    padding: 4px;
    color: #795433;
    padding-left: 5px;
}
#wpcf7-f5-p3682-o1 .left_man ,#wpcf7-f3751-p3752-o1 .left_man ,#wpcf7-f5-p3806-o1 .left_man ,#wpcf7-f3751-p3865-o1 .left_man ,#wpcf7-f3751-p4075-o1 .left_man ,#wpcf7-f5-p4067-o1 .left_man ,#wpcf7-f4183-p3682-o1 .left_man ,#wpcf7-f4186-p4067-o1 .left_man ,#wpcf7-f4188-p4075-o1 .left_man ,#wpcf7-f4190-p3752-o1 .left_man {
    height: 500px;
}
#wpcf7-f5-p3682-o1 .right_man ,#wpcf7-f3751-p3752-o1 .right_man ,#wpcf7-f5-p3806-o1 .right_man ,#wpcf7-f3751-p3865-o1 .right_man ,#wpcf7-f3751-p4075-o1 .right_man ,#wpcf7-f5-p4067-o1 .right_man ,#wpcf7-f4183-p3682-o1 .right_man ,#wpcf7-f4186-p4067-o1 .right_man ,#wpcf7-f4188-p4075-o1 .right_man ,#wpcf7-f4190-p3752-o1 .right_man {
    background-color: #3893c6; 
    height: 500px;
}
#wpcf7-f5-p3682-o1 .reservation_left ,#wpcf7-f3751-p3752-o1 .reservation_left ,#wpcf7-f5-p3806-o1 .reservation_left ,#wpcf7-f3751-p3865-o1 .reservation_left ,#wpcf7-f3751-p4075-o1 .reservation_left ,#wpcf7-f5-p4067-o1 .reservation_left ,#wpcf7-f4183-p3682-o1 .reservation_left ,#wpcf7-f4186-p4067-o1 .reservation_left ,#wpcf7-f4188-p4075-o1 .reservation_left ,#wpcf7-f4190-p3752-o1 .reservation_left {
    position: relative;
}
#wpcf7-f5-p3682-o1 .reservation_right ,#wpcf7-f3751-p3752-o1 .reservation_right ,#wpcf7-f5-p3806-o1 .reservation_right ,#wpcf7-f3751-p3865-o1 .reservation_right ,#wpcf7-f3751-p4075-o1 .reservation_right ,#wpcf7-f5-p4067-o1 .reservation_right ,#wpcf7-f4183-p3682-o1 .reservation_right ,#wpcf7-f4186-p4067-o1 .reservation_right ,#wpcf7-f4188-p4075-o1 .reservation_right ,#wpcf7-f4190-p3752-o1 .reservation_right {
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 44%;
}
#wpcf7-f5-p3682-o1 .arrow ,#wpcf7-f3751-p3752-o1 .arrow ,#wpcf7-f5-p3806-o1 .arrow ,#wpcf7-f3751-p3865-o1 .arrow ,#wpcf7-f3751-p4075-o1 .arrow ,#wpcf7-f5-p4067-o1 .arrow ,#wpcf7-f4183-p3682-o1 .arrow ,#wpcf7-f4186-p4067-o1 .arrow ,#wpcf7-f4188-p4075-o1 .arrow ,#wpcf7-f4190-p3752-o1 .arrow  {
    color: #fff; 
    position: relative; 
    height: 90px;
}
#wpcf7-f5-p3682-o1 .arrow img ,#wpcf7-f3751-p3752-o1 .arrow img ,#wpcf7-f5-p3806-o1 .arrow img ,#wpcf7-f3751-p3865-o1 .arrow img ,#wpcf7-f3751-p4075-o1 .arrow img ,#wpcf7-f5-p4067-o1 .arrow img ,#wpcf7-f4183-p3682-o1 .arrow img ,#wpcf7-f4186-p4067-o1 .arrow img ,#wpcf7-f4188-p4075-o1 .arrow img ,#wpcf7-f4190-p3752-o1 .arrow img {
    width: 100%; 
    position: absolute;
    height: 75px;
}
#wpcf7-f3751-p3752-o1 .arrow2 ,#wpcf7-f3751-p3752-o1 .arrow2 ,#wpcf7-f5-p3806-o1 .arrow2 ,#wpcf7-f3751-p3865-o1 .arrow2 ,#wpcf7-f3751-p4075-o1 .arrow2 ,#wpcf7-f5-p4067-o1 .arrow2 ,#wpcf7-f4183-p3682-o1 .arrow2 ,#wpcf7-f4186-p4067-o1 .arrow2 ,#wpcf7-f4188-p4075-o1 .arrow2 ,#wpcf7-f4190-p3752-o1 .arrow2 {
    color: #fff; 
    position: relative; 
    height: 90px;
    margin-top: 150px;
}
#wpcf7-f3751-p3752-o1 .arrow2 img ,#wpcf7-f3751-p3752-o1 .arrow2 img ,#wpcf7-f5-p3806-o1 .arrow2 img ,#wpcf7-f3751-p3865-o1 .arrow2 img ,#wpcf7-f3751-p4075-o1 .arrow2 img ,#wpcf7-f5-p4067-o1 .arrow2 img ,#wpcf7-f4183-p3682-o1 .arrow2 img ,#wpcf7-f4186-p4067-o1 .arrow2 img ,#wpcf7-f4188-p4075-o1 .arrow2 img ,#wpcf7-f4190-p3752-o1 .arrow2 img {
    width: 100%; 
    position: absolute;
    height: 75px;
}
#wpcf7-f5-p3682-o1 .arrow_content ,#wpcf7-f3751-p3752-o1 .arrow_content ,#wpcf7-f5-p3806-o1 .arrow_content ,#wpcf7-f3751-p3865-o1 .arrow_content ,#wpcf7-f3751-p4075-o1 .arrow_content ,#wpcf7-f5-p4067-o1 .arrow_content ,#wpcf7-f4183-p3682-o1 .arrow_content ,#wpcf7-f4186-p4067-o1 .arrow_content ,#wpcf7-f4188-p4075-o1 .arrow_content ,#wpcf7-f4190-p3752-o1 .arrow_content {
    position: absolute; 
    top: 12px; 
    left: 20px;
}
#wpcf7-f5-p3682-o1 .arrow_content2 ,#wpcf7-f3751-p3752-o1 .arrow_content2 ,#wpcf7-f5-p3806-o1 .arrow_content2 ,#wpcf7-f3751-p3865-o1 .arrow_content2 ,#wpcf7-f3751-p4075-o1 .arrow_content2 ,#wpcf7-f5-p4067-o1 .arrow_content2 ,#wpcf7-f4183-p3682-o1 .arrow_content2 ,#wpcf7-f4186-p4067-o1 .arrow_content2 ,#wpcf7-f4188-p4075-o1 .arrow_content2 ,#wpcf7-f4190-p3752-o1 .arrow_content2 {
    position: absolute; 
    top: 38px; 
    left: 23px;
}
#wpcf7-f5-p3682-o1 .wpcf7_submit ,#wpcf7-f3751-p3752-o1 .wpcf7_submit ,#wpcf7-f5-p3806-o1 .wpcf7_submit ,#wpcf7-f3751-p3865-o1 .wpcf7_submit ,#wpcf7-f3751-p4075-o1 .wpcf7_submit ,#wpcf7-f5-p4067-o1 .wpcf7_submit ,#wpcf7-f4183-p3682-o1 .wpcf7_submit ,#wpcf7-f4186-p4067-o1 .wpcf7_submit ,#wpcf7-f4188-p4075-o1 .wpcf7_submit ,#wpcf7-f4190-p3752-o1 .wpcf7_submit {
    background-color: #ffd823;
    text-align: center;
    font-size: 16px;
    color: #704825;
    width: 120px;
    padding: 10px 0;
    border-radius: 3px;
    margin: 0 auto;
    margin-top: 20px;
    border: 0;
}
#wpcf7-f5-p3682-o1 .form_left ,#wpcf7-f3751-p3752-o1 .form_left ,#wpcf7-f5-p3806-o1 .form_left ,#wpcf7-f3751-p3865-o1 .form_left ,#wpcf7-f3751-p4075-o1 .form_left ,#wpcf7-f5-p4067-o1 .form_left ,#wpcf7-f4183-p3682-o1 .form_left ,#wpcf7-f4186-p4067-o1 .form_left ,#wpcf7-f4188-p4075-o1 .form_left ,#wpcf7-f4190-p3752-o1 .form_left {
    float: left;
    width: 100%;
}
#wpcf7-f5-p3682-o1 .form_left2 ,#wpcf7-f3751-p3752-o1 .form_left2  ,#wpcf7-f5-p3806-o1 .form_left2 ,#wpcf7-f3751-p3865-o1 .form_left2 ,#wpcf7-f3751-p4075-o1 .form_left2 ,#wpcf7-f5-p4067-o1 .form_left2 ,#wpcf7-f4183-p3682-o1 .form_left2 ,#wpcf7-f4186-p4067-o1 .form_left2 ,#wpcf7-f4188-p4075-o1 .form_left2 ,#wpcf7-f4190-p3752-o1 .form_left2 {
    float: left;
    padding-left: 20px;
    width: 100%;
}

#wpcf7-f5-p3682-o1 input ,#wpcf7-f3751-p3752-o1 input  ,#wpcf7-f5-p3806-o1 input ,#wpcf7-f3751-p3865-o1 input ,#wpcf7-f3751-p4075-o1 input ,#wpcf7-f5-p4067-o1 input ,#wpcf7-f4183-p3682-o1 input ,#wpcf7-f4186-p4067-o1 input ,#wpcf7-f4188-p4075-o1 input ,#wpcf7-f4190-p3752-o1 input {
    width: 100%;
    background-color: #fff;
    border-color: rgb(215, 215, 215);
    color: #795433;
    border-radius: 2px;
}

#wpcf7-f5-p3682-o1 .date_time  #wpcf7-f3751-p3752-o1 .date_time ,#wpcf7-f5-p3806-o1 .date_time ,#wpcf7-f3751-p3865-o1 .date_time ,#wpcf7-f3751-p4075-o1 .date_time ,#wpcf7-f5-p4067-o1 .date_time ,#wpcf7-f4183-p3682-o1 .date_time ,#wpcf7-f4186-p4067-o1 .date_time ,#wpcf7-f4188-p4075-o1 .date_time ,#wpcf7-f4190-p3752-o1 .date_time {
    border-width: 1px;
    border-color: rgb(215, 215, 215);
    width: 100%;
}

#wpcf7-f5-p3682-o1 ::-webkit-input-placeholder ,#wpcf7-f3751-p3752-o1 ::-webkit-input-placeholder ,#wpcf7-f5-p3806-o1 ::-webkit-input-placeholder ,#wpcf7-f3751-p3865-o1 ::-webkit-input-placeholder ,#wpcf7-f3751-p4075-o1 ::-webkit-input-placeholder ,#wpcf7-f5-p4067-o1 ::-webkit-input-placeholder ,#wpcf7-f4183-p3682-o1 ::-webkit-input-placeholder ,#wpcf7-f4186-p4067-o1 ::-webkit-input-placeholder ,#wpcf7-f4188-p4075-o1 ::-webkit-input-placeholder ,#wpcf7-f4190-p3752-o1 ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgb(215, 215, 215);
}
#wpcf7-f5-p3682-o1 ::-moz-placeholder ,#wpcf7-f3751-p3752-o1 ::-moz-placeholder ,#wpcf7-f5-p3806-o1 ::-moz-placeholder ,#wpcf7-f3751-p3865-o1 ::-moz-placeholder ,#wpcf7-f3751-p4075-o1 ::-moz-placeholder ,#wpcf7-f5-p4067-o1 ::-moz-placeholder ,#wpcf7-f4183-p3682-o1 ::-moz-placeholder ,#wpcf7-f4186-p4067-o1 ::-moz-placeholder ,#wpcf7-f4188-p4075-o1 ::-moz-placeholder ,#wpcf7-f4190-p3752-o1 ::-moz-placeholder { /* Firefox 19+ */
  color: rgb(215, 215, 215);
}
#wpcf7-f5-p3682-o1 :-ms-input-placeholder ,#wpcf7-f3751-p3752-o1 :-ms-input-placeholder ,#wpcf7-f5-p3806-o1 :-ms-input-placeholder ,#wpcf7-f3751-p3865-o1 :-ms-input-placeholder ,#wpcf7-f3751-p4075-o1 :-ms-input-placeholder ,#wpcf7-f5-p4067-o1 :-ms-input-placeholder ,#wpcf7-f4183-p3682-o1 :-ms-input-placeholder ,#wpcf7-f4186-p4067-o1 :-ms-input-placeholder ,#wpcf7-f4188-p4075-o1 :-ms-input-placeholder ,#wpcf7-f4190-p3752-o1 :-ms-input-placeholder { /* IE 10+ */
  color: rgb(215, 215, 215);
}
#wpcf7-f5-p3682-o1 :-moz-placeholder ,#wpcf7-f3751-p3752-o1 :-moz-placeholder ,#wpcf7-f5-p3806-o1 :-moz-placeholder ,#wpcf7-f3751-p3865-o1 :-moz-placeholder ,#wpcf7-f3751-p4075-o1 :-moz-placeholder ,#wpcf7-f5-p4067-o1 :-moz-placeholder ,#wpcf7-f4183-p3682-o1 :-moz-placeholder ,#wpcf7-f4186-p4067-o1 :-moz-placeholder ,#wpcf7-f4188-p4075-o1 :-moz-placeholder ,#wpcf7-f4190-p3752-o1 :-moz-placeholder { /* Firefox 18- */
  color: rgb(215, 215, 215);
}

.events_title {
    font-family: 'Salsa', cursive; 
    color: #93c524; 
    font-size: 20px; 
    line-height: 1.3;
}
.events_gray {
    color: #666666; 
    background-color: #f2f2f2; 
    font-size: 14px; 
    line-height: 1.3;
}
.events_gray1 {
    color: #93C524; 
    height: 42px; 
    font-family: 'Salsa', cursive; 
    background-color: #fff; 
    font-size: 20px;
    padding-top: 3px;
    border-bottom: 1px solid #fff;
    line-height: 1;
}
.events_gray2 {
    color: #fff; 
    background: #93c524;  
    height: 42px; 
    padding-top: 6px;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}
.events_gray2_5 {
    color: #fff; 
    background: #fff;  
    height: 42px; 
    border-bottom: 1px solid #fff;
}
.events_gray3 {
    height: 42px;
    padding-top: 3px;
    border-bottom: 1px solid #f2f2f2;
}
.events_gray4 {
    height: 42px;
    padding-top: 3px;
    border-bottom: 1px solid #f2f2f2;
}
.events_gray5 {
    height: 42px; 
    padding-left: 25px;
    padding-top: 3px;
    border-bottom: 1px solid #f2f2f2;
}
.events_white {
    color: #666666; 
    font-size: 14px; 
    background-color: #fff; 
    line-height: 1.3;
}
.events_white1 {
    height: 42px; 
    background-color: #fff;
    padding-top: 3px;
    border-bottom: 1px solid #fff;
}
.events_white2 {
    height: 42px; 
    color: #fff; 
    background-color: #93c524;
    padding-top: 6px;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}
.events_white2_5 {
    height: 42px; 
    color: #fff; 
    background-color: #fff;
    border-bottom: 1px solid #fff;
}
.events_white3 {
    height: 42px;
    padding-top: 3px;
    border-bottom: 1px solid #fff;
}
.events_white4 {
    height: 42px;
    padding-top: 3px;
    border-bottom: 1px solid #fff;
}
.events_white5 {
    height: 42px;
    padding-top: 3px;
    padding-left: 25px;
    border-bottom: 1px solid #fff;
}

.shopp_button .vc_btn3-style-modern{
    background-color: #ff6600 !important;
    color: #fff !important;
    padding: 8px 30px;
    font-size: 16px;
}

.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: #ffd62b !important;
}
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body {
    background-color: #fff !important;
    border-left-color: #fff !important;
    border-right-color: #fff !important;
}

.left_man {
    height: 500px;
}
.right_man {
    background-color: #3893c6; 
    height: 500px;
}
nav ul li {
    width: 82px;
    height: 92px;
}
nav ul li ul li {
    width: 100%;
    height: auto;
}
.main-navigation .fa::before {
    display: none;
}

/* en, hk, cn */
.menu-item.menu-item-3541, .menu-item.menu-item-3882, .menu-item.menu-item-4089 {
    background: url(../images/top_icon_Home_C.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3775, .menu-item.menu-item-4430, .menu-item.menu-item-4086 {
    background: url(../images/top_icon_Prenatal.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-4414, .menu-item.menu-item-3878, .menu-item.menu-item-4410 {
    background: url(../images/top_icon_Early-Learning.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-4097, .menu-item.menu-item-4096, .menu-item.menu-item-4095 {
    background: url(../images/top_icon_Moral.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3786, .menu-item.menu-item-3883, .menu-item.menu-item-4378 {
    background: url(../images/top_icon_Health.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3926, .menu-item.menu-item-3925, .menu-item.menu-item-4084 {
    background: url(../images/top_icon_Promotion.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3790, .menu-item.menu-item-3869, .menu-item.menu-item-4082 {
    background: url(../images/top_icon_Shopping.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3789, .menu-item.menu-item-3879, .menu-item.menu-item-4093 {
    background: url(../images/top_icon_Dealer.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3791, .menu-item.menu-item-3875, .menu-item.menu-item-4088 {
    background: url(../images/top_icon_Media.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.menu-item.menu-item-3792, .menu-item.menu-item-3880, .menu-item.menu-item-4094 {
    background: url(../images/top_icon_Contact.png);
    background-size: 50px;
    background-position: 16px 2px;
    background-repeat: no-repeat;
    background-color: transparent;
}
.site-header.fixed-header nav ul.menu > li {
    width: 82px;
    height: 62px;
}
.site-header.fixed-header .menu-item.menu-item-3541, .site-header.fixed-header .menu-item.menu-item-3882, .site-header.fixed-header .menu-item.menu-item-4089, .site-header.fixed-header .menu-item.menu-item-3775, .site-header.fixed-header .menu-item.menu-item-4430, .site-header.fixed-header .menu-item.menu-item-4086, .site-header.fixed-header .menu-item.menu-item-4414, .site-header.fixed-header .menu-item.menu-item-3878, .site-header.fixed-header .menu-item.menu-item-4410, .site-header.fixed-header .menu-item.menu-item-4097, .site-header.fixed-header .menu-item.menu-item-4096, .site-header.fixed-header .menu-item.menu-item-4095, .site-header.fixed-header .menu-item.menu-item-3786, .site-header.fixed-header .menu-item.menu-item-3883, .site-header.fixed-header .menu-item.menu-item-4378, .site-header.fixed-header .menu-item.menu-item-3926, .site-header.fixed-header .menu-item.menu-item-3925, .site-header.fixed-header .menu-item.menu-item-4084, .site-header.fixed-header .menu-item.menu-item-3790, .site-header.fixed-header .menu-item.menu-item-3869, .site-header.fixed-header .menu-item.menu-item-4082, .site-header.fixed-header .menu-item.menu-item-3789, .site-header.fixed-header .menu-item.menu-item-3879, .site-header.fixed-header .menu-item.menu-item-4093, .site-header.fixed-header .menu-item.menu-item-3791, .site-header.fixed-header .menu-item.menu-item-3875, .site-header.fixed-header .menu-item.menu-item-4088, .site-header.fixed-header .menu-item.menu-item-3792, .site-header.fixed-header .menu-item.menu-item-3880, .site-header.fixed-header .menu-item.menu-item-4094 {
    background: transparent;
}

.fixed-header .main-navigation ul.menu > li:hover {
    background-color: #93c524 !important;
}

.main-navigation .current_page_item, .main-navigation .current_page_ancestor, .main-navigation .current-menu-item, .main-navigation .current-menu-ancestor {
    background-color: #93c524 !important;
}
.header_login {
    float: right;
    font-size: 14px;
    color: #fff;
    padding: 2px 10px 0;
}
.header_login a {
    color: #fff !important;
}
.slide_button {
    background-color: #26a4eb !important;
    padding: 5px 20px !important;
}
.owl-item {
    text-align: center;
}
.top_buy_button {
    width: 128px;
    float: right;
    height: 28px;
    margin-top: 2px;
    background-color: #efb43f;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    margin-left: 5px;
    font-weight: 600;
}
.top_buy_button {
       display: none;
}
.arrow2_img {
    height: 95px !important;
}


@media (max-width:992px){
    .form_select_week {
        border-right: 0px solid #fff;
        border-left: 0px solid #fff;
    }
    .form_select_week_left {
        border-right: 0px solid #fff;
    }
    .form_select_week_right {
        border-left: 0px solid #fff;
    }
    #wpcf7-f5-p3682-o1 .form_part2_5 ,#wpcf7-f3751-p3752-o1 .form_part2_5 {
        margin: 0px;
        padding-bottom: 10px;
    }
    #wpcf7-f5-p3682-o1 .form_feature_label ,#wpcf7-f3751-p3752-o1 .form_feature_label {
        float: left; 
        padding-top: 8px;
        padding-left: 0%;
    }
    #wpcf7-f5-p3682-o1 .form_feature ,#wpcf7-f3751-p3752-o1 .form_feature {
        width: 100%;
        float: right;
        margin-bottom: 20px;
    }
    #wpcf7-f5-p3682-o1 .form_select3 ,#wpcf7-f3751-p3752-o1 .form_select3 {
        width: 100%;
        color: #795433;
        padding-left: 5px;
    }
    #wpcf7-f5-p3682-o1 .form_select4 ,#wpcf7-f3751-p3752-o1 .form_select4 {
        width: 100%;
        padding-left: 5px;
        color: #795433;
        margin-bottom: 10px;
        margin-left: 0;
    }
    #wpcf7-f5-p3682-o1 .reservation_right img ,#wpcf7-f3751-p3752-o1 .reservation_right img {
        display: none;
    }
    #wpcf7-f5-p3682-o1 .form_left ,#wpcf7-f3751-p3752-o1 .form_left {
        float: none;
        width: 100%;
    }
    #wpcf7-f5-p3682-o1 .form_left2 ,#wpcf7-f3751-p3752-o1 .form_left2 {
        float: none;
        padding-left: 0px;
        width: 100%;
    }
    #wpcf7-f3751-p3752-o1 .arrow2 {
        color: #fff; 
        position: relative; 
        height: 90px;
        margin-top: 0px;
    }
    
    .events_title {
        font-family: 'Salsa', cursive; 
        color: #93c524; 
        font-size: 20px; 
        line-height: 1.3;
        display: none;
    }
    .events_gray2_5 {
        height: 42px;
        color: #fff;
        background-color: #fff;
        border-bottom: 1px solid #fff;
        display: none;
    }
    .events_gray4 {
        height: 42px;
        padding-top: 3px;
        border-bottom: 1px solid #f2f2f2;
        padding: 0 30px;
    }
    .events_gray5 {
        height: 42px;
        padding-left: 25px;
        padding-top: 3px;
        border-bottom: 1px solid #f2f2f2;
        padding: 0 30px;
    }
    .events_white4 {
        height: 42px;
        padding-top: 3px;
        border-bottom: 1px solid #fff;
        padding: 0 30px;
    }
    .events_white2_5 {
        height: 42px;
        color: #fff;
        background-color: #fff;
        border-bottom: 1px solid #fff;
        display: none;
    }
    .events_white5 {
        height: 42px;
        padding-top: 3px;
        padding-left: 25px;
        border-bottom: 1px solid #fff;
        padding: 0 30px;
    }
    nav ul li {
        width: auto;
        height: auto;
    }
    .site-header.fixed-header nav ul li {
        width: 70px;
        height: 62px;
    }
    .menu-item.menu-item-3541, .menu-item.menu-item-3882, .menu-item.menu-item-4089, .menu-item.menu-item-3775, .menu-item.menu-item-4430, .menu-item.menu-item-4086, .menu-item.menu-item-4414, .menu-item.menu-item-3878, .menu-item.menu-item-4410, .menu-item.menu-item-4097, .menu-item.menu-item-4096, .menu-item.menu-item-4095, .menu-item.menu-item-3786, .menu-item.menu-item-3883, .menu-item.menu-item-4378, .menu-item.menu-item-3926, .menu-item.menu-item-3925, .menu-item.menu-item-4084, .menu-item.menu-item-3790, .menu-item.menu-item-3869, .menu-item.menu-item-4082, .menu-item.menu-item-3789, .menu-item.menu-item-3879, .menu-item.menu-item-4093, .menu-item.menu-item-3791, .menu-item.menu-item-3875, .menu-item.menu-item-4088, .menu-item.menu-item-3792, .menu-item.menu-item-3880, .menu-item.menu-item-4094 {
        background:  transparent !important;
    }
    .main-navigation ul li:hover {
        background: #93c524 !important;
    }
    .fixed-header .main-navigation ul li:hover {
        background: #93c524 !important;
    }
    .main-navigation > div > ul > li {
        min-width: 70px;
    }
    .main-navigation > div > ul > li > a {
        min-width: 70px;
        text-align: center;
    }
    .main-navigation li a {
        padding: 16px 0px 16px;
        line-height: 16px;
        font-size: 14px;
        float: left;
    }
    .main-navigation > div > ul {
        height: 60px;
        margin: 0;
        padding-left: 0;
    }
    .our_service_button_a{
        display: none !important;
    }
    .our_service_button_b{
        display: none !important;
    }
    .our_service_button_c{
        display: none !important;
    }
    .our_service_button_d{
        display: none !important;
    }

    .arrow2_img {
        height: 135px !important;
    }
}

body, aside a{
        font-family: 'Open Sans,微軟正黑體',sans-serif;
        font-weight: 400;
        }
    a,
    .ztl-link,
    .ztl-title-medium,
    .ztl-staff-item .staff-title,
    .no-results .page-title,
    .category-listing .title a,
    .ztl-masonry h4{
        color: #704f32;
     }
    .ztl-widget-recent-posts h6 a:hover{
        color: #704f32;
    }
    .post-navigation .nav-previous a:hover,
    .post-navigation .nav-next a:hover{
        color: #704f32;
    }
    .ztl-masonry .read-more a:hover{
        background-color: #704f32 !important;
        color: #ffd823 !important;
    }
    a:visited,
    a:active,
    a:focus,
    .sidebar-right .menu a{
        color: #704f32;
    }
    a:hover,
    .sidebar-right li>a:hover {
        color: #704f32;
    }

    #ztl-social .fa:hover{
        color: #ffd823;
    }

    #menu-toggle span {
        background-color:#93c524;
    }
    #ztl-copyright{
        color: #ffffff;
    }
    #ztl-copyright a{
	text-decoration:underline;
	cursor:pointer;
	color: #ffffff;
    }
    .main-navigation a{
        font-family: 'Open Sans',sans-serif;
        font-size: 16px;
        font-weight: 400;
     }

    .main-navigation li:nth-child(4n+1) {
        color: #f25141;
    }
    .main-navigation li:nth-child(4n+2) {
        color: #ffd823;
    }
    .main-navigation li:nth-child(4n+3) {
        color: #93c524;
    }
    .main-navigation li:nth-child(4n+4) {
        color: #28a8e3;
    }
    .main-navigation ul ul:before {
        background-color: #93c524;
    }
    .main-navigation ul li:hover{
        background-color: #93c524;
    }
    .main-navigation ul ul li:hover{
        background-color: transparent !important;
    }
    .main-navigation ul ul li:hover a{
        color:#fff;
    }
    .main-navigation ul ul li:hover > a{
        background-color: #93c524;
    }
    .main-navigation a{
        color: #707070 !important;
    }
    .main-navigation li .current_page_item > a,
    .main-navigation li .current_page_ancestor > a,
    .main-navigation li .current-menu-item > a,
    .main-navigation li .current-menu-ancestor > a {
        color: #fff !important;
        background-color: #93c524;
    }
    .main-navigation .current_page_item > a,
    .main-navigation .current_page_ancestor > a,
    .main-navigation .current-menu-item > a,
    .main-navigation .current-menu-ancestor > a {
        color: #fff !important;
    }

    .main-navigation .sub-menu li.current-menu-item > a,
    .main-navigation .sub-menu li.current_page_item > a{
    	color: #fff !important;
    }

    .main-navigation .current_page_item,
    .main-navigation .current_page_ancestor,
    .main-navigation .current-menu-item,
    .main-navigation .current-menu-ancestor {
        background-color: #93c524;
    }

    .main-navigation ul ul .current_page_item,
    .main-navigation ul ul .current_page_ancestor,
    .main-navigation ul ul .current-menu-item,
    .main-navigation ul ul .current-menu-ancestor {
        background-color:#fdfdfd;
    }

    .main-navigation ul ul .current_page_item,
    .main-navigation ul ul .current-menu-item{
        background-color: transparent !important;
    }
    .main-navigation .current_page_item ul a,
    .main-navigation .current-menu-item ul a{
        color: #707070 !important;
    }
    .main-navigation ul ul .fa{
        display:none;
    }
    .post-navigation .fa {
        color: #93c524;
    }
    .custom .tp-bullet, .custom .tp-bullet:after {
		color:rgba(242,81,65,0.6) !important;
    }
    .custom .tp-bullet.selected:after{
        color:#f25141 !important;
    }

    .tp-leftarrow, .tp-rightarrow{
        background-color:#ffd823 !important;
    }
    .ztl-widget-title-dark,
    .dark-title,
    .comment-reply-title,
    .ztl-action-title,
    .ztl-contact-form h2{
        color:#704825;
    }
    .ztl-widget-title-light{
        color:#ffffff;
    }
    .site-footer .site-info{
        background-color:#56371b;
    }
    .site-header, .main-navigation ul ul{
        background-color:#fdfdfd;
    }

     .ztl-widget-title-right h2,
     .sidebar-right h2{
        color:#704825;
     }

    .category-listing .item i,
    .ztl-post i,
    .ztl-widget-recent-posts ul>li>a+h6+span i{
        color: #93c524;
    }

    .ztl-scroll-top:hover{
        background-color: #93c524;
    }

    .ztl-button,
    .ztl-button-circle,
    .category-listing .item .read-more a,
    .comment-body .reply a,
    .ztl-contact-form input[type=submit],
    .post-password-form input[type=submit]{
        color:#704825;
        background-color:#ffd823;
    }
    .ztl-button:hover,
    .ztl-button-circle:hover,
    .category-listing .item .read-more a:hover,
    .comment-body .reply a:hover,
    .ztl-contact-form input[type=submit]:hover,
    .post-password-form input[type=submit]:hover {
        background-color:#704825;
        color:#ffd823;
    }
    .pagination .page-numbers {
        color:#704825;
    }
    .pagination .current,
    .pagination .current:hover,
    .vc_tta-color-white.vc_tta-style-flat .vc_tta-panel .vc_tta-panel-heading:hover {
        color:#704825 !important;
        background-color:#ffd823 !important;
     }
    .pagination .page-numbers:hover {
        background-color: #704825;
        color:#ffd823;
    }
    .pagination .prev:hover,
    .pagination .next:hover {
        color:#ffd823;
        background-color:transparent !important;}

    .ztl-contact-form input[type=submit]{
        color:#704f32;
        background-color: #ffd823;
    }
    .ztl-masonry-buttons li.vc_active,
    .ztl-masonry-buttons .vc_grid-filter-item:hover,
    .ztl-masonry .read-more a{
        background-color:#ffd823 !important;
    }
    .ztl-masonry-buttons .vc_grid-filter-item,
    .ztl-masonry .read-more a,
    .ztl-masonry-buttons .vc_active span,
    .ztl-masonry-buttons .vc_grid-filter-item:hover span {
        color:#704825 !important;
    }
    .ztl-masonry .vc_pageable-load-more-btn a{
        background-color:#93c524;
    }
    .category-sidebar-right .widget_text li:before,
    .post-sidebar-right .widget_text li:before,
    .ztl-post-info:before{
        color:#93c524;
    }
    .ztl-masonry .vc_pageable-load-more-btn a:hover{
        color:#704825 !important;
    }
    .comment-author,
    .comments-title,
    .ztl-course-item .course-title,
    .ztl-course-item .detail{
        color: #704825 !important;
    }
    .sidebar-right .widget-title::after,
    .custom-header-title::after,
    .widget-title::after{
        background-color: #ffd823;
    }
    .sidebar-footer{
        background-color: #704825;
    }
    .ztl-widget-category-container .author a,
    .ztl-widget-category-container .category,
    .ztl-widget-category-container .category a,
    .ztl-widget-category-container .entry-date,
    .ztl-widget-category-container .entry-date a,
    .category-listing .item .date,
    .category-listing .item .date a,
    .category-listing .info a,
    .category-listing .info,
    .posted-on a, .byline,
    .byline .author a,
    .ztl-masonry .vc_gitem-post-data,
    .entry-footer, .comment-form,
    .entry-footer a,
    .ztl-recent-post-date,
    .ztl-recent-post-date a,
    .ztl-post .info,
    .comment-metadata a,
    .ztl-post .info a{
        color:#a0a0a0;
    }
    

		.widget.woocommerce ul li .quantity,
		.widget.woocommerce ul li .amount,
		.woocommerce .widget_shopping_cart .total,
		.woocommerce.widget_shopping_cart .total,
		.woocommerce .product .amount,
		.price_slider_amount .price_label,
		.widget.woocommerce  .reviewer{
			color:#a0a0a0;
		}
		.woocommerce a.button.added:after,
		.woocommerce div.product form.cart .variations label{
        	color: #704825 !important;
    	}
    	.woocommerce #respond input#submit:hover,
    	.woocommerce a.button:hover,
    	.woocommerce button.button:hover,
    	.woocommerce input.button:hover,
    	.woocommerce a.button.alt:hover,
		.woocommerce button.button.alt:hover,
		.woocommerce input.button.alt:hover,
		.woocommerce .single_add_to_cart_button:hover{
        	background-color:#704825;
        	color:#ffd823;
    	}
    	.woocommerce #respond input#submit,
		.woocommerce a.button,
		.woocommerce button.button,
		.woocommerce input.button,
		.woocommerce a.button.alt,
		.woocommerce button.button.alt,
		.woocommerce input.button.alt{
			color:#704825;
			background-color:#ffd823;
		}

		.woocommerce #respond input#submit.alt.disabled,
		.woocommerce #respond input#submit.alt.disabled:hover,
		.woocommerce #respond input#submit.alt:disabled,
		.woocommerce #respond input#submit.alt:disabled:hover,
		.woocommerce #respond input#submit.alt:disabled[disabled],
		.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
		.woocommerce a.button.alt.disabled,
		.woocommerce a.button.alt.disabled:hover,
		.woocommerce a.button.alt:disabled,
		.woocommerce a.button.alt:disabled:hover,
		.woocommerce a.button.alt:disabled[disabled],
		.woocommerce a.button.alt:disabled[disabled]:hover,
		.woocommerce button.button.alt.disabled,
		.woocommerce button.button.alt.disabled:hover,
		.woocommerce button.button.alt:disabled,
		.woocommerce button.button.alt:disabled:hover,
		.woocommerce button.button.alt:disabled[disabled],
		.woocommerce button.button.alt:disabled[disabled]:hover,
		.woocommerce input.button.alt.disabled,
		.woocommerce input.button.alt.disabled:hover,
		.woocommerce input.button.alt:disabled,
		.woocommerce input.button.alt:disabled:hover,
		.woocommerce input.button.alt:disabled[disabled],
		.woocommerce input.button.alt:disabled[disabled]:hover{
			color:#704825;
			background-color:#ffd823;
		}

		.woocommerce p.stars a,
		.woocommerce .star-rating:before,
		.woocommerce .star-rating {
			color:#ffd823;
		}
		.woocommerce span.onsale,
		.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
		.woocommerce .widget_price_filter .ui-slider .ui-slider-range{
			background-color: #93c524;
		}

		.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{
			background-color:rgba(147,197,36,0.5);
		}
		.woocommerce-page #content h1,
		.woocommerce-page #content h2,
		.woocommerce-page #content h3,
		.woocommerce-thankyou-order-received,
		.woocommerce form .form-row label{
			color:#704825;
		}
.ztl-widget-staff-2 .owl-dots .owl-dot span{ color:#f25141;}
    .ztl-widget-staff-2 .owl-buttons{ color:#f25141;}
    .ztl-widget-staff-2 .ztl-staff-upper { background-color:rgba(147,197,36,0.75);}
    .ztl-widget-staff-2 .ztl-circle-staff-contact{ background-color: rgba(0,0,0,0.35);}
    .ztl-widget-staff-2 .ztl-staff-navigation{background-color:rgba(112,72,37,0.7);}
    .ztl-widget-staff-2 .ztl-staff-navigation:hover{background-color:#704825;}
.ztl-widget-staff-3 .owl-dots .owl-dot span{ color:#f25141;}
    .ztl-widget-staff-3 .owl-buttons{ color:#f25141;}
    .ztl-widget-staff-3 .ztl-staff-upper { background-color:rgba(147,197,36,0.75);}
    .ztl-widget-staff-3 .ztl-circle-staff-contact{ background-color: rgba(0,0,0,0.35);}
    .ztl-widget-staff-3 .ztl-staff-navigation{background-color:rgba(112,72,37,0.7);}
    .ztl-widget-staff-3 .ztl-staff-navigation:hover{background-color:#704825;}
.ztl-widget-staff-4 .owl-dots .owl-dot span{ color:#f25141;}
    .ztl-widget-staff-4 .owl-buttons{ color:#f25141;}
    .ztl-widget-staff-4 .ztl-staff-upper { background-color:rgba(147,197,36,0.75);}
    .ztl-widget-staff-4 .ztl-circle-staff-contact{ background-color: rgba(0,0,0,0.35);}
    .ztl-widget-staff-4 .ztl-staff-navigation{background-color:rgba(112,72,37,0.7);}
    .ztl-widget-staff-4 .ztl-staff-navigation:hover{background-color:#704825;}
.ztl-widget-testimonials-3 { background-color:#f25141;}
.ztl-widget-gallery-2 .item-isotope a .icon-gallery{color: }
.ztl-widget-gallery-3 .item-isotope a .icon-gallery{color: #fff}
.ztl-widget-gallery-4 .item-isotope a .icon-gallery{color: }
.ztl-widget-gallery-5 .item-isotope a .icon-gallery{color: #fff}
.ztl-widget-numbers-3 .overlay { background-color: rgba(115,99,87,0.6); }
.ztl-widget-category-2 .category i, .ztl-widget-category-2 .author i  { color:#93c524;}
.ztl-widget-category-4 .category i, .ztl-widget-category-4 .author i  { color:#93c524;}
.ztl-widget-category-5 .category i, .ztl-widget-category-5 .author i  { color:#93c524;}



@media (max-width: 992px) {
	.top_buy_button {
		display: block;
		float: none;
		margin: 10px auto 0 auto;
	}
}

.aprilis-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	width: 40px;
	height: 40px;
	background-color: #93c524;
	background-image: url('../images/arrow.png');
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 50%;
}

@media (max-width: 767px) {
	.aprilis-to-top {
		display: block;
	}
}