/*@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap&subset=latin-ext');*/
@import url('https://fonts.googleapis.com/css?family=Caladea:400,700&display=swap&subset=latin-ext');
/*@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap&subset=latin-ext');*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');
/*
font-family: 'Roboto', sans-serif;
font-family: 'Caladea', serif;
font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Chivo', sans-serif;
*/


:root {
	--font-title: 'Chivo', sans-serif;
	--font-text: 'Open Sans', sans-serif;
	--color-theme-red: #04583c;
}

* {
	font-size: 100%;
}
html, body {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 16px;
	color: #333;
	line-height: 1;
	height: 100%;
}
html {
	min-height: 100%;
	*height: auto;
}
body {
	background-color: #FFF;
	display: flex;
	flex-direction: column;
}
.container-main {
	flex-grow: 1;
}

/*@media (max-width: 991.98px) {
	html,body {
		font-size: 14px;
		line-height: 1.35;
	}
}
@media (max-width: 767.98px) {
	html,body {
		font-size: 12px;
		line-height: 1.2;
	}
}*/


input[type="button"]:focus, button:focus{
	outline:none;
}
input[type="button"]::-moz-focus-inner, button::-moz-focus-inner {
	border: 0;
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	font-family: var(--font-title);
}

h1, .h1 {
	font-size: 2.5rem;
}
h2, .h2 {
	font-size: 2rem;
}
h3, .h3 {
	font-size: 1.75rem;
}
h4, .h4 {
	font-size: 1.5rem;
}
h5, .h5 {
	font-size: 1.25rem;
}
h6, .h6 {
	font-size: 1rem;
}


a {
	color: #333;
}
a:hover {
	color: #04583c;
	text-decoration: none;
}


/*
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { }
*/


.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}
@media (max-width: 767.98px) {
	.img-responsive {
		width: 100%;
	}
}


picture.lazy{
	opacity: 0;
	transition: opacity .3s;
}


@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	} to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}

.is-sticky {
	top: 0;
	left: 0;
	*position: fixed;
	width: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.97);
	-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	-webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
	animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}

@media (max-width: 991.98px) {
	.sticky.is-sticky {
		position: fixed;
	}
}
@media (min-width: 992px) {
	.sticky-lg.is-sticky {
		position: fixed;
	}
	.container-sticky {
		max-width: 1140px;
		margin: 0 auto;
	}
	.is-sticky .container-sticky {
		padding: 0 1rem;
	}
}


.scroll-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	z-index: 999;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border-radius: 4px;
	background-color: #04583c;
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.scroll-top.not-visible {
	bottom: -50px;
	visibility: hidden;
	opacity: 0;
}
.scroll-top i {
	line-height: 40px;
	color: #fff;
	font-size: 25px;
}


.gdprChangePreferences_btn {
	display: none;
}


.container-main {
	background-color: #fff;
	padding-bottom: 1.875rem;
}
.wrapper {
	margin: 0 auto;
}



.header {
	position: relative;
	background: #e8e8e8;
}
@media (max-width: 991.98px) {
	.header {
		padding: 1rem 0;
		border-bottom: 1px solid #ddd;
	}
}
@media (min-width: 992px) {
	.header-middle {
		position: relative;
	}
}
.header-middle.is-sticky {
	padding: 0 15px;
	border-bottom: 1px solid #ddd;
}
.header-middle.is-sticky .logo img {
	padding: .5rem;
}
.header-bottom.is-sticky .menu.menu-main {
	border-bottom: 0;
	margin-bottom: 0;
}


.footer {
	background-color: #e3e3e3;
	padding-top: 1.875rem;
	padding-bottom: 1.875rem;
}
.footer .logo {
	width: 90%;
}

.footer__contact p {
	display: flex;
	font-size: .8rem;
	line-height: 1.2rem;
	margin-bottom: .5rem;
}
.footer__contact i {
	margin-right: 1rem;
	padding-top: .1rem;
	font-size: .9rem;
}
.footer__contact span {
	display: inline-block;
}
/*@media (max-width: 767.98px) {
	.footer__contact p {
		font-size: .8rem;
		margin-bottom: .5rem;
	}
}*/
.footer__copyright {
	display: inline-block;
	font-size: .8rem;
}
.footer__powered {
	display: inline-block;
	font-size: .8rem;
}



.menu ul {
	display: -ms-flexbox;
	-ms-flex-direction: row;
	display: flex;
	flex-direction: row;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.menu input[type="checkbox"],
.menu ul label.drop-icon {
	display: none;
}
.menu .menu-dropdown {
	display: none;
	border-radius: .125rem;
	margin-left: -1.25rem;
	position: absolute;
	top: 3.6rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 10.9375rem;
	z-index: 100;
}
.menu .menu-item:hover .menu-dropdown {
	display: block;
}
.menu .menu-sub {
	flex-direction: column;
	background: #04583c;
	border: .0625rem solid #ddd;
	border-radius: .125rem;
	padding: .3rem 1.25rem 1rem;
}
.menu .menu-item {
	padding: 0.3rem .6rem;
}
.menu li:first-child {
	*padding-left: 0;
}
.menu .menu-link {
	display: block;
	position: relative;
	font-size: .90rem;
	color: #111;
	line-height: 1rem;
	text-decoration: none;
	cursor: pointer;
	margin: .5rem 0;
	padding: .5rem 0;
}
.menu .menu-link:hover {
	color:#04583c;
}
.menu .menu-link .txt {
	font-weight: 600;
}
.menu .menu-sub .menu-item {
	padding:.7rem 0 0 0;
}
.menu .menu-sub .menu-link {
	margin: 0;
	padding: .25rem 0;
}
.menu .hide-txt .txt {
	display: none;
}


.menu.menu-top .menu-link {
	font-size: .76rem;
}
.menu.menu-top li:first-child {
	padding-left: 0;
}


.menu.menu-topright ul {
	justify-content: flex-end;
}


.menu.menu-main {
	position: relative;
	font-weight: 600;
}
.menu.menu-main li:first-child {
	padding-left: 0;
}
.menu.menu-main .menu-link {
	font-weight: 600;
}
.menu.menu-main .hlight .menu-link {
	background-color: #04583c;
	padding-left: .4rem;
	padding-right: .4rem;
	color: #fff;
}
.menu.menu-main .hlight:hover .menu-link {
	background-color: #B00317;
}


.menu.menu-footer ul {
	-ms-flex-direction: column;
	flex-direction: column;
}
.menu.menu-footer .menu-link {
	margin: 0;
	padding: 0;
}
.menu.menu-footer li {
	margin-top: .5rem;
	padding-left: 0;
}
.menu.menu-footer li:first-child {
	margin-top: 0;
}







.image_ratio {
	width: 100%;
	*padding-top: 56.25%;
	padding-top: 62.57%;
	overflow: hidden;
	position: relative;
}

.image_ratio_team {
	width: 100%;
	*padding-top: 56.25%;
	padding-top: 95.57%;
	overflow: hidden;
	position: relative;
}
.image_ratio img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: -100%;
	right: -100%;
	bottom: -100%;
	left: -100%;
}


.image_ratio2 {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}
.image_ratio2::before {
	display: block;
	content: "";
}
.image_ratio2_16by9 {
	padding-top: 56.25%;
}
.image_ratio2 img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


.infobox {
	font-size: .76rem;
	height: 100%;

}
.infobox__col {
	padding: 0 4px;
}

.infobox__today {
	line-height: 1.1rem;
}

.infobox__weather {
	line-height: 1.1rem;
	text-align: center;
	*padding: 0 4px;
}
.weather__iconbox {
	margin: 0 auto;
	display: inline-block;
}
.weather__temp {
	font-size: 1.3rem;
	margin-left: .5rem;
}
.weather__summary {
	text-align: center;
}

.infobox__currency {
	text-align: right;
	line-height: 1.1rem;
}


.hashtagcloud {
	font-size:.76rem;
	line-height: 1.2;
	font-weight: 600;
}
.hashtagcloud div {
	margin: .125rem;
	padding: .25rem;
	float: left;
	background-color: #efefef;
}
.hashtagcloud a {
	color: #04583c;
}
.hashtagcloud a:hover {
	color: #333;
}


.postbox a {
	text-decoration: none;
	color: #111;
	transition: all 0.1s ease;
}
.postbox__col a:hover  {
	color: #04583c;
}
.postbox__boxtitle {}
.postbox__col {}
.postbox__wrap {
	position: relative;
}
.postbox__image {}
.postbox__image img {}
.postbox__image-caption {}
.postbox__content {}
.postbox__content-header {}
.postbox__category {
	font-size: .7rem;
	line-height: 1;
	color: #666666;
	text-transform: uppercase;
}
.postbox__title {
	line-height: 1.2;
	font-family: var(--font-title);
}
.postbox__created {
	color: #999;
	font-size: .8rem;
}
.postbox__intro {
	line-height: 1.6;
	word-wrap: break-word;
}



.postbox__gallery {
	position: relative;
}
.postbox__gallery .owl-nav {
	font-size: 3rem;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-prev,
.postbox__gallery .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	margin: 0;
	border-radius: 0;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-prev {
	left: 2%;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-next {
	right: 2%;
}
.postbox__gallery .owl-theme .owl-nav [class*="owl-"] {
	display: block;
	color: #fff;
	background: transparent;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	opacity: 0.5;
}
.postbox__gallery .owl-theme .owl-nav [class*="owl-"]:hover {
	color: #04583c;
}
.postbox__gallery .owl-theme .owl-dots {
	position: absolute;
	bottom: -2rem;
	text-align: center;
	width: 100%;
}
.postbox__gallery .owl-theme .owl-dots .owl-dot span {
	background: #e3e3e3;
}
.postbox__gallery .owl-theme .owl-dots .owl-dot.active span,
.postbox__gallery .owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(198,0,0,0.5);
}



.__h1 .postbox__image.image_ratio2::before {
	padding-top: 37.47%;
}
/*.__h1 .postbox__image {
	width: 100%;
	max-height: 26rem;
	overflow: hidden;
}
.__h1 .postbox__image img {
	width: 100%;
}
@media (max-width: 575.98px) {
	.__h1 .postbox__image img {
		height: 26rem;
		object-fit: cover;
	}
}*/
.__h1 .postbox__content {
	margin-top: -4rem;
	/*background-color: #fff;*/
	/*background-color: rgba(4, 88, 60, 0.5);*/
	padding: 1rem;
	min-height: 6rem;
}

.owl-item.active .postbox__title {
	color: #fff;
}

.owl-item.active .postbox__content {
	background-color: rgba(4, 88, 60, 0.7);
	color: #fff;
}

.__h1 .postbox__category {
	margin-bottom: .3rem;
	color: #04583c;
}
.__h1 .postbox__title {
	font-size: 2.2rem;
}
.__h1 .postbox__intro {
	font-size: .86rem;
	margin-top: .44rem;
}

@media (max-width: 767.98px) {
	.__h1 .postbox__content {
		margin-top: -1rem;
		padding: .5rem;
	}
	.__h1 .postbox__intro {
		font-size: .8rem;
		margin-top: .44rem;
	}
	.__h1 .postbox__title {
		font-size: 1.25rem;
	}
}

@media (max-width: 576.98px) {
	.__h1 .postbox__content {
		margin-top: -2rem;
	}
	.__h1 .postbox__image.image_ratio2::before {
		padding-top: 62.57%;
	}
}

.__h1 .owl-theme .owl-nav {
	margin:0;
	*position: relative;
	width: 100%;
	font-size: 3rem;
}
.__h1 .owl-carousel .owl-nav button.owl-prev,
.__h1 .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	margin: 0;
	border-radius: 0;
}

@media (max-width: 767.98px) {
	.__h1 .owl-theme .owl-nav {
		font-size: 1.5rem;
	}
	.__h1 .owl-carousel .owl-nav button.owl-prev,
	.__h1 .owl-carousel .owl-nav button.owl-next {
		top: 20%;
	}
}

@media (max-width: 576.98px) {
	.__h1 .owl-carousel .owl-nav button.owl-prev, 
	.__h1 .owl-carousel .owl-nav button.owl-next {
		top: 35%;
	}
}

.__h1 .owl-carousel .owl-nav button.owl-prev span,
.__h1 .owl-carousel .owl-nav button.owl-next span {
	display: block;
}
.__h1 .owl-carousel .owl-nav button.owl-prev {
	left: 2%;
}
.__h1 .owl-carousel .owl-nav button.owl-next {
	right: 2%;
}
.__h1 .owl-carousel .owl-nav button.owl-prev span {
	padding-left: 3rem;
	padding-right: 1.5rem;
}
.__h1 .owl-carousel .owl-nav button.owl-next span {
	padding-right: 3rem;
	padding-left: 1.5rem;
}
.__h1 .owl-theme .owl-nav [class*="owl-"] {
	background-color: transparent;
	color: #fff;
	opacity: .7;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.__h1 .owl-theme .owl-nav [class*="owl-"]:hover {
	opacity: 1;
}



.postbox.__h2 {}

.__h2 .postbox__boxtitle {
	position: relative;
	margin-top: 1.875rem;
}
.__h2 .postbox__boxtitle span {
	display: inline-block;
	line-height: 1;
	border-top: .25rem solid #04583c;
	padding-top: .5rem;
}

.__h2 .postbox__col {
	margin-top: 2.875rem;
}
.__h2 .postbox__wrap {
	height: 100%;
	display: -ms-flexbox;
	-ms-flex-direction: column;
	display: flex;
	flex-direction: column;
	border: .0625rem solid #ddd;
	border-radius: .125rem;
}
.__h2 .postbox__image img {
	border-radius: .125rem;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.__h2 .postbox__content {
	background-color: #fff;
	padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	height: 100%;
}
.__h2 .postbox__content-header {
	position: relative;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 5px;
}
.__h2 .postbox__content-header::after {
	content: "";
    position: absolute;
    width: 32%;
    height: 100%;
    border-bottom: 4px solid #04583c;
    height: 0px;
    bottom: -2px;
}
.__h2 .postbox__category {
	margin-bottom: .3rem;
	color: #04583c;
}
.__h2 .postbox__title {
	*color: #111;
	font-size: 1.1rem;
	line-height: 1.3;
}
.__h2 .postbox__intro {
	color: #333;
	font-size: .8rem;
	margin-top: .8rem;
	line-height: 1.6;
	margin-bottom: 0;
	padding-right: .6rem;
}
@media (max-width: 767.98px) {
	.__h2 .postbox__col {
		margin-top: 1rem;
	}
	.__h2 .postbox__wrap {
		border: 0;
	}
	.__h2 .postbox__image img {
		border-radius: 0;
	}
	.__h2 .postbox__content {
		padding: 1rem 1rem 1rem 1rem;
	}
	
}



.__posts .postbox__col {
	margin-top: 1.875rem;
}
.__posts .postbox__wrap {
}
.__posts .postbox__image img {
	border-radius: .125rem;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.__posts .postbox__content {
	background-color: #fff;
	padding: 1.25rem 1.25rem 1.25rem 3rem;
	height: 100%;
}
.__posts .postbox__content-header {
	position: relative;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 5px;
}
.__posts .postbox__content-header::after {
	content: "";
    position: absolute;
    width: 12%;
    height: 100%;
    border-bottom: 4px solid #04583c;
    height: 0px;
    bottom: -2px;
}
.__posts .postbox__category {
	margin-bottom: .3rem;
	color: #04583c;
}
.__posts .postbox__title {
	*color: #111;
	font-size: 1.25rem;
	line-height: 1.3;
}
.__posts .postbox__created {
	margin-top: .55rem;
}
.__posts .postbox__intro {
	color: #333;
	font-size: .8rem;
	margin-top: .8rem;
	line-height: 1.6;
	margin-bottom: 0;
	padding-right: .6rem;
}
.__posts .have-result,
.__posts .no-result {
	padding-top: .25rem;
	font-size: .85rem;
	color: #777;
}
@media (max-width: 767.98px) {
	.__posts .postbox__content {
		padding: .5rem 0;
	}
	
	.__posts .postbox__title {
		font-size: 1rem;
		line-height: 1.1;
	}
}
@media (max-width: 991.98px) {
	.__posts .postbox__image img {
		border-radius: 0;
	}
	.__posts .postbox__image.image_ratio {
		padding-top: 100%;
	}
	.__posts .have-result,
	.__posts .no-result {
		padding-top: 1rem;
	}
}



.posts__pagination {
	margin-top: 1.875rem;
}
.posts__pagination .pagination {
	margin: 0;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.posts__pagination .page-item {
	margin-right: .5rem;
	margin-bottom: .5rem;
}
.posts__pagination .page-item:last-child {
	margin-right: 0;
}
.posts__pagination .page-item:first-child .page-link,
.posts__pagination .page-item:last-child .page-link {
	border-radius: 0;
}
.posts__pagination .page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin: 0;
	line-height: 1.25;
	border: 1px solid #ddd;
	background-color: #fff;
	color: #666666;
}
.posts__pagination .page-link:hover {
	border: 1px solid #bababa;
	color: #04583c;
}
.posts__pagination .page-item.disabled .page-link {

}
.posts__pagination .page-item.active .page-link {
	border-color: #ddd;
	background-color: #fff;
	color: #04583c;
}



.__post.postbox {
	margin-top: 1.875rem;
}
.__post .postbox__category {
	margin-bottom: .3rem;
	color: #04583c;
}
.__post .postbox__content-header {
    position: relative;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 5px;
}
.__post .postbox__content-header::after {
	content: "";
    position: absolute;
    width: 12%;
    height: 100%;
    border-bottom: 4px solid #04583c;
    height: 0px;
    bottom: -2px;
}
@media (max-width: 767.98px) {
	.__post .postbox__content-header::after {
		background: none;
		left: 0;
		top: 0;
		width: 0;
		height: 0;
	}
	.postbox__title {
		font-size: 2rem;
		line-height: 1.1;
	}
}
.__post .postbox__created {
	margin-top: .55rem;
}
.__post .postbox__image {
	font-size: .75rem;
	line-height: 1.2;
	color: #666666;
	margin-top: 1.875rem;
}
.__post .postbox__image-caption {
	font-size: .7rem;
	line-height: 1;
	color: #666666;
	margin-top: .7rem;
}
.__post .postbox__intro {
	font-weight: 700;
	margin-top: 1.875rem;
}
.__post .postbox__content-content {
	margin-top: 1.875rem;
	line-height: 1.5;
	text-align: left;
}
.__post .postbox__content-content a {
	color: #04583c;
}
.__post .postbox__content-content a:hover {
	text-decoration: underline;
}
.__post .embed-responsive {
	margin: 2rem 0;
}
.__post .postbox__gallery {
	margin: 2rem 0;
}


.search__layer {
	position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .2s ease;
    z-index: 1000;
    background-color: #fff;
    border: 0;
    top: 90px;
}
.search__layer.active {
	height: 100px;
    top: 108px;
}
@media (min-width: 992px) {
	.search__layer.active {
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
	.search__layer {
    top: 107px;
}
	
}
.search__form {
	height: 100%;
	width: 100%;
}
.search__form form {
	width: 100%;
}
.search__inputbox {
	padding: .25rem;
}
.search__input {
	background-color: #fff;
	border: 1px solid #ddd;
	flex:1 1 100%;
}
.search__input input{
	width: 100%;
	height: 2.25rem;
	background-color: transparent;
	border: 0;
	padding: .25rem .5rem;
	font-size: .9rem;
	font-weight: 600;
}
.search__button {
	flex:1 10 100%;
}
.search__button button {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.searchOpenBtn,
.searchCloseBtn {
	cursor: pointer;
}

@media (max-width: 991.98px) {
	.is-sticky .searchCloseBtn .search__button-close {
		padding-right: 15px;
	}
	.search__input input{
		height: 2rem;
	}
}
@media (max-width: 767.98px) {
	.search__input input{
		height: 1.75rem;
	}
	.search__button {
		flex: 1 7 100%;
	}
	.is-sticky .search__layer.active ~ .logobox {
		height: 4.5rem;
		
	}
}
@media (max-width: 575.98px) {
	.search__input input{
		height: 1.5rem;
	}
	.search__button {
		flex: 1 5 100%;
	}
	.is-sticky .search__layer.active ~ .logobox {
		height: 4rem;
	}
	
}
.search__button-close {
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	cursor: pointer;
}
.search__type {
	padding: .25rem;
	padding-left: .5rem;
	font-size: .80rem;
}
.search__type label {
	cursor: pointer;
	margin: 0;
	margin-right: 1rem;
}
.search__type input[type="radio"] {
	display: none;
}
.search__type input[type="radio"] + label > span.inp {
	position: relative;
	display: inline-block;
	margin: 0;
	width: .9rem;
	height: .9rem;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 50%;
	margin-right: .5rem;
	cursor: pointer;
}
.search__type input[type="radio"]:checked + label > span.inp::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: var(--color-theme-red);
}



.left_panel {
	position: fixed;
	top: 0;
	bottom: 0;
	*width: 70%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	*transform: translate3d(-100%,0,0);
	left:-100%;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 3000;
	background-color: #333;
}
.left_panel__btnOpen {
	cursor: pointer;
}
.left_panel.open {
	left:0;
}
@media (max-width: 575.98px) { 
	.left_panel {
		width: 70%;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.left_panel {
		width: 60%;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
	.left_panel {
		width: 50%;
	}
}
.left_panel__open{
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}
.left_panel__wrap {
	position: relative;
	width: 100%;
	padding: 1.25rem;
}
.left_panel__overlay {
	background-color: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: visibility .5s linear,opacity .4s ease-in-out;
	z-index: 2000;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.left_panel__open .left_panel__overlay {
	visibility: visible;
	opacity: 1;
}


.container-main, 
.footer {
	position: relative;
	left: 0;
	-webkit-transition: left .4s ease-in-out;
	transition: left .4s ease-in-out;
}
.left_panel__open .container-main, 
.left_panel__open .footer {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	left: 50%;
}


.left_panel .infobox {
	color: #fff;
	font-size: .8rem;
	font-weight: 600;
	line-height: 1.1;
	padding: 0 0 1.25rem .5rem;
	display: flex;
}
.left_panel .infobox a {
	color: #fff;
}
.left_panel .infobox__today {
	display: inline-block;
	width: 50%;
}
.left_panel .infobox__social {
	display: inline-block;
	width: 50%;
	text-align: right;
	font-size: 1.2rem;
}



.mmenu {
	font-size: .84rem;
	font-weight: 600;
	line-height: 1.1rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mmenu input[type="checkbox"] {
	display: none;
}
.mmenu li, 
.mmenu a {
	position: relative;
	display: block;
	*text-shadow: 1px 1px 0 rgba(0, 0, 0, .125);
}
.mmenu .menu-main li {
	border-bottom: 1px solid #454545;
}
.mmenu .menu-sub li {
	border-bottom: 0;
}
.mmenu .menu-dropdown {
	display: none;
	top: 100%;
	z-index: 100;
}
.mmenu input[type="checkbox"]:checked ~ .menu-dropdown {
	display: block;
}
.mmenu li label.drop-icon {
	position: absolute;
	right: 0;
	top: 0;
}
.mmenu a {
	padding: .5rem;
	width: 80%;
	float: left;
}
.mmenu label {
	margin: 0;
	color: #fff;
	cursor: pointer;
	width: 20%;
	float: left;
}
.mmenu label.drop-icon {
	padding: .5rem;
	font-size: .6em;
	text-align: right;
}
.mmenu label.drop-icon ._up{
	display: none;
}
.mmenu  input[type="checkbox"]:checked ~ .clearfix .drop-icon ._up {
	display: inline-block;
}
.mmenu  input[type="checkbox"]:checked ~ .clearfix .drop-icon ._down {
	display: none;
}
.mmenu .menu-sub {
	*flex-direction: column;
	*background: #fff;
	*border: .0625rem solid #ddd;
	*border-radius: .125rem;
	padding: .3rem 0 .3rem 1rem;
}
.Xmenu-item {
	padding: 0 .6rem;
}
.Xmenu li:first-child {
	*padding-left: 0;
}
.mmenu .menu-link {
	color: #fff;
	cursor: pointer;
}
.mmenu .menu-link:hover {
	color: #04583c;
}
.Xmenu-link {
	display: block;
	position: relative;
	font-size: .84rem;
	color: #111;
	line-height: 1rem;
	text-decoration: none;
	cursor: pointer;
	margin: .5rem 0;
	padding: .5rem 0;
}
.Xmenu-link .txt {
	font-weight: 600;
}
.Xmenu-sub .menu-item {
	padding:.7rem 0 0 0;
}
.Xmenu-sub .menu-link {
	margin: 0;
	padding: .25rem 0;
}
.mmenu .m-hide-txt .txt {
	display: none;
}
.mmenu .m-hide-icon i {
	display: none;
}

/*
*	FOOTER
*/



.footer::before {
    content: '';
    background-image: url(../images/grass.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto;
    height: 50px;
    margin-top: -50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;}
.footer {
	min-height: 400px;
	margin-top: 50px;
	background-image:url("../images/bg-footer.jpg");
	background-repeat:repeat-x;
	background-position:center top;
	position:relative;
	background-size:auto;
	background-color: #0f0c07;
}
.footer .container {
	padding-top: 50px;
}

.footer-menu {
	min-height: 300px;
}
.footer-menu .mtext {
	color: #fff;
	padding: 8px 0;
}
.footer-menu .mtitle::before{
	content: '';
	width: 4rem;
	height: .4rem;
	display: block;
	position: absolute;
	top: 100%;
	margin-top: -.2rem;
	background-color: #F8C23E;
}
.footer-menu .mtitle {
	font-size: 18px;
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	margin-top: 0;
	margin-bottom: 10px;
	border-color: rgba(30,30,30,.15);
}
.footer-menu .mtitle {
	color: #fff;
	border-color: rgba(163,155,141,.55);
}
.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-menu li {
	list-style: none;
}
.footer-menu .nav-link {
	padding: 8px 0;
	color: #fff;
}


.footer-bottom {
	min-height: 30px;
	padding-bottom: 10px;
}
.footer-bottom .copyright {
	color: #fff;
}
.footer-bottom .powered {
	text-align: right;
	color: #fff;
}
.footer-bottom .powered a {
	color: #fff;
}
@media (max-width: 575.98px) {
	.footer-bottom .powered {
		text-align: left;
	}
}
.header-default .home .row .index-text-holder::before {
    content: "";
    position: absolute;
    border-top: 1px solid #04583c;
    border-left: 1px solid #04583c;
    width: 50px;
    height: 50px;
    top: -25px;
    left: -10px;}

.header-default .home .row .index-text-holder::after {
    content: "";
    position: absolute;
    border-bottom: 1px solid #04583c;
    border-right: 1px solid #04583c;
    width: 50px;
    height: 50px;
    right: -10px;
    margin-top: -50px;
}

.index-text-holder{
	margin:0 auto;
}

.header-bottom .container-sticky .row .col-md-12 .menu .menu-main{
justify-content:flex-end ;
background-color: #04583c;
}
.is-sticky .container-sticky .row .col-md-12 .menu .menu-main {
    justify-content: center !important;
    background-color: #04583c;
}
.header-bottom .container-sticky .row .col-md-12 .menu .menu-main li .clearfix a {
color: #fff;
}
.header-bottom .container-sticky .row .col-md-12 .menu .menu-main li .clearfix a:hover{
color: #F8C23E;
}
.logo-absolute{
position: absolute;
    top: -20px;
    left: 15px;
    z-index: 2000;

}
.logo-text{
margin-left: 105px;
    padding-bottom: 10px;

}
.header-bottom{
background-color: #04583c;
}


.postbox__content-content p {
line-height: 115% !important;
    text-align: justify;

}
@media (max-width: 400px) {
	.resp-image{
		width:90%;

	}
	
}
.header-bottom .container-sticky .row .col-md-12{
	padding-right: 22px;

}
.is-sticky .container-sticky .row .col-md-12{
	padding-right: 4px;

}
.logo-text h5{

	color: #132B4A;
    font-size: 20px;
    font-weight: 700;
}
.__post .postbox__content-content{
	text-align: justify;
}

@media (min-width: 992px) {
	
.post-share{
width: 25%;
    height: 40px;
    margin-bottom: 50px !important;
    margin-top: -70px;
    z-index: 999;
    position: relative;
    float:right;
}

.post-page-title{
width: 80%;
font-size: 2rem;

}
}
.menu-topright ul li .clearfix a{
margin-bottom: 0px;
    padding-bottom: 0px;

}
.menu-topright ul li .clearfix a .fa-facebook-square{
	font-size: 17px;
}
/*Robi*/
.menu .menu-sub {
	background: #04583c;
}
ul.menu-sub li.menu-item div a.menu-link:hover {
	text-decoration: underline;
	text-decoration-color: #fff;
}

.share_button {
	text-align: right;
}

@media (max-width: 991px) {
	.share_button {
		padding-bottom: 1rem;
		padding-right: 1rem;
	}
}

@media (min-width: 992px) {
	.share_button {
		float: right;
	}
}

blockquote {
	background-color: #F7FFF0;
	border-left: 5px solid #80C83D;
	color: #333333;
	display: block;
	font-family: tahoma;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: 25px;
	padding: 8px;
	text-align: left;
}


/* Tamas*/

@media (min-width: 1092px) {
	ul.menu-main li.has-children > div > a::after {
	content: "›";
	color: #fff;
	display: inline-block;
}}

@media (max-width: 992px) {

.logo-absolute a img{
width:70%;

}

.logo-absolute{
position: relative;
left:-0px;
}
.logo-text h5 {
    color: #132B4A;
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
    font-weight: 600;
    border-top: 2px solid #04583c;
    letter-spacing: 0.7px;
}
.logo-text{
margin-left: 0px;

}
.header {
    position: relative;
    background: #FFF;
}
.header-middle .row .searchOpenBtn{
display:none !important;

}
.header-top{
display: inline-block !important;
    position: absolute;
}
.menu-topright ul li{
	padding-top: 0px;
}
.menu-topright ul li .clearfix a{
margin-top: 0px;
    padding-top: 0px;
}

.search__form form{
border-top: 1px solid #ddd;
    margin-top: 20px;

}
.search__form form .row .col-11{

	padding-left: 30px;
} 
.searchCloseBtn {
padding-left: 0px;
    padding-right: 30px;
    align-items: baseline !important;

}
.header .is-sticky{
padding:15px;

}
.header{
	padding-bottom: 0px;
	margin-bottom: 15px;
}
.is-sticky .row .left_panel__btnOpen{
position: relative;
    top: 25px;
    font-size: 20px;

}
.is-sticky .row .logo-holder .logobox .logo a img{
width:40%;
}
.is-sticky .row .logo-holder .logobox{
position: absolute;
    left: 35px;
    float: left;
    margin: 0 auto;
}
.is-sticky .row .logo-holder .logo-text h5{
border:none !important;
padding-top: 0px ;
}
.header-middle .row .left_panel__btnOpen{
position: relative;
    font-size: 20px;
    z-index: 999;
}
.search__layer {
	position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .2s ease;
    z-index: 1000;
    background-color: #fff;
    border: 0;
    top: 40px;
}
}
@media (max-width: 992px)  and (min-width: 768px){
.header .header-top{
	max-width: 100% !important;
}
.header .header-middle{
	max-width: 100% !important;
}
	.logo-text h5{
	width: 70%;
    margin: 0 auto;
}
.header .is-sticky {
    padding: 15px;
    max-width: 100%;
}
.is-sticky .row .logo-holder .logobox .logo a img{
width:50%;
}
.is-sticky .row .logo-holder .logobox{
position: absolute;
    left: 35px;
    float: left;
    margin: 0 auto;
}
.is-sticky .row .logo-holder .logo-text h5{
border:none !important;
padding-top: 0px ;
width:70%;
}

.is-sticky .row .left_panel__btnOpen{
position: relative;
    top: 25px;
    font-size: 20px;
    z-index: 999;
}
}
@media (max-width: 767px) {
.header .is-sticky {
    padding: 15px;
    max-width: 100%;
}
.is-sticky .row .logo-holder .logobox .logo a img{
width: 100%;
   display: inline-block
}
.is-sticky .row .logo-holder .logobox{
position: absolute;
    left: 40px;
    float: left;
    margin: 0 auto;
    display: inline-block;
    width: 56px;
    top: -5px;
}
.is-sticky .row .logo-holder .logo-text h5{
border:none !important;
padding-top: 0px ;
margin: auto 0 auto auto;
    font-size: 13px;
    width: 80%;
}
.is-sticky .row .logo-holder .logo-text{
position: relative;
    top: -4px;
}
.is-sticky .row .logo-holder .logobox .logo-absolute{
position: relative;
    left: -0px;
    display: inline-block;
}
.is-sticky .row .left_panel__btnOpen{
position: relative;
    top: 20px;
    font-size: 20px;
    z-index: 999;
}
}
.btn-readmore{
border-left: 2px solid #04583c;
    border-radius: 0px;
    padding: 0 0 0 10px;
    margin: 5px 0px;
    font-size: 0.9rem;

}
@media (min-width: 767px) {
.index-slider-partner  .owl-nav .owl-prev{
position: relative;
    float: left;
    left: -45px;
    font-size: 20px !important;
    color: #04583c !important;

}
.index-slider-partner  .owl-nav .owl-next{
position: relative;
    float: right;
    right: -45px;
    font-size: 20px !important;
    color: #04583c !important;

}
}
@media (max-width: 992px)  and (min-width: 768px){

.index-slider-partner .owl-nav .owl-prev{
    top: -58px;
}
.index-slider-partner  .owl-nav .owl-next{   
    top: -58px;
}
}
@media (max-width: 1300px)  and (min-width: 992px){

.index-slider-partner  .owl-nav .owl-prev{
    top: -72px;
}
.index-slider-partner  .owl-nav .owl-next{   
    top: -72px;
}
}
@media (min-width: 1320px){

.index-slider-partner  .owl-nav .owl-prev{
    top: -82px;
}
.index-slider-partner  .owl-nav .owl-next{   
    top: -82px;
}
}
.powered a img{
	width: 80px;
    position: relative;
    top: -2px;
}
.readmore-holder{
	padding: 0.25rem 1.25rem 1rem 1.25rem;
}