/**
 * Table of Contents
 *
 * 1.0 - Google Font
 * 2.0 - General Elements
 * 3.0 - Site Header
 *   3.1 - Logo
 *   3.2 - Main Navigation
 *     3.2.1 - Main Nav CSS 3 Hover Effect
 * 4.0 - Home/Blog
 *   4.1 - Read More Button CSS 3 style
 * 5.0 - Widget
 * 6.0 - Footer
 * 7.0 - Header Search Bar
 * 8.0 - Mobile Menu
 * 9.0 - Contact Page Social
 * 10.0 - Contact Form
 * 11.0 - Media Query
 * 12.0 - Comment
 * 13.0 - Pagination
 */

/**
 * 1.0 - Google Font
 */

/**
 * 2.0 - General Elements
 */

* {
    outline: none;
}
body{
    padding-bottom: env(safe-area-inset-bottom);
    background: #f5f5f5;
    word-wrap: break-word;
    color: hsl(0deg 0% 15%);
    --scrollbar-width: 0px;
    transition: all .3s ease-out 0s;
}

body>canvas{
    position:fixed;
    z-index: -1;
}

body>header.header .container {
    display: flex !important;
    align-items: center;
}

body.header-fixed>header.header {
    position: fixed;
    left: 0;
    z-index: 999;
}

body>header.header {
    position: relative;
    z-index: 9;
    width: 100%;
    border: 0;
    background: #fff;
    box-shadow: 0 0 3px 1px hsl(0deg 0% 15% / 6%);
    margin-bottom: 10px;
}
body>header.header .logo {
    height: 64px;
    float: none;
    display: table-cell;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
    transition: all .3s ease-out 0s;
}

body>header.header .logo img{
    max-height: 50px;
    width: auto;
    /* max-height: 32px; */
    transition: all .3s ease-out 0s;
    vertical-align: top;
}

/* .navbar-collapse.in {
    overflow-y: auto;
}
.navbar-collapse {
    overflow-x: visible;
    padding-right: 10px;
    padding-left: 10px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
    -webkit-overflow-scrolling: touch;
}

body>header.header .wpcom-adv-menu {
    position: relative;
}

#site-header .logo_div{
    width: 15%;
}

#site-header .row{
    display: flex;
}
.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 10px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: initial;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 2px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

b {
    font-weight: 400;
}

a {
    color: #333;
}

a:hover, a:focus {
    text-decoration: none;
    color: #000;
}

::selection {
    background-color: #eee;
}

body {
    color: #444;
    font-family: 'Lato', sans-serif;
}

p {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    word-spacing: 1px;
    letter-spacing: 0.01em;
}

#single p,
#page p {
    margin-bottom: 25px;
}

.page-title {
    text-align: center;
}

.title {
    margin-bottom: 30px;
}

figure {
    margin-bottom: 25px;
}

img {
    max-width: 100%;
}

.img-responsive-center img {
    margin: 0 auto;
}

.height-40px {
    margin-bottom: 40px;
}

/**
 * 3.0 - Site Header
 */

#site-header {
    background-color: #FFF;
    padding: 5px 20px;
    /* margin-bottom: 40px; */
    /* border-bottom: 1px solid #e7e7e7; */
}

.copyrights {
    text-indent: -9999px;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}

/**
 * 3.1 - Logo
 */

.logo h1 a {
    color: #000;
}

.logo h1 a:hover {
    text-decoration: none;
    border-bottom: none;
}

.logo h1 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}
/* .logo h1 a img{
    max-height: 50px;
} */

/**
 * 3.2 - Main Navigation
 */

/* .main-nav {
    margin-top: 11px;
    max-width: 95%;
}

.main-nav a {
    color: #000000 !important;
    padding: 0 0 5px 0 !important;
    margin-right: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 24px;
} */

.main-nav a:active,
.main-nav a:focus,
.main-nav a:hover {
    background-color: transparent !important;
    border-bottom: 0;
}

/* .navbar-toggle {
    margin: 0;
    border: 0;
    padding: 0;
    margin-right: 25px;
}

.navbar-toggle span {
    font-size: 2em;
    color: #000;
} */
nav{
    /* display: flex; */
    box-shadow: 0 0 3px 1px hsl(0deg 0% 15% / 6%);
    background: #fff !important;
}
nav li .dropdown-menu{
    border: none;
}

nav li a{
    padding: 0 14px;
    color: var(--theme-black-color);
    line-height: 64px;
    background: 0 0;
}

.menu-item{
    list-style-type: none;
    
}
.menu-item >a{
    color: #666666 !important;
}

.menu-item ul li a:hover{
   background: #388e3c;
   color: #fff;
}

.menu-item:hover >a{
    color: #388e3c !important;
}

.footer .copyright p {
    margin: 0 0 5px;
}
/* .menu-item a:hover{
    color: #388e3c !important;
} */
.menu-item:hover .down-icon::after{
    transform: rotate(-180deg);
    transition: transform .3s;
}
/* .down-icon-li::after{
    position: absolute;
    right: 11px;
    top: 0;
    content: "";
    height: 64px;
    width: 16px;
    transition: transform .3s;
    opacity: .5;
    background-image: url(../img/icon/downpull.png) no-repeat;
    background-size: 16px;
    background-position: 50%;
    background-repeat: no-repeat;
} */
 /* .down-icon-li img{
    display: inline-block;
    max-height: 20px;
    margin-top: -1px;
    margin-right: 5px;
    width: auto;
    vertical-align: middle;
} */

/* .down-icon-li:hover::after{
    transform: rotate(-180deg);
    transition: transform .3s;
} */

.menu-item .down-icon::after{
    content: '';
    background: url(../img/icon/downpull.png) no-repeat;
    display: inline-block;
    background-size: cover;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: transform .3s;
    opacity: .5;
}
.menu-item .down-icon:hover::after{
    /* transform: rotate(-180deg);
    transition: transform .3s; */
}
.menu-item .down-icon img{
    display: inline-block;
    max-height: 20px;
    margin-top: -1px;
    margin-right: 5px;
    width: auto;
    vertical-align: middle;
}
/**
 * 3.2.1 - Main Nav CSS 3 Hover Effect
 */

.cl-effect-11 a {
    padding: 10px 0;
    color: #0972b4;
    text-shadow: none;
}

.cl-effect-11 a::before {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    padding: 0 0 5px 0 !important;
    max-width: 0;
    border-bottom: 1px solid #000;
    color: #000;
    content: attr(data-hover);
    white-space: nowrap;
    -webkit-transition: max-width 0.5s;
    -moz-transition: max-width 0.5s;
    transition: max-width 0.5s;
}

.cl-effect-11 a:hover::before,
.cl-effect-11 a:focus::before {
    max-width: 100%;
}

/**
 * 4.0 - Home/Blog
 */

.content-body {
    padding-bottom: 4em;
    padding-top: 64px;
}

.content-body .container{
    padding-top: 10px;;
}

.post {
    background: #fff;
    padding: 30px 30px 0;
}
.entry .entry-head {
    margin-bottom: 20px;
}
.main-list .post-loop, .mix-tabs .post-loop {
    margin-top: 1px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.post-loop-default {
    padding: 0 20px;
}

.post-loop-default .item-img {
    position: relative;
    width: 30%;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    flex-grow: 0;
    transition: box-shadow .3s ease 0s;
}
.post-loop-default .item-img:before {
    content: "";
    display: block;
    padding-top: 62.5%;
}
.post-loop-default .item-img:before {
     padding-top: 62.5%!important; 
}
.post-loop-default .item-img .item-img-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.post-loop-default .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-out 0s;
}
.wpcom-modules img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.post-loop-default .item-category {
    position: absolute;
    left: 10px;
    top: 15px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: #000;
    filter: alpha(opacity=60);
    background: rgba(0,0,0,.6);
    border-radius: 3px;
    text-decoration: none;
}
.post-loop-default .item-content {
    position: relative;
    width: 100%;
    padding-left: 20px;
}
.post-loop-default .item-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
}
.post-loop-default .item-title a {
    color: hsl(0% 0% 15%);
    max-height: 56px;
    text-decoration: none;
}

.post-loop-default .item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid hsla(0, 0%, 15%, .07);
    overflow: hidden;
    transition: all .3s ease 0s;
}
.post-loop-default .item-excerpt, .post-loop-default .item-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}
.post-loop-default .item-title a .sticky-post {
    display: inline-block;
    padding: 0 5px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    background: #388E3C;
    border-radius: 2px;
    vertical-align: top;
}
.post-loop-default .item-excerpt {
    height: 52px;
    margin-bottom: 34px;
    line-height: 1.625;
    color: hsla(0, 0%, 15%, .8);
    font-size: 16px;
}
.post-loop-default .item-excerpt, .post-loop-default .item-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}
.post-loop-default .item-excerpt p {
    margin-bottom: 0;
}
.post-loop-default .item-meta {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 20px;
    color: hsla(0, 0%, 15%, .6);
    font-size: 12px;
}
.post-loop-default .item-meta .author {
    margin-right: 15px;
    display: inline-block;
}
.post-loop-default .item-meta a.avatar {
    height: 24px;
    line-height: 24px;
    display: inline-block;
    vertical-align: top;
}
.post-loop-default .item-meta a {
    color: hsla(0, 0%, 15%, .6);
    text-decoration: none;
}
.post-loop-default .item-meta a.avatar img {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 3px;
    border-radius: 50%;
    background: #f5f5f5;
    vertical-align: top;
}
.modules-tjnr .slider-wrap, .wpcom-modules .sec-panel {
    margin-bottom: 0;
}
.el-boxed .sec-panel {
    margin-bottom: 20px;
    background: #fff;
}
.wpcom-modules img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.post-loop-default .item-meta a.avatar {
    height: 24px;
    line-height: 24px;
    display: inline-block;
    vertical-align: top;
}
.post-loop-default .item-meta a {
    color: hsla(0, 0%, 15%, .6);
    text-decoration: none;
}

.entry .entry-content .wp-block-quote, .entry .entry-content blockquote {
    position: relative;
    padding: 30px 30px 30px 85px;
    color: hsla(0, 0%, 15%, .8);
    background: hsla(0, 0%, 15%, .07);
    border-left: 0;
    font-size: 16px;
    border-radius: 3px;
}
.copyright p{
    /* text-align: left; */
}

.entry .entry-content .wp-block-quote:before, .entry .entry-content blockquote:before {
    position: absolute;
    width: 46px;
    height: 46px;
    left: 20px;
    top: 15px;
    background-image: url(../img/icon/quote.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% auto;
    content: "";
    opacity: .25;
}

.entry .entry-content {
    position: relative;
    margin-bottom: 30px;
    font-size: 16px;
    color: #262626;
    line-height: 1.8;
}

.entry .entry-content>.h3, .entry .entry-content>h3 {
    position: relative;
    padding-left: 18px;
    line-height: 1.46;
    border: 0;
}

.entry .entry-content>.h3:before, .entry .entry-content>h3:before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    width: 3px;
    height: calc(100% - 8px);
    border-radius: 3px;
    background-color: #388E3C;
    background-image: linear-gradient(180deg,rgba(255,255,255,.15),transparent);
}

.entry .entry-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aligncenter {
    clear: both;
}

.downloadp{
    display: flex;
}

.downloadp a{
    margin-right: 5px;
}
.entry .entry-content .entry-copyright {
    margin-top: 30px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: hsla(0, 0%, 15%, .6);
    border: 1px solid hsla(0, 0%, 15%, .07);
    background: hsla(0,0%,15%,.03);
    border-radius: 4px;
}

.entry-bar {
    margin: 30px -20px -20px;
    box-shadow: 0 -1px 0 0 rgb(0 0 0 / 5%);
}

.entry .entry-content .entry-copyright p {
    margin-bottom: 8px;
    text-indent: 0;
    text-align: left;
}

.entry .entry-content img {
    height: auto;
}

.entry .entry-content>p {
    white-space: pre-wrap;
}

.entry .entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    word-wrap: break-word;
}

.entry .entry-content ol, .entry .entry-content ul {
    padding-left: 2em;
    margin-bottom: 20px;
    list-style-position: outside;
}

.entry .entry-content li {
    margin-bottom: 10px;
}

.entry .entry-content h3 {
    font-size: 18px;
}

.entry-title {
    text-align: center;
    font-size: 1.9em;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 10px 20px 0;
}

.entry-meta {
    text-align: center;
    color: #DDDDDD;
    font-size: 13px;
    margin-bottom: 30px;
}

/* .entry-content {
    font-size: 18px;
    line-height: 1.9;
    font-weight: 300;
    color: #000;
} */

.footer {
    padding: 50px 0;
    color: rgba(255,255,255,.7);
    background: #2d3236;
}
.footer-col {
    display: inline-block;
    font-size: 0;
    vertical-align: middle;
    /* margin-right: 32px; */
}
.footer .copyright {
    font-size: 14px;
}

.container:before{
    content: " ";
    display: table;
}
.clearfix:before {
    content: " ";
    display: table;
}

#modules-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.modules-tjnr .slider-wrap, .wpcom-modules .sec-panel {
    margin-bottom: 0;
}
.list.tabs .tab.active a {
    position: relative;
    color: #388e3c;
    font-weight: 500;
}
 .list.tabs .tab a {
    line-height: 58px;
    padding-bottom: 0;
}
.mix-tabs .sec-panel-head {
    padding: 0 20px;
    border-bottom: 0;
}
.post-loop-default .item-meta .item-meta-li {
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
    line-height: 24px;
}
.el-boxed .sec-panel-head {
    padding: 20px 20px 0;
    margin-bottom: 0;
}
.sec-panel-head {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
 .main-list .list.tabs,  .mix-tabs .list.tabs {
    height: 60px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.list.tabs .tab {
    position: relative;
    display: inline-block;
    margin-right: 31px;
    vertical-align: middle;
}
.list.tabs .tab a {
    display: block;
    font-size: 16px;
    padding-bottom: 12px;
    color: hsla(0, 0%, 15%, .8);
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
}
.list.tabs .tab-underscore {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #388e3c;
    border-radius: 2px;
    content: "";
    transition: all .3s ease-out 0s;
}

.footer .footer-nav{
    padding: 0;
    margin: 0 0 12px;
    font-size: 14px;
    list-style: none;
}
.footer .footer-nav li{
    display: inline-block;
    margin-right: 10px;
    line-height: 18px;
}
.footer .footer-nav a{
    display: inline-block;
    padding-right: 10px;
    vertical-align: top;
}
.footer .footer-nav li:after{
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    opacity: .8;
    content: "|";
    vertical-align: top;
}
.footer a:hover {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}


.post-category::after,
.post-date::after,
.post-author::after,
.comments-link::after {
    content: ' ·';
    color: #000;
}

/**
 * 4.1 - Read More Button CSS 3 style
 */

.read-more {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    word-spacing: 1px;
    letter-spacing: 0.01em;
    text-align: center;
    margin-top: 20px;
}

.cl-effect-14 a {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    position: relative;
    display: inline-block;
    margin: 15px 25px;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.cl-effect-14 a::before,
.cl-effect-14 a::after {
    position: absolute;
    width: 45px;
    height: 1px;
    background: #C3C3C3;
    content: '';
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}

.cl-effect-14 a::before {
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
}

.cl-effect-14 a::after {
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::before,
.cl-effect-14 a:focus::after {
    background: #000;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:focus::before {
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
    -moz-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
}

.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::after {
    right: 50%;
    -webkit-transform: rotate(0deg) translateX(50%);
    -moz-transform: rotate(0deg) translateX(50%);
    transform: rotate(0deg) translateX(50%);
}

/**
 * 5.0 - Widget
 */
 .search-form {
    overflow: hidden;
    background: #fff;
}

.search-form input.keyword {
    width: 100%;
    height: 34px;
    padding: 5px 52px 5px 10px;
    font-size: 14px;
    border: 1px solid hsla(0, 0%, 15%, .07);
}

.search-form .submit {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    width: 42px;
    height: 34px;
    padding: 0;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    background-color: #388e3c;
    cursor: pointer;
    border: 0;
    outline: 0;
}

.widget {
    /* background: #fff; */
    padding: 30px 0 0;
}

.widget-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 10px 0 0;
    font-weight: 400;
}

.widget-recent-posts ul {
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.widget_search >div{
    display: flex;
}

.widget_search >div .input{
    width: 90%;
}

.widget_search >div .input input{
    width: 100%;
    border: none;
    height: 34px;
    padding-left: 10px;
}

.widget_search >div .search{
    height: 34px;
    width: 30px;
    background: #388e3c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
}

.widget_search >div .search img{
    height: 18px;
}

.widget-recent-posts ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-recent-posts ul li::before {
    content: '\f3d3';
    font-family: "Ionicons";
    position: absolute;
    left: -17px;
    top: 3px;
    font-size: 16px;
    color: #000;
}

.widget-archives ul {
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

.widget-archives ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-archives ul li::before {
    content: '\f3f3';
    font-family: "Ionicons";
    position: absolute;
    left: -25px;
    top: 1px;
    font-size: 16px;
    color: #000;
}

.widget-category ul {
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

.widget-category ul li {
    list-style-type: none;
    position: relative;
    line-height: 170%;
    margin-bottom: 10px;
}

.widget-category ul li::before {
    content: '\f3fe';
    font-family: "Ionicons";
    position: absolute;
    left: -25px;
    top: 1px;
    font-size: 18px;
    color: #000;
}

.widget-tag-cloud ul {
    padding: 0;
    margin: 0;
    margin-right: -10px;
}

.widget-tag-cloud ul li {
    list-style-type: none;
    font-size: 13px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 3px 8px;
    border: 1px solid #ddd;
}

.widget-content ul ul {
    margin-top: 10px;
}

.widget-content ul li {
    margin-bottom: 10px;
}

.rss {
    font-size: 21px;
    margin-top: 30px;
}

.rss a {
    color: #444;
}

/**
 * 6.0 - Footer
 */

#site-footer {
    padding-top: 10px;
    padding: 0 0 1.5em 0;
}

.copyright {
    text-align: center;
    padding-top: 1em;
    margin: 0;
    border-top: 1px solid #eee;
    color: #666;
}

/**
 * 7.0 - Header Search Bar
 */

#header-search-box {
    position: absolute;
    right: 38px;
    top: 8px;
}

.search-form {
    /* display: none; */
    width: 25%;
    position: absolute;
    min-width: 200px;
    right: -6px;
    top: 33px;
}

#search-menu span {
    font-size: 20px;
}

#searchform {
    position: relative;
    border: 1px solid #ddd;
    min-height: 42px;
}

#searchform input[type=search] {
    width: 100%;
    border: none;
    position: absolute;
    left: 0;
    padding: 10px 30px 10px 10px;
    z-index: 99;
}

#searchform button {
    position: absolute;
    right: 6px;
    top: 4px;
    z-index: 999;
    background: transparent;
    border: 0;
    padding: 0;
}

#searchform button span {
    font-size: 22px;
}

#search-menu span.ion-ios-close-empty {
    font-size: 40px;
    line-height: 0;
    position: relative;
    top: -6px;
}

/**
 * 8.0 - Mobile Menu
 */

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
}

.overlay .overlay-close {
    position: absolute;
    right: 25px;
    top: 10px;
    padding: 0;
    overflow: hidden;
    border: none;
    color: transparent;
    background-color: transparent;
    z-index: 100;
}

.overlay-hugeinc.open .ion-ios-close-empty {
    color: #000;
    font-size: 50px;
}

.overlay nav {
    text-align: center;
    position: relative;
    top: 50%;
    height: 60%;
    font-size: 54px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.overlay ul li {
    display: block;
    height: 20%;
    height: calc(100% / 5);
    min-height: 54px;
}

.overlay ul li a {
    font-weight: 300;
    display: block;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #000;
}

.overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.overlay-hugeinc nav {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.overlay-hugeinc nav ul {
    opacity: 0.4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg);
}

/**
 * 9.0 - Contact Page Social
 */

.social {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 20px;
}

.social li a {
    border: 1px solid #888;
    font-size: 22px;
    color: #888;
    transition: all 0.3s ease-in;
}

.social li a:hover {
    background-color: #333;
    color: #fff;
}

.facebook a {
    padding: 12px 21px;
}

.twitter a {
    padding: 12px 15px;
}

.google-plus a {
    padding: 12px 15px;
}

.tumblr a {
    padding: 12px 20px;
}

/**
 * 10.0 - Contact Form
 */

.contact-form input, .comment-form input {
    border: 1px solid #aaa;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px 15px;
    font-size: 16px;
    line-height: 100%;
    transition: 0.4s border-color linear;
}

.contact-form textarea, .comment-form textarea {
    border: 1px solid #aaa;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px 15px;
    font-size: 16px;
    line-height: 20px !important;
    min-height: 183px;
    transition: 0.4s border-color linear;
}

.contact-form input:focus, .comment-form input:focus,
.contact-form textarea:focus, .comment-form textarea:focus {
    border-color: #666;
}

.btn-send {
    background: none;
    border: 1px solid #aaa;
    cursor: pointer;
    padding: 25px 80px;
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s;
}

.btn-5 {
    color: #666;
    height: 70px;
    min-width: 260px;
    line-height: 15px;
    font-size: 16px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.btn-5 span {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.3s;
    -moz-backface-visibility: hidden;
    transition: all 0.3s;
    backface-visibility: hidden;
}

.btn-5:before {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 2.5;
    font-size: 180%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-5:active:before {
    color: #703b87;
}

.btn-5b:hover span {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
}

.btn-5b:before {
    left: -100%;
    top: 0;
}

.btn-5b:hover:before {
    left: 0;
}

aside .widget_image_myimg img{
    transition: all .3s ease-in 0s;
    
}
aside .widget_image_myimg img:hover{
    transform: scale(1.05);
    transition: all .3s ease-in 0s;
}
#modules-2 {
    margin-top: 15px;
    margin-bottom: 20px;
}
.modules-sidebar-layout {
    position: relative;
}
#modules-12 {
    margin-top: 1px;
    margin-bottom: 10px;
}
.modules-tjnr .slider-wrap, .wpcom-modules .sec-panel {
    margin-bottom: 0;
}
.main-slider {
    width: 100%;
    height: 320px;
    direction: ltr;
}
.main-slider {
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,.15);
}
.swiper-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.entry-content-slider .swiper-wrapper, .wpcom-slider .swiper-wrapper {
    padding: 0!important;
    margin: 0!important;
    flex-wrap: nowrap;
}
.main-slider .swiper-wrapper {
    height: 100%;
}
.previosleft::before{
    content: '';
    background: url(../img/icon/left.png) no-repeat;
    display: inline-block;
    background-size: cover;
    width: 70px;
    height: 70px;
}
.nextright::after{
    content: '';
    background: url(../img/icon/right.png) no-repeat;
    display: inline-block;
    background-size: cover;
    width: 70px;
    height: 70px;
}
.entry-content-slider .modules-feature-posts .post-loop-card .item>a, .entry-content-slider .swiper-slide>a, .modules-feature-posts .post-loop-card .entry-content-slider .item>a, .modules-feature-posts .post-loop-card .wpcom-slider .item>a, .wpcom-slider .modules-feature-posts .post-loop-card .item>a, .wpcom-slider .swiper-slide>a {
    display: block;
    height: 100%;
}
.entry-content-slider .modules-feature-posts .post-loop-card .item img, .entry-content-slider .swiper-slide img, .modules-feature-posts .post-loop-card .entry-content-slider .item img, .modules-feature-posts .post-loop-card .wpcom-slider .item img, .wpcom-slider .modules-feature-posts .post-loop-card .item img, .wpcom-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-out 0s;
}
.wpcom-modules img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.entry-content-slider .slide-title, .wpcom-slider .slide-title {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 40px 20px 16px;
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
    box-sizing: border-box;
    background: black;
    background: linear-gradient(180deg,#c5f2ed,rgba(0,0,0,.7));
}
.entry-content-slider .slide-title a, .wpcom-slider .slide-title a {
    display: block;
    color: #fff;
    width: 80%;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.wpcom-slider .swiper-slide {
    position: relative;
}

#carousel-example-generic:hover {
    transition: all .3s ease-in 0s;
    transform: scale(1.01);
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
    width: 18px;
    background-color: #388e3c;
    transition: all .3s ease-out 0s;
}
/**
 * 11.0 - Media Query
 */

@media (max-width: 991px) {
    aside{
        display: none;
    }
    body>header.header .container {
        display: block !important;
    }
    .main-nav a {
        /* margin-right: 20px; */
    }

    #header-search-box {
        /* position: absolute;
        right: 20px; */
    }
    .navbar-toggle {
        /* display: block;
        margin: 0;
        order: 1;
        transition: all .3s ease-out 0s; */
    }
    
    .icon-bar {
        /* transition: all .3s ease-out .3s;
        background: hsl(0deg 0% 15% / 8%); */
    }
    body>header.header .navbar-header {
        /* height: 50px; */
    }
     
    .entry .entry-content .wp-block-quote, .entry .entry-content blockquote {
        position: relative;
        padding: 30px 30px 30px 85px;
        color: hsla(0, 0%, 15%, .8);
        background: hsla(0, 0%, 15%, .07);
        border-left: 0;
        font-size: 16px;
        border-radius: 3px;
    }
    .entry .entry-content blockquote {
        padding: 15px 15px 15px 60px;

    }
    .entry .entry-content .wp-block-quote:before, .entry .entry-content blockquote:before {
        width: 36px;
        height: 36px;
        left: 10px;
    }
    .entry .entry-title {
        font-size: 22px;
    }
    .col-md-9{
        padding-left: 0px;
        padding-right: 0px;;
    }
    .container {
        padding-right: 0px; 
         padding-left: 0px; 
         margin-right: auto; 
         margin-left: auto;
         padding-left: 15px;
        padding-right: 15px;
    }
    .footer {
        padding: 20px 0;
        text-align: center;
    }
    .post-loop-default .item {
        padding: 15px 0;
    }
    .post-loop-default .item-img {
        width: 33%;
    }
    .post-loop-default .item-category {
        display: none;
    }
    .post-loop-default .item-content {
        padding-left: 10px;
    }
    .post-loop-default .item-title {
        font-size: 17px;
        line-height: 1.4;
        font-weight: 400;
    }
    .post-loop-default .item-title a {
        max-height: 50px;
    }
    .post-loop-default .item-title a .sticky-post {
        margin-top: 3px;
        font-size: 11px;
        line-height: 19px;
    }
    .post-loop-default .item-excerpt {
        display: none;
    }
    .post-loop-default .item-meta .author{
        display: none;
    }
    .post-loop-default .item-meta .item-meta-li {
        line-height: 16px;
        margin-right: 10px;
    }
    .post-loop-default .item:hover {
        margin: 0;
        padding: 15px 0;
    }
    /* .navbar-on {
        transition: all .3s ease-out 0s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        transform: translateX(80%);
    }
    .navbar-on .navbar-toggle {
        position: fixed;
        top: 0;
        z-index: 1000;
        right: 100%;
        background: 0 0!important;
        border: 0!important;
        margin-top: 8px;
        color: #fff;
        transition: all .3s ease-out 0s;
    }
    .navbar-header {
        display: flex;
        width: 100%;
        height: 64px;
        margin: 0;
        float: none;
        align-items: center;
        justify-content: space-between;
    }
    body>header.header .primary-menu {
        margin: 0;
        float: none!important;
    }
    body>header.header .navbar-collapse.in {
        display: block!important;
    }
    body>header.header .navbar-collapse {
        display: block!important;
        width: 80%;
    }
    body>header.header .navbar-collapse {
        display: flex!important;
        width: 100%;
        padding-left: 0;
        margin-left: 40px;
        align-items: center;
        justify-content: space-between;
    }
    .collapse.in {
        display: block!important;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    
    .navbar-collapse {
        position: fixed!important;
        bottom: 0;
        top: 0;
        right: 10%;
        z-index: 998;
        padding: 50px 0;
        width: 80%;
        height: 100%!important;
        margin: 0!important;
        background: #388e3c;
        transition: all .3s ease-out 0s;
        overflow: auto;
        border: 0;
    } */
    body>header.header .wpcom-adv-menu {
        /* padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid rgba(0,0,0,.05);
        float: none;
        width: 100%; */
    }
    body>header.header .logo img {
        /* max-height: 40px; */
    }
}

@media (max-width: 767px) {
    #header-search-box {
        right: 20px;
        top: 9px;
    }

    .main-nav {
        margin-top: 2px;
    }

    .btn-5 span {
        display: none;
    }

    .btn-5b:before {
        left: 0;
    }
}

@media (max-width: 431px) {
    .logo h1 {
        margin-top: 8px;
        font-size: 24px;
    }

    .post {
        background: #fff;
        padding: 0 10px 0;
    }

    .more-link {
        font-size: 0.9em;
        line-height: 100%;
    }
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }

    .overlay ul li {
        min-height: 34px;
    }
}

/**
 * 12.0 - Comment
 */
.comment-area {
    padding: 0 30px 0;
}

.comment-form {
    margin-top: 15px;
}

.comment-form .comment-btn {
    background-color: #fff;
    border: 1px solid #aaa;
    font-size: 16px;
    padding: 5px 10px;
}

.comment-list-panel {
    margin-top: 30px;
}

.comment-list {
    margin-top: 15px;
}

.comment-item:not(:last-child) {
    border-bottom: 1px #ccc solid;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.comment-item .nickname,
.comment-item .submit-date {
    color: #777;
    font-size: 14px;
}

.comment-item .nickname:after {
    content: ' ·';
}

.comment-item .text {
    padding-top: 5px;
    font-size: 16px;
}

/**
 * 13.0 - Pagination
 */
.pagination-simple {
    padding-left: 30px;
    font-size: 16px;
}

.pagination ul {
    list-style: none;
}

.pagination ul li {
    display: inline-block;
    font-size: 16px;
    margin-right: 5px;
}

.current a {
    color: red;
}
