/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
}

p {
	margin-bottom: 30px;
}

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

blockquote {
}


address {
	margin: 0 0 1.5em;
}

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

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

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

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 10px;
}
h1 {
	font-size: 32px;
	line-height: 44px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

big,
.big {
	font-size: 36px;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html, body {
}

html {
}

*,
*:before,
*:after {
}

body {
}

hr {
}


ul {
}

ol {
}

li > ul,
li > ol {
}

dt {
}

dd {
}

img {
}

figure {
}

table {
}

table.tablepress thead th, 
table.tablepress tfoot th {
	background-color: #004029;
	color: #fff;
	text-align: center;
}
table.tablepress tbody td {
	text-align: center;
}
table.tablepress thead th:first-child {
	border-left: 1px solid #004029;
}
table.tablepress thead th:last-child {
	border-right: 1px solid #004029;
}
table.tablepress tbody td:first-child {
	border-left: 1px solid rgba(0, 0, 0, .4);
}
table.tablepress tbody td:last-child {
	border-right: 1px solid rgba(0, 0, 0, .4);
}
.tablepress tbody tr:last-child td {
	border-bottom: 1px solid rgba(0, 0, 0, .4);
}
table.tablepress .odd td {
	background-color: #FFF9C4;
}

a,
.btn-link {
	color: #004029;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}
a:hover,
a:focus,
a:active,
.btn-link:hover {
	color: #F6B800;
	text-decoration: none;
}
a.cl-hover-primary:hover,
a.cl-hover-primary:focus,
a.cl-hover-primary:active {
	color: #004029; 
}
a.cl-hover-opacity:hover,
a.cl-hover-opacity:focus,
a.cl-hover-opacity:active {
	opacity: .8;
} 

.cl-primary { color: #004029; }
.cl-secondary { color: #F6B800; }
.cl-tertiary { color: #932520; }
.cl-white { color: #ffffff; }
.cl-darkgrey { color: #333333; }

.bg-secondary { background-color: #F6B800 !important; }
.bg-image, .bg-pattern, .bg-overlay { position: relative; }
.bg-white { background-color: #fff; }
.bg-lightgrey { background-color: #F0F0F0; }
.bg-cover {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.bg-image > .bg-cover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}
.bg-image > .bg-cover ~ div.container {
	position: relative;
	z-index: 1;
}
.bg-path-top,
.bg-path-bottom { 
	background-position: center; 
	background-repeat: no-repeat; 
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%; 
	position: absolute; 
	width: 100%; 
	height: 151px; 
	left: 0; 
	bottom: 0;
}
.bg-path-top { 
	bottom: auto;
	top: 0; 
	-webkit-transform: rotateX(180deg);
	    -moz-transform: rotateX(180deg);
	     -ms-transform: rotateX(180deg);
	      -o-transform: rotateX(180deg);
	         transform: rotateX(180deg); 
}
.bg-yellow-path { background-image: url(../img/pattern/yellow-path.png); }
.bg-white-path { background-image: url(../img/pattern/white-path.png); }
.bg-grey-path { background-image: url(../img/pattern/grey-path.png); }

.bg-overlay > .container { position: relative; }
.bg-overlay:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: .8;
}
.bg-overlay-primary:before { background-color: #002D1D; }

.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-50 { margin-top: 50px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-30 { margin-right: 30px !important; }

.p-0 { padding: 0 !important; }
.p-25 { padding: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-100 { padding-top: 100px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-150 { padding-bottom: 150px !important; }

.op-01 { opacity: .1; }
.op-02 { opacity: .2; }
.op-03 { opacity: .3; }
.op-04 { opacity: .4; }
.op-05 { opacity: .5; }
.op-06 { opacity: .6; }
.op-07 { opacity: .7; }
.op-08 { opacity: .8; }
.op-09 { opacity: .9; }

.mih-250 { min-height: 250px; }
.mih-350 { min-height: 350px; }
.miw-250 { min-width: 250px; }
.maw-980 { max-width: 980px; margin-left: auto; margin-right: auto; }

[class*='wp-image-'],
[class^='wp-image-'] {
	max-width: 100% !important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.search-overlay {
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 999991;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}
.search-active .search-overlay {
	opacity: 1;
	visibility: visible;
}
.search-overlay .search-close {
	color: #F6B800;
	font-size: 28px;
    line-height: 34px;
    margin-right: 4px;
}
.search-overlay .search-form {
	width: 950px;
	max-width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.no-results .form-group,
.search-overlay .form-group {
	position: relative;
}
.no-results .form-group {
	margin-bottom: 50px;
}
.no-results .search-field,
.search-overlay .search-field {
	border-radius: 0;
	box-shadow: none;
	font-size: 19px;
	height: auto;
	padding: 20px;
}
.search-overlay .search-field {
	border: none;
}
.no-results .search-submit,
.search-overlay .search-submit {
	color: #F6B800;
	font-size: 28px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar-light .navbar-nav .nav-link {
	color: #004029;
}
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link:hover{
	color: #F6B800;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0;
	margin-top: 130px;
	text-align: center;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

.hiding {
	opacity: 0;
}

.visible {
	opacity: 1;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em !important;
}

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

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
	table-layout: fixed;
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}
.widget select {
	max-width: 100%;
}
.widget.widget-single {
	border: 1px solid #BBB;
	margin-bottom: 30px;
	padding: 30px;
}
.widget.widget-single .widget-title {
	border-bottom: 3px solid #F6B800;
	color: #932520;
	margin-bottom: 30px;
	padding-bottom: 10px;
	text-align: center;
}
.widget.widget-single ul {
	margin-bottom: 0;
}
.widget.widget-single ul li:not(:last-child) {
	margin-bottom: 20px;
}
.widget.widget-single.widget-categories ul li {
	position: relative;
	margin-bottom: 0;
}
.widget.widget-single.widget-categories ul li:before {
	content: '- ';
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/


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

.hentry {
	margin: 0;
}

.hentry img {
	height: auto;
	max-width: 100%;
}

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

.entry-summary {
	margin: 75px 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}


/* widget video */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	/*height: 100%;*/
	overflow: hidden;
	margin-bottom: 15px; 
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%; 
}

.embed-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.embed-wrapper:before {
    content: "";
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    display: block;
    overflow: hidden;
}

.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



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

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

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

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

/*--------------------------------------------------------------
## 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;
}
.gallery-item img {
	max-width: 100%;
	height: auto !important;
}

/*-------------------------------------
 ## Carousel
 ##------------------------------------*/
.owl-carousel .owl-nav{
	margin-top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}
.owl-carousel:hover .owl-nav {
	opacity: 1;
	visibility: visible;
}
.owl-theme .owl-nav [class*=owl-]:hover{
 	background: none;
}
.owl-theme .owl-nav [class*=owl-]:focus{
	outline: none;
}
.owl-theme .owl-dots .owl-dot{
	outline: none;
}
.owl-theme .owl-dots .owl-dot span{
	height: 10px;
	width: 50px;
	opacity: 0.7;
	background-color: #FFF;
	border: none;
	border-radius: 5px;
	margin-top: 0;
	margin-bottom: 0;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
	background-color: #F6B800;
	opacity: 1;
}
.owl-theme .owl-nav button {
	margin-top: -10px !important;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.owl-theme .owl-nav button.owl-next {
	right: 60px;
}
.owl-theme .owl-nav button.owl-prev {
	left: 60px;
}
.owl-carousel .owl-nav button > span{
	color: #fff;
	display: inline-block;
	font-size: 90px;
	line-height: 50px;
	opacity: .5;
}
.owl-theme .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 43px;
	width: 100%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

/*-------------------------------------
 ## Modal
 ##------------------------------------*/


/*-------------------------------------
 ## Elements
 ##------------------------------------*/
.btn-link {
	color: #004D30;
}
.btn-link:focus,
.btn-link:active {
	text-decoration: none;
}
.btn-primary,
.btn-secondary,
.btn-warning,
.gform_button.button {
	background-color: #004D30;
	border-color: #004D30;
	border-radius: 25px;
	color: #FFF;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	padding: 13px 30px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #F6B800;
	border-color: #F6B800;
}
.btn-secondary {  
	background-color: #ffffff;
	border-color: #F6B800;
	color: #004029;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
	background-color: #932520;
	border-color: #932520;
}
.btn-warning,
.gform_button.button {
	background-color: #F6B800;
	border-color: #F6B800;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.gform_button.button:hover,
.gform_button.button:focus,
.gform_button.button:active {
	background-color: #004D30;
	border-color: #004D30;
	color: #fff;
}
.btn-arrow:after {
	color: #932520;
	content: "\f077";
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-size: 28px;
	font-style: normal;
	font-variant: normal;
  	font-weight: 900;
  	line-height: 28px;
  	margin-left: 20px;
	text-rendering: auto;
  	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	vertical-align: middle;
}
.btn-arrow.collapsed:after{
	color: #F6B800;
	content: "\f078";
}

.card,
.panel {
	border-radius: 30px;
	border: none;
  	box-shadow: 0 1px 10px 0 rgba(0,0,0,0.5);
  	margin-bottom: 50px;
}
.panel-header {
	background-color: #932520;
	border-bottom: none;
	color: #FFF;
	font-size: 28px;
	line-height: 38px;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}
.card-img-top,
.card-header:first-child,
.card-header .image:first-child,
.panel-header:first-child {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}
.card-body,
.panel-body,
.panel-footer {
	padding: 20px;
}

.accordion {
	margin-bottom: 50px;
}
.accordion-title .btn {
	border: none;
	font-size: 28px;
	line-height: 38px;
	padding: 0px 0 20px 0;
	text-align: left;
	position: relative;
	white-space: normal;
}
h4.accordion-title .btn {
	font-size: 20px;
	line-height: 30px;
}
.accordion-title .btn:hover,
.accordion-title .btn:focus{
	color: #004029;
	text-decoration: none;
}
.accordion-title .btn:after {
	color: #932520;
	content: "\f077";
	font-family: 'Font Awesome 5 Free';
	font-size: 28px;
  	font-weight: 900;
  	line-height: 28px;
  	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	vertical-align: middle;
}
.accordion-title .btn.collapsed:after{
	color: #F6B800;
	content: "\f078";
}
.accordion-body .items {
	font-size: 0;
}
.accordion-body .items > li {
	vertical-align: top;
}

/*-------------------------------------
 ## Header
 ##------------------------------------*/
#header {
	background-color: #fff;
	position: relative;
	z-index: 99999;
	-webkit-transition: top 1.25s ease-in-out;
	   -moz-transition: top 1.25s ease-in-out;
	    -ms-transition: top 1.25s ease-in-out;
	     -o-transition: top 1.25s ease-in-out;
	        transition: top 1.25s ease-in-out;
}
#header .navbar-brand span {
	color: #932520;
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
}
.menu-fixed #header {
	box-shadow: 0 1px 5px 0 rgba(0,0,0,0.5);
	position: fixed;
	width: 100%;
	top: -100%;
	left: 0;
}
.menu-fixed #header .navbar-brand.on-top {
	opacity: 0;
	visibility: hidden;
}
.menu-fixed #header .navbar-brand.on-scroll {
	opacity: 1;
	visibility: visible;
}
.menu-fixed.menu-fixed-down #header {
	top: 0;
}
.header-top-left-menu {
	display: inline-block;
	margin-top: 4px;
}
.header-top-left-menu li:not(:first-child) {
	margin-left: 10px;
}
.header-top {
	background-color: #F6B800;
	padding-bottom: 4px;
}
.header-top a {
	color: #fff;
}
.header-top-menu {
	margin-bottom: 0;
}
.header-top-menu,
.header-top-menu li {
	display: inline-block;
	vertical-align: middle;
}
.header-top-menu a {
	font-size: 14px;
	padding-left: 20px;
	padding-right: 20px;
}
.top-menu-left .translator-dropdown-main-container {
	margin-bottom: 5px;
}
.top-menu-left .translator-dropdown-main-container:before,
.top-menu-left .translator-dropdown-main-container:after {
	content: "";
}
.top-menu-left .translator-dropdown-main-container:after {
	clear: both;
}
.top-menu-left .translator-dropdown-body {
	background: transparent !important;
	border: transparent !important;
}
.top-menu-left .translator-dropdown-current-language span {
	color: #FFF !important;
}
.top-menu-left .translator-dropdown-languages-list p a {
	background: #fff !important;
}
.top-menu-left .translator-dropdown-current-language-arrow {
	border-color: #fff transparent transparent !important;
}
.trigger-header-search {
	font-size: 24px;
	display: inline-block;
	padding-left: 20px;
	vertical-align: middle;
}
.search-active .trigger-header-search {
	display: none;
}

.site-hero{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 200px;
	margin-bottom: 70px;
	position: relative;
}
.site-hero:before {
	background-color: rgba(0, 45, 28, .4);
	content: "";
	left: 0;
	top: 0;
	position: absolute;
	height: 100%;
	width: 100%;
}
.site-hero-caption {
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 1;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.site-hero-title {
	color: #fff;
	font-weight: 700;
	line-height: 44px;
	margin-bottom: 0;
	max-width: 415px;
}

/*------------------------------------
 ## Breadcrumbs
 ##-----------------------------------*/


/*------------------------------------
 ## Homepage
 ##-----------------------------------*/
.home-slider:after {
	background-image: url(../img/tagline.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 265px 40px;
	content: "";
	display: block;
	margin-top: -1px;
	width: 100%;
	height: 50px;
}
.home-slider .item .image:after {
	background-color: rgba(0, 0, 0, .5);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.home-slider .item .caption {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.list-social li {
	padding-left: 20px;
	padding-right: 20px;
}
.list-social li a i {
	font-size: 80px;
} 
.home-cta .form form {
	border-radius: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.home-cta .form .gform_heading {
	background-color: #932520;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 16px;
  	padding: 10px 15px 16px 15px;
}
.home-cta .form h3.gform_title {
	color: #fff;
	font-size: 28px;
	line-height: 38px;
	text-align: center;
}
.home-cta .form .gform_body {
	padding-top: 30px;
	padding-left: 50px;
	padding-right: 34px;
}
.home-cta .form .gform_fields {
	font-size: 0;
}
.home-cta .form .gform_fields .gfield_label,
.home-cta .form .gform_fields ul.gfield_radio li label, 
.home-cta .form .gform_fields ul.gfield_checkbox li label {
	font-size: 18px;
	font-weight: 400;
}
.home-cta .form .gform_fields textarea {
	border: 1px solid #BBB;
}
.home-cta .form .gform_fields input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
	border: 1px solid #BBB;
	height: 50px;
}
.home-cta .form .gform_fields li.field_description_below div.ginput_container_radio, 
.home-cta .form .gform_fields li.field_description_below div.ginput_container_checkbox {
	margin-top: 0 !important;
}
.home-cta .form .gform_fields .gfield_checkbox li input {
	margin-top: -2px !important;
	margin-right: 10px;
} 
.home-cta .form .gform_fields .gfield_checkbox li:last-child {
	margin-top: 30px;
}
.home-cta .form .gform_fields .gfield.status-lainnya {
	position: relative;
}
.home-cta .form .gform_fields .gfield.status-lainnya .ginput_container {
	position: absolute;
	left: 120px;
	bottom: 10px;
	width: 400px;
	max-width: 100%;
}
.home-cta .form h3.gform_title + p,
.home-cta .form .gform_fields .gfield_checkbox br,
.home-cta .form .gform_footer br {
	display: none;
}
.home-cta .form .gform_footer {
	text-align: center;
  	padding-left: 15px;
  	padding-right: 15px;
}
.home-cta .form .gform_footer .gform_button.button {
	width: 250px;
  	max-width: 100%;
}
.home-awards .owl-carousel .owl-item img {
	height: 200px;
	margin-left: auto;
	margin-right: auto;
	width: auto;
}
.home-awards .owl-carousel .owl-nav button > span {
	color: #F6B800;
}
.home-awards .owl-theme .owl-nav button.owl-prev {
	left: 0;
}
.home-awards .owl-theme .owl-nav button.owl-next {
	right: 0;
}
.home-awards .owl-theme .owl-dots .owl-dot span {
	background-color: #BBBBBB;
}
.home-awards .owl-theme .owl-dots .owl-dot.active span,
.home-awards .owl-theme .owl-dots .owl-dot:hover span{
	background-color: #F6B800;
}
/*------------------------------------
 ## Page
 ##-----------------------------------*/
.admisi-section {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.admisi-section .list-item {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.admisi-section .list-item.column-4 {
	max-width: 100%;
}
.admisi-section .list-item > li {
	width: 270px;
	vertical-align: top;
}
.admisi-section .list-item.column-4 > li {
	width: 260px;
}

.academic-row {
	padding-top: 50px;
}
.academic-item {
	margin-bottom: 50px;
}
.academic-item .header {
	margin-bottom: 30px;
	min-height: 100px;
	position: relative;
}
.academic-item .header img {
	height: 100px;
	position: relative;
	z-index: 1;
}
.academic-item .header .title {
	width: 100%;
	padding-left: 130px;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.profil-picture img {
	border-radius: 50%;
}
.profil-social-media a {
	display: inline-block;
	font-size: 40px;
	padding: 0 5px;
}
.accordion .accordion-content .card:last-of-type {
	border-top-left-radius: 30px;
    border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.testimoni-item,
.achievement-item {
	position: relative;
}
.testimoni-item .image,
.achievement-item .image {
	margin-bottom: 20px;
}
.testimoni-item .image img {
	border-radius: 50%;
}
.galleries-item img {
	border-radius: 30px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
/*-----------------------------------
 ## Post
 #-----------------------------------*/
.post.card .card-title {
	line-height: 25px;
}
.single article.post {
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	text-align: justify;
}

/*-----------------------------------
 ## Navigations
 #-----------------------------------*/
.navigation ul {
	border: 1px solid #F6B800;
	border-radius: 5px;
	padding: 10px 15px;
}
.navigation ul li {
	margin: 0 !important;
	vertical-align: middle;
}
.navigation ul li a {
	display: inline-block;
	font-size: 14px;
	line-height: 26px;
	padding: 0 10px;
}
.navigation ul li.active a {
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
}
.navigation ul li.nav-arrow a{
	color: #932520;
	font-size: 18px;
	line-height: 18px;
}

/*-----------------------------------
 ## 404
 #-----------------------------------*/
body.error404 {
	background-color: #f0f0f0;
}

/*-----------------------------------
 ## Comments
 #-----------------------------------*/


/*------------------------------------
 ## Footer
 ##-----------------------------------*/
.footer-top {
	background-color: #004029;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 40px;
}
.footer-top .widget-title {
	border-bottom: 3px solid #F6B800;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-align: center;
}
.footer-top .widget {
	font-size: 16px;
	line-height: 22px;
}
.footer-top .widget ul {
	list-style: none;
	padding: 0;
}
.footer-top .widget a {
	color: #fff;
}
.footer-top .widget a:hover,
.footer-top .widget a:focus {
	color: #F6B800;
}

.footer-bottom {
	padding-top: 15px;
	padding-bottom: 15px;
}

.footer-bottom .copyright {
	color: #333333;
	font-size: 14px;
	margin-bottom: 0;
}


/* Back to top */
.back-to-top {
	border-radius: 5px;
	text-align: center;
	background: #5b9412;
	color: #fff;
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0.6;
	filter: alpha(opacity=40);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
	z-index: 9999;
}
.back-to-top:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

/*------------------------------------
 ## Media Query
 ##-----------------------------------*/
@media (max-width: 1199px) {
	#header .navbar-brand {
		display: block;
		margin-right: 0;
		width: 100%;
		text-align: center;;
	}
	#header .navbar-brand img {
		height: 30px;
		width: auto;
	}
	#header .navbar-brand span {
		display: block;
	}
	#header .navbar-brand.on-scroll,
	.header-top-menu{
		display: none;
	}
	.menu-fixed #header .navbar-brand.on-top {
		opacity: 1;
		visibility: visible;
	}
	.navbar-brand.on-top img:not(.mobile-logo) {
		display: none;
	}
	.navbar-expand-lg .navbar-collapse {
		display: none !important;
	}
	.menubar-toggler {
		display: inline-block;
		font-size: 24px;
		margin-left: -10px;
		padding: 0px 10px;
		vertical-align: middle;
	}
	.menubar-overlay {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		opacity: 0;
		visibility: hidden;
		z-index: 999991;
	}
	.menubar-opened {
		overflow: hidden;
	}
	.menubar-opened .menubar-overlay {
		opacity: 1;
		visibility: visible;
	}
	.menubar-content {
		background-color: #fff;
		height: 100%;
		position: fixed;
		left: -100%;
		top: 0;
		width: 250px;
		overflow: scroll;
		z-index: 999992;
		-webkit-transition: all .25s ease-in-out;
		   -moz-transition: all .25s ease-in-out;
		    -ms-transition: all .25s ease-in-out;
		     -o-transition: all .25s ease-in-out;
		        transition: all .25s ease-in-out;
	}
	.menubar-opened .menubar-content {
		left: 0;
	}
	.sidebar-mobile-menu li a {
		display: block;
		font-size: 18px;
		font-weight: 700;
		line-height: 25px;
		padding: 20px;
	}
	.sidebar-mobile-menu li.current-menu-item a {
		color: #F6B800;
	}
	.search-overlay {
		background-color: transparent;
	}
	.search-overlay .search-form {
		margin-top: 7px;
		max-width: 100%;
		position: static;
		transform: none;
		width: 100%;
	}
	.header-top-left-menu {
		margin-top: 0;
		vertical-align: middle;
	}
	.top-menu-left .translator-dropdown-main-container {
		position: absolute;
		left: 50px;
		top: 3px;
	}
}

@media (max-width: 991px) {	
	.image-desc {
		margin-bottom: 50px;
	}
	.image-desc-item img {
		margin-bottom: 10px;
	}
	.home-cta .gfmc-column {
		width: 100% !important;
	}
}

@media (max-width: 767px) {
	p {
		text-align: justify;
	}
	.gallery-item,
	.home-awards .owl-carousel .owl-item img {
		max-width: 100% !important;
	}
	.bg-path-top, 
	.bg-path-bottom {
		height: 60px;
	}
	h1.text-right,
	h1.title,
	.academic-item .header,
	.academic-item .content{
		text-align: center !important;
	}
	.academic-item .header .title {
		margin-top: 10px;
		padding-left: 0 !important;
		position: static;
		transform: none;
		text-align: left;
	}
	.home-slider .item .image {
		min-height: 410px;
	}
	.home-slider .item .image img {
		display: none;
	}
	.home-slider .item .content h3 p {
		font-size: 18px;
	}
	.home-intro .btn {
		min-width: auto;
		width: 100%;
	}
	.home-awards .owl-theme .owl-dots {
		bottom: -20px;
	}
	.list-social li {
		display: block;
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.list-social li a i {
	    font-size: 160px;
	}
	.site-main .container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.home-cta .form .gform_body {
		padding-left: 15px;
		padding-right: 15px;
	}
	.home-cta .form .gform_fields .gfield.status-lainnya .ginput_container {
		position: relative;
		left: 0;
		bottom: 25px;
	}
}

@media (max-width: 575px) {

}

@media (max-width: 467px) {

}

@media (min-width: 468px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {
	.panel-body {
		padding: 50px;
	}
	.testimoni-item {
		padding-left: 220px;
		min-height: 200px;
	}
	.achievement-item {
		padding-left: 400px;
		min-height: 350px;
	}
	.testimoni-item .image,
	.achievement-item .image {
		position: absolute;
		left: 0;
		top: 0;
	}
}

@media (min-width: 992px){
	.accordion-body .items > li {
		margin-right: 0 !important;
		width: 25%;
	}
	.admisi-section.even h1.title{
		text-align: right;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
	.row {
		margin-left: -20px;
		margin-right: -20px;
	}
	.container, .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
		padding-left: 20px;
		padding-right: 20px;
	}
	.navbar {
		padding: 0;
	}
	.navbar-brand.on-top img.mobile-logo,
	.menubar-toggler,
	.menubar-content {
		display: none;
	}
	.menu-fixed .navbar-brand {
		top: 0;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.navbar-light .navbar-nav .nav-link {
		color: #004029;
		font-size: 18px;
		font-weight: 700;
		line-height: 24px;
		padding: 38px 25px;
		text-align: center;
	}
	.menu-fixed .navbar-light .navbar-nav .nav-link {
		padding-top: 23px;
		padding-bottom: 23px;
	}
	.navbar-light #menu-right-menu.navbar-nav .nav-link {
		text-align: right;
	}
}	

@media (min-width: 1440px) {

}

@media (min-width: 1600px) {

}