/*
Theme Name: Blank Theme 2
Author: J.V.A
Description: 「」
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: bootstrap, LESS, bower, gulp
Text Domain: oracle

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@font-face {
    font-family: Marqhuis;
    src: url(fonts/Marqhuis.otf);
}

body {
	max-width: 1920px;
	margin: auto;
	font-family: 'Lato', sans-serif;
	background-color: #68433b;
	color: #ffffff;
}

#page-wrap {
    overflow: hidden;
}

a {
	transition: all .3s;
}

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

img[class*="wp-image"] {
    max-width: 100%;
    height: auto;
}

.special_modal .modal-dialog {
    width: 1352px;
    max-width: 100%;
    top: 50px;
}

.special_modal .modal-dialog .modal-content {
    background-color: unset;
    box-shadow: unset;
    position: absolute;
    top: 9%;
    left: 11%;
    right: 11%;
    bottom: 12%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
    border: unset;
}

.special_modal .modal-dialog .modal-content .modal-body {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.btn-custom {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    color: #edd386;
    border: none;
    background: unset;
    background-image: url(images/btn-bg.fw.png);
    background-size: 100% 100%;
    padding: 10px 30px;
    transition: all .3s;
}

.btn-custom:hover, .btn-custom:focus {
    background-color: unset;
    color: #ffffff;
    transform: scale(.9);
}

.tab-content>.tab-pane {
    display: block;
    height: 0px;
    overflow: hidden;
}

.tab-content>.active {
    height: auto;
}

.modal {
    z-index: 9999;
    color: #000000;
}

.container-fluid {
	max-width: 1737px;
}

@media (min-width: 1200px){
	.container {
		max-width: 1466px;
	}
}

.flex-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.merriweather {
	font-family: 'Merriweather', serif;
}

.marqhuis {
	font-family: Marqhuis;
}

.gradiented, .gradiented .elementor-heading-title {
	background: -webkit-linear-gradient(#d9a300, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.marqhuis.gradiented, .marqhuis.gradiented .elementor-heading-title {
	padding-left: .1em;
	padding-bottom: .5em;
}

.s_title {
    font-family: 'Marqhuis';
    font-size: 100px;
    text-align: center;
}

.s_title div {
    display: table;
    margin: auto;
    position: relative;
    padding-bottom: .5em;
}

.s_title div span {
    position: relative;
    background: -webkit-linear-gradient(#d9a300, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: .1em;
    padding-bottom: .5em;
    display: block;
}

.s_title div .shadow {
    background: unset;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, .9);
}

.leaf_div {
    position: absolute;
    width: 569px;
    height: 405px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-animation-name: leafsway; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 5s; /* Safari 4.0 - 8.0 */
    -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
    animation-name: leafsway;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.leaf_div.left {
	background-image: url(images/left-leaf.fw.png);
	transform-origin: left bottom;
}

.leaf_div.right {
	background-image: url(images/right-leaf.fw.png);
	transform-origin: right bottom;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes leafsway {
    0%   {transform: rotate(2deg);}
    50%  {transform: rotate(-2deg);}
    100% {transform: rotate(2deg);}
}

/* Standard syntax */
@keyframes leafsway {
    0%   {transform: rotate(2deg);}
    50%  {transform: rotate(-2deg);}
    100% {transform: rotate(2deg);}
}

#main_header {
	position: fixed;
	top: auto;
	left: auto;
	width: 100%;
	max-width: 1920px;
    background: -moz-linear-gradient(top, rgba(42,18,14,1) 0%, rgba(42,18,14,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(42,18,14,1) 0%,rgba(42,18,14,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(42,18,14,1) 0%,rgba(42,18,14,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a120e', endColorstr='#002a120e',GradientType=0 ); /* IE6-9 */
    padding-bottom: 15px;
    z-index: 9999;
    transition: all .3s;
}

#main_header.show {
    background-color: #2a120e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

#main_header:before {
	background-image: url(images/header-drape.jpg);
	background-size: contain;
	background-position: center top;
	background-repeat: repeat-x;
    content: '';
    display: block;
    height: 50px;
    margin-bottom: 20px;
    transition: all .3s;
}

#main_header.show:before {
	height: 5px;
}

#main_header #menu-button {
    background: no-repeat;
    border: none;
    outline: none;
}

#main_header #menu-button .bars {
    position: relative;
    border-style: solid;
    border-width: 5px 0;
    border-color: #e8c763;
    height: 30px;
    width: 30px;
    margin: auto;
    margin-bottom: 5px;
    transition: all .3s;
}

#main_header #menu-button:hover .bars, #main_header #menu-button:focus .bars {
	width: 41px;
}

#main_header #menu-button .bars:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 5px;
    width: 41px;
    background-color: #bd6359;
    transition: all .3s;
    transform: translateX(-50%) translateY(-50%);
}

#main_header #menu-button:hover .bars:before, #main_header #menu-button:focus .bars:before {
	width: 30px;
}

#main_header #menu-button span {
    color: #a4a4a4;
    transition: all .3s;
}

#main_header #menu-button:hover span, #main_header #menu-button:focus span {
	color: #ffffff;
}

#main_header .site_logo {
	display: table;
	margin: auto;
	width: 100%;
    max-width: 100%;
}

#main_header.show .site_logo {
	width: 200px;
}

#main_header .site_logo:hover, #main_header .site_logo:focus {
    transform: scale(.95);
}

#main_header .items-right {
	text-align: right;
}

#main_header .socials {
	display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

#main_header.show .socials li {
    display: inline-block;
    vertical-align: middle;
}

#main_header .socials li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    margin: 10px;
    background-color: transparent;
}

#main_header .socials li a:hover, #main_header .socials li a:focus {
	background-color: #68433b;
}

#menu_container {
    position: fixed;
    left: 0;
    top: auto;
    height: 100%;
    width: 300px;
    background-color: #2a120e;
    z-index: 9999;
    transition: all .3s;
    transform: translateX(-100%);
}

#menu_container.show {
    transform: translateX(0%);
    border-right: solid 1px rgba(255, 255, 255, 0.5);
}

#menu_container .header_nav {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

#menu_container .header_nav > li {
    display: block;
}

#menu_container .header_nav > li > a {
    font-family: 'Barlow Condensed', sans-serif;
    display: block;
    padding: 10px 15px;
    background-color: transparent;
    color: #edd386;
}

#menu_container .header_nav > li > a:hover, #menu_container .header_nav > li > a:focus, #menu_container .header_nav > li.active > a {
    background-color: #3f5300;
    color: #ffffff;
    padding-left: 30px;
}

#menu_container .menu_closer {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    border: solid 1px rgba(255, 255, 255, 0.5);
    border-left: none;
}

#menu_container.show .menu_closer {
    display: block;
}

#menu_container.show .menu_closer a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #2a120e;
    width: 40px;
    height: 40px;
    color: #ffffff;
    cursor: pointer;
}

#banner_section {
    position: relative;
    height: 880px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#banner_section .center_image {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 10em;
}

#banner_section .center_image img {
    margin: auto;
}

.brown_1 {
    background-image: url(images/pattern-bottom.fw.png), url(images/about-bg.jpg);
    background-position: center bottom, center top;
    background-repeat: no-repeat, repeat-x;
}

#news_section {
    position: relative;
    background-image: url(images/symbol.fw.png);
    background-position: 110% center;
    background-repeat: no-repeat;
    padding-top: 50px;
}

#news_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

#news_section .s_title {
    margin-bottom: 50px;
}

#news_section .news_item {
    margin-bottom: 100px;
}

#news_section .news_item .img_container .fake_image {
    padding-top: 56.7%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#news_section .news_item .title {
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #edd386;
}

#news_section .news_item .post_excerpt {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 1em;
}

#news_section .news_item .btn-custom {
    background-image: url(images/btn-bg-2.fw.png);
}

#welcome_section {
    padding: 100px 0;
    padding-bottom: 0;
    background-size: 50% auto;
    background-position: center right;
    background-repeat: no-repeat;
}

#welcome_section .welcome_main {
    background-image: url(images/sitting-man.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#welcome_section .s_title div {
    margin: unset;
}

#welcome_section .welcome_content {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 2em;
}

#welcome_section .btn-custom {
    background-image: url(images/btn-bg-2.fw.png);    
}

#markers_section {
    position: relative;
    background-image: url(images/events-bg.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 50px;
    padding-bottom: 100px;
}

#markers_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

#markers_section .container {
    position: relative;
}

#markers_section .container .leaf_div {
    top: -80px;
    left: -295px;
}

#markers_section .markers_excerpt {
    min-height: 1px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    width: 1128px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 100px;
}

#markers_section .btn-custom {
    display: table;
    margin: auto;
    margin-top: 50px;
}

.brown_2 {
    background-image: url(images/pattern-top.fw.png), url(images/baguio-bg.jpg);
    background-position: center top, center bottom;
    background-repeat: repeat-x, no-repeat;
}

#events_section {
    position: relative;
    background-image: url(images/lizard.fw.png);
    background-position: 50px 70px;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

#events_section .ue_excerpt {
    min-height: 1px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    width: 1128px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 100px;
}

#events_section .event_content {
    margin-bottom: 100px;
    padding: 0 15px;
}

#events_section .event_content .img-container {
    width: 500px;
    max-width: 100%;
    margin: auto;
}

#events_section .event_content .img-container .fake_image {
    padding-top: 56.7%;
    background-size: cover;
    background-position: center;
}

#events_section .event_content .content .title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #ecd285;
}

#events_section .event_content .content .excerpt {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 1em;
}

#events_section .controls div {
    display: inline-block;
    vertical-align: middle;
}

#events_section .controls .left, #events_section .controls .right {
    width: 10%;
}

#events_section .controls .right {
    text-align: right;
}

#events_section .controls button {
    background: no-repeat;
    border: none;
    width: 80px;
    text-align: center;
    position: relative;
    border-top: solid 3px #ffffff;
    padding: 7px 0;
    outline: none;
}

#events_section .controls .left button:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 50px;
    border-color: transparent transparent #ffffff transparent;
}

#events_section .controls .right button:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0 50px;
    border-color: transparent transparent transparent #ffffff;
}

#events_section .controls .nums {
    width: 79%;
}

#events_section .controls .nums .slick-dots {
    position: unset;
}

#events_section .controls .nums .slick-dots li {
    width: auto;
    height: auto;
}

#events_section .controls .nums .slick-dots li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ecd285;
    font-family: 'merriweather';
    width: 61px;
    height: 61px;
    background-image: url(images/circ.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#baguio_section {
    padding: 100px 0;
    padding-top: 0;
    background-size: 50% auto;
    background-position: left center;
    background-repeat: no-repeat;
}

#baguio_section .ab_main {
    background-image: url(images/shield.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#baguio_section .s_title div {
    margin: unset;
}

#baguio_section .ab_content {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 2em;
}

#baguio_section .ab_content p {
    margin-bottom: 1em;
}

#contact_section {
    background-image: url(images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    position: relative;
}

#contact_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

#contact_section .content {
    width: 814px;
    max-width: 100%;
    margin: auto;
}

#contact_section .content .s_title {
    margin: 0;
}

#contact_section .s_title div span {
    padding-right: .4em;
}

#contact_section .content .sub_title {
    font-size: 20px;
    line-height: 2;
}

#contact_section .content .gform_wrapper form {
    position: relative;
}

#contact_section .content .gform_wrapper ul.gform_fields li.gfield {
    margin: 0;
    margin-bottom: 18px;
}

#contact_section .content .gform_wrapper .gfield_required {
    color: #ffffff;
}

#contact_section .content .gform_wrapper .ginput_container input, #contact_section .content .gform_wrapper .ginput_container select, #contact_section .content .gform_wrapper .ginput_container textarea {
    padding: 10px;
    border-radius: 0;
}

#contact_section .content .gform_wrapper .ginput_container textarea {
    height: 150px !important;
}

@media only screen and (min-width: 641px) {
    #contact_section .content .gform_wrapper form .gform_footer {
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 50%;
        padding-right: 15px;
        margin-bottom: 35px;
        text-align: right;
    }
}

#footer {
    position: relative;
    padding: 100px 0;
    background-image: url(images/pattern-top.fw.png);
    background-position: center top;
    background-repeat: repeat-x;
}

#footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

#footer:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: -5px;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    z-index: -1;
}

#footer .container {
    position: relative;
}

#footer .container .leaf_div {
    top: 140px;
    right: -275px;
}

#footer .footer_logo {
    display: table;
    margin: auto;
}

#footer .footer_logo:hover, #footer .footer_logo:focus {
	transform: scale(.95);
}

#footer .phone_container {
    text-align: center;
    background-image: url(images/symbol.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#footer .phone_container h3 {
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    color: #edd386;
    margin: 0;
}

#footer .phone_container p a {
	color: #ffffff;
	text-decoration: none;
}

#footer .phone_container p a:hover, #footer .phone_container p a:focus {
	color: #edd386;
}

#footer .phone_container .footer_excerpt p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    margin: 0;
}

#footer .phone_container .phone_number, #footer .phone_container .fax_number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#footer .phone_container .phone_number li, #footer .phone_container .fax_number li {
    display: inline-block;
}

#footer .phone_container .phone_number li:not(:last-child):after, #footer .phone_container .fax_number li:not(:last-child):after {
    content: ' / ';
}

#footer .phone_container .phone_number li a, #footer .phone_container .fax_number li a {
    color: #ffffff;
    text-decoration: none;
}

#footer .phone_container .phone_number li a:hover, #footer .phone_container .fax_number li a:hover,
#footer .phone_container .phone_number li a:focus, #footer .phone_container .fax_number li a:focus {
    color: #edd386;
}

#footer .phone_container .email {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
}

#footer .socials {
	text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 50px;
}

#footer .socials li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
}

#footer .socials li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    margin: 5px 0;
    background-color: transparent;
}

#footer .socials li a:hover, #footer .socials li a:focus {
	background-color: #68433b;
}

#footer .copyright {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

#footer .linkage {
    display: table;
    margin: auto;
}

#footer .linkage:hover, #footer .linkage:focus {
	transform: scale(.95);
}

#inner_page_banner {
    position: relative;
    height: 880px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 150px;
}

#inner_page_banner .container {
	/*position: relative;*/
	margin-top: 5em;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#inner_page_banner .content {
	text-align: center;
	transform: rotate(-10deg);
}

#inner_page_banner .container:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 200px;
    left: 200px;
    opacity: .75;
    border-radius: 100%;
    background: radial-gradient(ellipse at center, rgba(136,93,84,1) 0%,rgba(0,0,0,0) 100%);
    filter: blur(25px);
}

#inner_page_banner .content h1 {
	display: unset;
	font-family: 'Marqhuis';
	font-size: 215px;
	line-height: 1;
	-webkit-box-decoration-break: clone;
	-o-box-decoration-break: clone;
	box-decoration-break: clone;
	background: -webkit-linear-gradient(#d9a300, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    padding-left: .1em;
    padding-right: .2em;
    padding-bottom: .5em;
}

#inner_page {
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(images/pattern-top.fw.png), url(images/pattern-mid.fw.png), url(images/pattern-bottom.fw.png);
    background-repeat: repeat-x, repeat-x, repeat-x;
    background-position: center top, center center, center bottom; 
}

#inner_page:before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

.special_event_single {
    margin-bottom: 100px;
}

.special_event_single .this_month {
    font-size: 100px;
    margin: 0;
    line-height: .8;
    margin-bottom: 80px;
    background: -webkit-linear-gradient(45deg, #FCA01E, #E60A3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.special_event_single .event_gallery {
    padding: 0;
    margin: 0;
    list-style: none;
}

.special_event_single .event_gallery li {
    display: inline-block;
}

.special_event_single .event_gallery .gal_1 {
    width: 100%;
    margin-bottom: 20px;
}

.special_event_single .event_gallery .gal_1 a {
    display: table;
    width: 100%;
}

.special_event_single .event_gallery .gal_1 a .fake_image {
    padding-top: 60%;
    background-size: cover;
    background-position: center;
}

.special_event_single .event_gallery .gal_2 {
    margin-right: 3%;
}

.special_event_single .event_gallery .gal_2, .special_event_single .event_gallery .gal_3 {
    width: 48%;
}

.special_event_single .event_gallery .gal_2 a, .special_event_single .event_gallery .gal_3 a {
    width: 100%;
    display: table;
}

.special_event_single .event_gallery .gal_2 a .fake_image, .special_event_single .event_gallery .gal_3 a .fake_image {
    padding-top: 128%;
    background-size: cover;
    background-position: center;
}

.special_event_single .title {
    font-size: 70px;
}

.special_event_single .event_date {
    font-size: 35px;
    font-family: 'merriweather';
    margin-bottom: 30px;
}

.special_event_single .content {
    font-size: 18px;
    line-height: 2;
}

.special_event_single .content p {
    margin-bottom: 2em;
}

.special_event_single .controls {
    margin-top: 100px;
}

.special_event_single .controls > div {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
}

.special_event_single .controls .right {
    text-align: right;
}

.covered_vid:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(images/vid-cover.fw.png);
    background-size: 100% 100%;
    background-position: center;
}

.news_cats {
    margin-bottom: 100px;
}

.news_cats .cats {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.news_cats .cats li {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 193px;
    height: 119px;
    background-image: url(images/cat-bg.fw.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all .3s;
}

.news_cats .cats li:hover, .news_cats .cats li.current-cat {
	background-image: url(images/cat-bg-on.fw.png);
}

.news_cats .cats li a {
	font-family: 'Barlow Condensed', sans-serif;
    display: table;
    width: 68px;
    font-size: 23px;
    color: #eed894;
}

.news_cats .cats li a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.news_cats .cats li a:hover, .news_cats .cats li a:focus, .news_cats .cats li.current-cat a {
	color: #ffffff;
}

.news_cont .news_post {
    margin-bottom: 100px;
}

.news_cont .news_post .img-container .fake_image {
    padding-top: 54%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.news_cont .news_post .post_title {
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #EBD285;
    margin-bottom: 1em;
}

.news_cont .news_post .post_excerpt {
    font-size: 20px;
    margin-bottom: 2em;
}

#news_section .no_post {
    text-align: center;
    font-size: 45px;
    margin-bottom: 100px;
}

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

.wp-pagination .pagination li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.wp-pagination .pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: #ecd285;
	font-family: 'merriweather';
	width: 61px;
	height: 61px;
	border: none;
	background: none;
	background-image: url(images/circ.fw.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.wp-pagination .pagination li span:hover {
	background-color: unset;
}

.wp-pagination .pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: #ecd285;
	font-family: 'merriweather';
	width: 61px;
	height: 61px;
	border: none;
	background: none;
	background-image: url(images/circ.fw.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.wp-pagination .pagination li a:hover, .wp-pagination .pagination li a:focus {
	color: #ffffff;
}

.s_post_img_container {
	float: left;
	margin-right: 50px;
	margin-bottom: 50px;	
}

.s_post_title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 65px;
	font-weight: bold;
}

.s_post_date {
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 50px;
}

.s_post_content p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 2em;
}

.s_navs {
	text-align: center;
	margin-top: 100px;
}

.s_navs a {
	display: inline-block;
	vertical-align: middle;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    color: #edd386;
    border: none;
    background: unset;
    background-image: url(images/btn-bg.fw.png);
    background-size: 100% 100%;
    padding: 10px 30px;
    margin: 0 20px;
    transition: all .3s;
}

.s_navs a:hover, .s_navs a:focus {
    color: #ffffff;
    transform: scale(.9);
}

.breadcrumb {
	font-family: 'Barlow Condensed', sans-serif;
    font-size: 23px;
    color: #ecd892;
    background: unset;
    margin-bottom: 100px;
}

.breadcrumb>li+li:before {
	content: "¬";
	color: #ecd892;
}

.breadcrumb a {
	color: #ecd892;
}

.breadcrumb a:hover, .breadcrumb a:focus {
	color: #ffffff;
}

/* crafts page */
.crafts_cat {
    margin-bottom: 100px;
}

.crafts_cat .cat {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.crafts_cat .cat li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    margin-bottom: 10px;
}

.crafts_cat .cat li a {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #eed894;
    padding: 0 15px;
    width: 193px;
    height: 119px;
    z-index: 1;
}

.crafts_cat .cat li a:hover, .crafts_cat .cat li a:focus, .crafts_cat .cat li.active a {
    color: #ffffff;
}

.crafts_cat .cat li .svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
}

.crafts_cat .cat li .svg svg {
    height: auto;
    max-width: 100%;
}

.crafts_cat .cat li .svg svg path {
    transition: all .3s;
    fill: rgba(42, 18, 14, .8);
}

.crafts_cat .cat li:hover .svg svg path, .crafts_cat .cat li.active .svg svg path {
    fill: #238C00;
}

#crafts_content .cat_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 50px;
}

#crafts_content .description {
    font-size: 20px;
    line-height: 2;
}

#crafts_content .description p {
    margin-bottom: 2em;
}

.craft_gall_container .view_gall {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 100px;
}

.craft_gall_container .item .main_body {
    width: 483px;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 100px;
}

.craft_gall_container .item .main_body .img-container .fake_image {
    padding-top: 54.58%;
    background-size: cover;
    background-position: center;
}

.craft_gall_container .item .main_body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #EBD285;
}

.craft_gall_container .item .main_body .exerpt {
    font-size: 20px;
    margin-bottom: 1em;
}

.craft_gall_container .slide_pager {
    margin-bottom: 100px;
}

.craft_gall_container .slide_pager .slick-dots {
    position: unset;
}

.craft_gall_container .slide_pager .slick-dots li {
    width: auto;
    height: auto;
}

.craft_gall_container .slide_pager .slick-dots li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ecd285;
    font-family: 'merriweather';
    width: 61px;
    height: 61px;
    background-image: url(images/circ.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.craft_gall_container .special_modal .img-container {
    width: 447px;
    max-width: 100%;
    position: relative;
    margin: auto;
}

.craft_gall_container .special_modal .img-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(images/behind-image.fw.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.3) rotate(-14deg);
}

.craft_gall_container .special_modal .img-container .fake_image {
    position: relative;
    padding-top: 66.66%;
    background-size: cover;
    background-position: center;
}

.craft_gall_container .special_modal h3 {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #ebd285;
}

.craft_gall_container .special_modal .artist_info {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}

.craft_gall_container .special_modal .artist_info .artist_image {
    width: 180px;
    max-width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

.craft_gall_container .special_modal .artist_info .artist_image .fake_image {
    padding-top: 105.55%;
    background-size: cover;
    background-position: center;
}

.craft_gall_container .special_modal .artist_info .artist_details {
    flex: 1;
    padding-left: 30px;
}

.craft_gall_container .special_modal .artist_info .artist_details .artist_top {
    display: flex;
    align-items: center;
}

.craft_gall_container .special_modal .artist_info .artist_details .artist_top div {
    width: 50%;
}

.craft_gall_container .special_modal .artist_info .artist_details .artist_top div h3 {
    text-align: left;
    margin-top: 0;
}

.craft_gall_container .special_modal .artist_info .artist_details .a_excerpt {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 1em;
}

.craft_gall_container .special_modal .artist_info .artist_details .artist_link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    color: #ffffff;
}

.craft_gall_container .special_modal .artist_info .artist_details .artist_link:hover, .craft_gall_container .special_modal .artist_info .artist_details .artist_link:focus {
    color: #ebd285;
}
/* crafts page - END */

/* Events Page */
.events_side .list {
    margin-bottom: 50px;
}

.events_side .list h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    font-weight: bold;
}

.events_side .list ul {
    list-style: none;
    padding-left: 15px;
}

.events_side .list > ul {
    margin: 0;
    padding: 0;
}

.events_side .list ul li {
    background: no-repeat;
    border: none;
}

.events_side .list ul li a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    color: #ffffff;
    border-bottom: solid 1px #ffffff;
    padding: 5px 0;
}

.events_side .list ul li a:hover, .events_side .list ul li a:focus {
    color: #ecd892;
}

.e_calendar_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 50px;
}

.events_calendar {
    margin-bottom: 100px;
    background-color: rgba(43, 37, 0, 0.75);
    border: solid 3px #eacb70;
}

.events_calendar .table {
    margin: 0;
}

.events_calendar .table > caption {
    font-size: 50px;
    font-weight: 900;
    color: #eacb70;
}

.events_calendar .table .week_names {
    font-size: 14px;
    color: #eacb70;
}

.events_calendar .table .week_names th {
    text-align: center;
    border: solid 3px #eacb70;
    width: 14.28%;
}

.events_calendar .table .week_names th:first-child {
    border-left: unset;
}

.events_calendar .table .week_names th:last-child {
    border-right: unset;
}

.events_calendar .table tr td {
    height: 124px;
    border: solid 3px #eacb70;
    font-size: 20px;
    font-weight: bold;
    color: #eacb70;
    background-size: cover;
    background-position: center;
}

.events_calendar .table tr td:first-child {
    border-left: unset;
}

.events_calendar .table tr td:last-child {
    border-right: unset;
}

.events_calendar .table tr:last-child td {
    border-bottom: unset;
}

.events_body .event_container .event_top {
    display: flex;
    margin-bottom: 50px;
}

.events_body .event_container .event_top .img_container {
    width: 436px;
    max-width: 100%;
}

.events_body .event_container .event_top .img_container .fake_image {
    padding-top: 54.58%;
    background-size: cover;
    background-position: center;
}

.events_body .event_container .event_top .main_info {
    flex: 1;
    padding-left: 30px;
}

.events_body .event_container .event_top .main_info .e_title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #ebd285;
}

.events_body .event_container .event_top .main_info .e_meta {
    font-size: 20px;
    width: 431px;
    max-width: 100%;
}

.events_body .event_container .event_top .main_info .e_meta p {
    margin: 0;
}

.events_body .event_container .event_details h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    color: #ebd285;
    margin-bottom: 1em;
}

.events_body .event_container .event_details p {
    font-size: 20px;
    margin-bottom: 2em;
}

.artists_body .artists_container > h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    font-weight: bold;
}

.artists_body .artists_container .artist_banner {
    position: relative;
    height: 512px;
}

.artists_body .artists_container .artist_banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1446px;
    background-image: url(images/artist-ban.fw.png);
    background-position: left center;
    background-size: auto;
    background-repeat: no-repeat;
}

.artists_body .artists_container .artist_top {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: -150px;
    margin-bottom: 50px;
}

.artists_body .artists_container .artist_top .img_container {
    width: 321px;
    max-width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

.artists_body .artists_container .artist_top .img_container .fake_image {
    padding-top: 105.92%;
    background-size: cover;
    background-position: center;
}

.artists_body .artists_container .artist_top .artist_meta {
    padding-left: 30px;
}

.artists_body .artists_container .artist_top .artist_meta h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 75px;
}

.artists_body .artists_container .artist_main {
    margin-bottom: 100px;
}

.artists_body .artists_container .artist_main p {
    font-size: 20px;
    margin-bottom: 2em;
}

.artists_body .artists_container .artist_bot {
    display: flex;
    align-items: center;
}

.artists_body .artists_container .artist_bot > div {
    width: 50%;
}

.artists_body .artists_container .artist_bot .socials {
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
}

.artists_body .artists_container .artist_bot .socials li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}

.artists_body .artists_container .artist_bot .socials li a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    margin: 5px 0;
    background-color: transparent;
}

.artists_body .artists_container .artist_bot .socials li a:hover, .artists_body .artists_container .artist_bot .socials li a:focus {
    background-color: #68433b;
}
/* Events Page - END */

/* 10 9 2018 */
.circuit_color {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    border-radius: 3em;
    margin-left: 10px;
}

#gform_confirmation_wrapper_1 {
    height: 480px;
    text-align: center;
    background-color: rgba(42, 18, 14, 0.5);
    border: solid 3px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
}

/* leaflet map */
#map_container #map { 
    height: 500px;
    width: 70%;
    float: left;
}

.page-id-131 #map_container #map { 
	height: 840px;
}

#map_container #marker-list {
    float: right;
    width: 30%;
    height: 500px;
    overflow-y: auto;
    background: #fff;
}

.page-id-131 #map_container #marker-list { 
	height: 840px;
}

#map_container #marker-list h3 {
    font-family: 'Barlow Condensed', sans-serif;
    background: #a7481a;
    color: #ecd285;
    margin: 0;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#map_container #marker-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#map_container #marker-list ul li {
    border-bottom: 1px solid #eee;
}

#map_container #marker-list ul li:last-of-type {
    border-bottom: none;
}

#map_container #marker-list ul a {
    display: block;
    padding: 10px 15px;
    color: #a8a8a8;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#map_container #marker-list ul a i {
    font-size: 14px;
    padding-right: 10px;
}

#map_container #marker-list ul a img {
    width: 30px;
}

#map_container #marker-list ul a:hover,
#map_container #marker-list ul a:active,
#map_container #marker-list ul a:focus,
#map_container #marker-list ul a:visited {
    color: #fff;
    background: #FCA01E;
}

#map .marker-info .marker-name,
#map .marker-info .marker-location {
    display: block;
}

#map .marker-info .marker-name {
    color: #E60A3A;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 6px;
}

#map .marker-info .marker-phone-label,
#map .marker-info .marker-phone {
    display: block;
}

#map .marker-info .marker-phone-label {
    font-size: 11px;
    font-weight: 700;
}

.leaflet-container a.leaflet-popup-close-button {
    display: none !important;
}
/* leaflet map - END */

/* 9 17 2019 */
#temp_section {
    padding: 50px 0;
    background-image: url(images/ibagiw-bg.jpg);
    background-position: center;
}

#temp_section .details {
    text-align: center;
}

#temp_section .details h2 {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

#temp_section .details h3 {
    font-size: 35px;
    margin: 0;
    color: #bea157;
}

#temp_section .details .btn {
    color: #ffffff;
    margin-top: 15px;
    padding-left: 45px;
    padding-right: 45px;
}

/* 9 18 2019 */
#inner_page_banner .img-container {
    width: 600px;
    max-width: 100%;
    margin: auto;
}

#inner_page_banner .img-container .fake_image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* 10 24 2019 */
#events_section .item {
    vertical-align: top;
}