@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/

/* Template Variables */

:root {
	--thm-font: "微软雅黑";
	--heading-font: "微软雅黑";
	--special-font: "Work Sans", sans-serif;
	--thm-base: #aaa081;
	--thm-base-rgb: 170, 160, 129;
	--thm-black: #007bff;
	--thm-black-rgb: 91, 62, 53;
}
body {
	font-family: var(--thm-font);
	font-size: 16px;
	line-height: 28px;
	color: #848484;
}

[dir=rtl] .thm__owl-carousel {
	direction: ltr;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
}

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

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

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

.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	background-color: var(--thm-base);
	padding: 13.5px 36.5px;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.thm-btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

/* Cursor*/

.cursor {
	position: absolute;
	background-color: #fff;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: hidden;
}

.cursor {
	visibility: visible;
}

.cursor.active {
	opacity: 0.5;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.cursor.hovered {
	opacity: 0.08;
}

.cursor-follower {
	position: absolute;
	background-color: RGBA(255, 255, 255, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	visibility: hidden;
}

.cursor-follower {
	visibility: visible;
}

.cursor-follower.active {
	opacity: 0.7;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.cursor-follower.hovered {
	opacity: 0.08;
}

.cursor-follower.close-cursor:before {
	position: absolute;
	content: "";
	height: 25px;
	width: 2px;
	background: #fff;
	left: 48%;
	top: 12px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
}

.cursor-follower.close-cursor:after {
	position: absolute;
	content: "";
	height: 25px;
	width: 2px;
	background: #fff;
	right: 48%;
	top: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



.scroll-to-top {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: var(--thm-black);
	border-radius: 50%;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 990;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
	border: 1px solid var(--thm-black);
}

@media (max-width: 480px) {
	.scroll-to-top {
		width: 40px;
		height: 40px;
	}
}

.scroll-to-top i {
	font-size: 14px;
	line-height: 50px;
	color: #fff;
	position: relative;
	z-index: 10;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

@media (max-width: 480px) {
	.scroll-to-top i {
		font-size: 14px;
		line-height: 40px;
	}
}

.scroll-to-top:hover {
	background-color: #fff;

}

.scroll-to-top:hover i {
	color: var(--thm-black);
}



/* preloader */

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 99999999;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid var(--thm-black);
	opacity: 1;
	border-radius: 50%;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	        animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

/*images size */
.aspect-box {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}

.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
	position: relative;
	display: block;
	content: "";
	box-sizing: border-box;
}
.square {
	aspect-ratio: '1:1';
}
.square:before {
	aspect-ratio: '1:1';
	padding-top: 100%;
}
.rectangle3-1{
	aspect-ratio: '3:1';
}
.rectangle3-1:before {
	padding-top: 33%;
}
.rectangle16-9{
	aspect-ratio: '16:9';
}
.rectangle16-9:before {
	padding-top: 56.25%;
}
.rectangle16-10{
	aspect-ratio: '16:10';
}
.rectangle16-10:before {
	padding-top: 62.5%;
}
.rectangle10-16{
	aspect-ratio: '10:16';
}
.rectangle10-16:before {
	padding-top: 136%;
}
.rectangle3-4{
	aspect-ratio: '3:4';
}
.rectangle3-4:before {
	padding-top: 120%;
}
/*bootstrap thumbnail鐗规晥1207*/
.thumbnail{
	overflow: hidden;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.thumbnail:hover{
	text-decoration: none;
}
.thumbnail img{
	cursor: pointer;
	transition: all 0.6s;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.1) translateY(-50%);
	position: absolute;
	top: 50%;
}
.thumbnail .badge,
.thumbnail:hover .badge{
	position: absolute;
	top:0;
	right:0;
	z-index: 10;
	font-weight: 100;
	border-radius: 0 0 0 10px;
}

.thumbnail .caption{
	color:#333333;
}
.thumbnail .intro-2{
	color:#666666;
	height:50px;
}
/*ellipsis*/
.ellipsis-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ellipsis-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ellipsis-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
/*image-hover*/
.image-hover {
	overflow: hidden;
	position: relative;
}

.image-hover::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -180%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.2);
	transform: rotate(30deg) scale(1.2);
	background: -webkit-gradient(linear,
	left top, right top,
	color-stop(50%, rgba(255, 255, 255, 0)),
	to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
	rgba(255, 255, 255, 0) 50%,
	rgba(255, 255, 255, 0.7) 100%);
}

.item:hover .image-hover::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}


/* Block Title */

.block-title p {
	margin: 0;
	font-size: 17px;
	line-height: 1em;
	font-weight: bold;
	color: var(--thm-base);
	text-transform: uppercase;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
}

.block-title p::before {
	content: "";
	width: 60px;
	height: 2px;
	background-color: var(--thm-base);
	display: block;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.block-title h3 {
	font-family: "Playfair Display";
	font-weight: bold;
	color:#000000;
	font-size: 28px;
	margin: 0;
	margin-top: 25px;
}

.block-title-two {
	margin-bottom: 60px;
	position: relative;
	padding-top: 100px;
}

.block-title-two__line {
	width: 2px;
	height: 110px;
	background-color: var(--thm-base);
	position: absolute;
	top: -55px;
	left: calc(50% - 1px);
}

.block-title-two p {
	margin: 0;
	font-size: 17px;
	line-height: 1em;
	font-weight: bold;
	color: var(--thm-base);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.block-title-two h3 {
	font-family: "Playfair Display";
	font-weight: bold;
	color: var(--thm-black);
	font-size: 36px;
	margin: 0;
}



/*-------------------------------------------------------------- 
# Animations
--------------------------------------------------------------*/

@-webkit-keyframes ImgBounce {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@keyframes ImgBounce {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@-webkit-keyframes slideBgImage {
	from {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}

	to {
		-webkit-transform: scale(1.15);
		        transform: scale(1.15);
	}
}

@keyframes slideBgImage {
	from {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}

	to {
		-webkit-transform: scale(1.15);
		        transform: scale(1.15);
	}
}



/* shadowed carousel */

.shadowed__carousel .owl-stage-outer {
	overflow: visible;
}

.shadowed__carousel .owl-item {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 500ms ease, visibility 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease;
}

.shadowed__carousel .owl-item.active {
	opacity: 1;
	visibility: visible;
}

.breadcrumb{
	background-color:transparent;

}
.breadcrumb-item a{color:#999999}
.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}
.breadcrumb-item+.breadcrumb-item a{color:#999999}
.breadcrumb-item+.breadcrumb-item a:hover{color:#333333}
.breadcrumb-item+.breadcrumb-item::before{color:#999999;content:"/"}
.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}
.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}
.breadcrumb-item.active{color:#999999}


/*-------------------------------------------------------------- 
# Main Menu
--------------------------------------------------------------*/
.stricked-menu .logo_light,
.logo_dark {
	display: none;
}
.stricked-menu .logo_dark {
	display: block;
}

.main-nav-one .inner-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav-one .side-menu__toggler {
	display: none;
}

.main-nav-one .logo-box {
	padding:20px 0;

}
.main-nav-one .logo-box img{
	width:70%;
}
.main-nav-one .main-nav__main-navigation {

	background:#076ce0;
}

.main-nav-one .main-nav__main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav-one .dropdown-btn {
	display: none;
}

.main-nav-one .main-nav__main-navigation .main-nav__navigation-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav-one .main-nav__navigation-box>li {

	width:100%;
	text-align: center;
}

.main-nav-one .main-nav__navigation-box>li+li {

}

.main-nav-one .main-nav__navigation-box>li>a {
	padding: 20px 0;
	width:100%;
	font-size: 20px;
	font-weight: bold;
	color: var(--thm-black);
	display: block;
	text-align: center;
}

.main-nav-one .main-nav__navigation-box>li.active>a,
.main-nav-one .main-nav__navigation-box>li>a:hover {
	background:#054896;
}

.main-nav-one .main-nav__navigation-box .dropdown>a::after {
	content: "\e927";
	font-family: "feather";
	font-weight: 100;
	margin-left: 0;
}

/* Dropdown menu */

.main-nav__main-navigation .dropdown-btn {
	display: none;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul {
	position: absolute;
	min-width: 137px;
	background-color: #fff;
	border-top: 2px solid var(--thm-black);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
	-2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-webkit-transform-origin: top;
	transform-origin: top;
	visibility: hidden;
	opacity: 0;
	z-index: 991;
	-webkit-transition: opacity 500ms ease, visibility 500ms ease,
	-webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease,
	-webkit-transform 500ms ease;
	-webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease,
	-webkit-transform 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li {
	position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul .dropdown>a {
	position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul .dropdown>a::after {
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li+li {
	border-top: 1px solid rgba(var(--thm-black-rgb), 0.15);
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li>a {
	display: block;
	color: var(--thm-black);
	font-size: 16px;
	font-family: var(--thm-font);
	word-break: break-all;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li:hover>a {
	color: #fff;
	background-color: var(--thm-black);
}

/* Second level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul {
	top: 100%;
	left: 0;
	-webkit-transform: perspective(300px) scaleY(0) translateZ(30px);
	        transform: perspective(300px) scaleY(0) translateZ(30px);

	visibility: hidden;
	opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box>li:hover>ul {
	-webkit-transform: perspective(300px) scaleY(1) translateZ(0);
	        transform: perspective(300px) scaleY(1) translateZ(0);
	visibility: visible;
	opacity: 1;
}

/* Third level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li>ul {
	top: 0;
	left: 100%;
	-webkit-transform: perspective(300px) scaleX(0);
	        transform: perspective(300px) scaleX(0);
	visibility: hidden;
	opacity: 0;
	-webkit-transform-origin: left;
	        transform-origin: left;
}

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li:hover>ul {
	-webkit-transform: perspective(300px) scaleX(1);
	        transform: perspective(300px) scaleX(1);
	visibility: visible;
	opacity: 1;
}

/* After Third level menu */

.main-nav__main-navigation .main-nav__navigation-box>li>ul>li>ul>li>ul {
	display: none;
}

/* stricked menu */
.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #076ce0;
	box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
	opacity: 0;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.stricked-menu.stricky-fixed {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.stricked-menu .logo-box {
	padding-top: 15px;
	padding-bottom: 15px;
}

.stricked-menu .main-nav__main-navigation .main-nav__navigation-box>li {
	padding: 22px 0;
}

.stricked-menu .main-nav__right {
	padding-top: 22px;
	padding-bottom: 22px;
}

/* home two */

.main-nav-one__home-two .logo-box {

}

.main-nav-one__home-two .main-nav__right {
	border: none;
	padding-left: 40px;
	margin-left: 0;
}

/* home three */
.main-nav-one__home-three {

	width: 100%;
	z-index: 91;
	/*background-image: url(../images/top-bg1.jpg);*/
	background-repeat: no-repeat;
	background-position: right top;
background-color: #076ce0; 
}

.main-nav-one__home-three .logo-box {
	border-right: 0;
	padding-right: 0;
}

.main-nav-one__home-three .main-nav__right a,
.main-nav-one__home-three .main-nav__navigation-box>li>a {
	color: #ffffff;
}

.main-nav-one__home-three .main-nav__right {
	padding-left: 0;
	border-left: 0;
	margin-left: 40px;
}

/* home three stricked */
.main-nav-one__home-three.stricked-menu {
	position: fixed;
	border-bottom: 0;
}
.main-nav-one__home-three.stricked-menu .main-nav__navigation-box>li>a {
	color: #ffffff;
}

/*search*/
.search_wrap{
	position: absolute;
	right:0;
	margin: 25px;
}
.search_wrap .form-control {
	border-radius: 20px;
	float:right;
	border:1px solid #076ce0;
	background: rgba(255,255,255,0.5);
}
.search_wrap .form-control:focus {

}
.search_icon {
	border-radius: 22px;
	position: absolute;
	right: 2px;
	top: 3px;
	width:32px;
	height:32px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	color: #666;
}
.search_icon i{
	font-size: 18px;
	color:#076ce0;
}

/*banner, slider style*/
.banner_section {
	position: relative;
}
.banner_section,
.banner_section .carousel-item,
.banner_section .banner_content_wrap,
.banner_section .banner_content_wrap .carousel-item {
	/*height: 500px;*/
}
.carousel-item{
}
.carousel-item img {
	width: 100%;

}
.carousel-control-next,
.carousel-control-prev{
	background-color: rgba(0,0,0,0.5);
	font-size: 18px;
	height: 50px;
	border-radius: 30px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	transition: all 0.3s ease-in-out;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel-control-next:hover, .carousel-control-prev:hover{
	background-color: #054896;
	color: #fff;
}

.banner_section .carousel-caption{
	height:100px;
	right:0;
	bottom:0px;
	left:0;
	padding:50px 0 0 0;
	color:#ffffff;
	text-align:left;
	z-index:10;
}
.banner_section .carousel-caption h5{
	font-size:18px;
	text-align: center;
	color:#ffffff;
}
.banner_section .carousel-indicators{
	bottom:20px;
}
.banner_section .carousel-indicators li{
	border:1px solid #ffffff;
	background: transparent;
	width:10px;
	height:10px;
	border-radius: 15px;
	opacity: 1;
}
.banner_section .carousel-indicators li.active{
	background-color:#054896;
	border:1px solid #054896;
}
/*
news style
*/

.news-slide{
}
.news-slide .carousel-control-next,
.news-slide .carousel-control-prev{
	top: 40%;
}
.news-slide .carousel-inner{
	padding-bottom:60px;
}
.news-slide .carousel-item{
	position: relative;
}
.news-slide .carousel-indicators{
	bottom:-15px;
	z-index:100;
}
.news-slide .carousel-indicators li{
	background-color:rgba(0,0,0,0.3);
	width:20px;
}
.news-slide .carousel-indicators .active{
	background-color:#054896;
}
.news-slide .carousel-caption{
	height:60px;
	width:calc(100% - 40px);
	left:20px;
	bottom: -30px;
	z-index:100;
	background: #054896;
}

.news-slide .carousel-caption h5{
	padding:0 10px;
	font-size:20px;
	line-height: 20px;
	color:#ffffff;
	text-align: left;
}

/*--------------------------------------------------------------
# Exhibitions
--------------------------------------------------------------*/

.exhibition-one {
	padding-bottom: 120px;
}

.exhibition-one .row.high-gutter {
	margin-left: -53px;
	margin-right: -53px;
}

.exhibition-one .row.high-gutter>[class*="col-"] {
	padding-left: 53px;
	padding-right: 53px;
}

.exhibition-one__single {
	margin-bottom: 30px;
}

.exhibition-one__image {
	overflow: hidden;
	position: relative;
}

.exhibition-one__image::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -180%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.2);
	        transform: rotate(30deg) scale(1.2);
	background: -webkit-gradient(linear,
			left top, right top,
			color-stop(50%, rgba(255, 255, 255, 0)),
			to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 50%,
			rgba(255, 255, 255, 0.7) 100%);
}

.exhibition-one__single:hover .exhibition-one__image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

.exhibition-one__image>img {
	width: 100%;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

.exhibition-one__content {
	text-align: center;
}

.exhibition-one__content h3 {
	margin: 0;
	font-size: 24px;
	line-height: 36px;
	color: var(--thm-black);
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 15px;
	width: 65%;
	margin-left: auto;
	margin-right: auto;
}

.exhibition-one__content h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.exhibition-one__content h3 a:hover {
	color: var(--thm-base);
}

.exhibition-one__content p {
	margin: 0;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--thm-base);
}

/* exhibition two */

.exhibition-two {
	padding-bottom: 20px;
}

.exhibition-two__content h3 {
	margin: 0;
	padding-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 20px;
	color:#000000;
	text-align: center;
}

.exhibition-two__content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.exhibition-two__content h3 a:hover {
	color:#000000;
}

.exhibition-two__content span {
	font-size: 16px;
	color: var(--thm-base);
	text-transform: uppercase;
	display: block;
	margin-bottom: 15px;
}

.exhibition-two__content p {

	margin: 0;
	color: #848484;
	font-size: 14px;
	line-height: 28px;

}

.exhibition-two__link {
	color:#848484;
	font-size: 16px;
	font-weight: thin;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
}

.exhibition-two__link::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--thm-base);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transform: scale(0, 1);
	        transform: scale(0, 1);
	-webkit-transform-origin: left center;
	        transform-origin: left center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.exhibition-two__link:hover {
	color: var(--thm-base);
}

.exhibition-two__link:hover::before {
	-webkit-transform: scale(1, 1);
	        transform: scale(1, 1);
	-webkit-transform-origin: right center;
	        transform-origin: right center;
}


.exhibition-two__image {
	overflow: hidden;
	position: relative;
}

.exhibition-two__image::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -190%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.3);
	        transform: rotate(30deg) scale(1.3);
	background: -webkit-gradient(linear,
			left top, right top,
			color-stop(50%, rgba(255, 255, 255, 0)),
			to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 50%,
			rgba(255, 255, 255, 0.7) 100%);
}

.exhibition-two__single:hover .exhibition-two__image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

.exhibition-two__carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.exhibition-two__carousel.owl-theme .owl-nav {
	margin-top: 20px;
	margin-bottom:20px;
	color:#ffffff;
}

.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-] {
	width: 45px;
	height: 45px;
	border-radius: 30px;
	background:#c61000;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-transition: 500ms;
	transition: 500ms;
	position: relative;
	outline: none;
	margin: 0;
	padding: 0;
}

.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-]:hover {
	background-color: transparent;
	opacity: 50%;
}


.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-] span {
	color: rgba(0, 0, 0, 0);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}


.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: '\e90e';
	color: #ffffff;
	font-size: 17px;
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.exhibition-two__carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: '\e90f';
}




/*--------------------------------------------------------------
# Collections
--------------------------------------------------------------*/

.collection-one {
	padding-top: 150px;
	padding-bottom: 150px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.collection-one__top {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	        justify-content: space-between;
}

.collection-one__top .block-title h3 {
	color: #fff;
}

.collection-one__top .more-post__link {
	color: #fff;
}

.collection-one__carousel {
	width: 100%;
	max-width: 1745px;
	margin-left: auto;
	margin-right: -200px;
	margin-top: 90px;
}

@media (max-width: 1750px) {
	.collection-one__carousel {
		max-width: 1660px;
	}
}

@media (max-width: 1440px) {
	.collection-one__carousel {
		margin-right: -140px;
	}
}

@media (max-width: 1366px) {
	.collection-one__carousel {
		margin-right: -90px;
	}
}

.collection-one__single {
	padding-left: 190px;
	position: relative;
}

@media (max-width: 1440px) {
	.collection-one__single {
		padding-left: 120px;
	}
}

.collection-one__single>img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
	        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

.collection-one__single:hover>img {
	-webkit-clip-path: polygon(0 0%, 100% 10%, 100% 90%, 0 100%);
	        clip-path: polygon(0 0%, 100% 10%, 100% 90%, 0 100%);
}

.collection-one__content {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
}

.collection-one__content h3 {
	margin: 0;
	font-size: 26px;
	line-height: 36px;
	font-weight: bold;
	color: #fff;
	width: 50%;
}

@media (max-width: 1440px) {
	.collection-one__content h3 {
		width: 70%;
	}
}

.collection-one__content h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.collection-one__content h3 a:hover {
	color: var(--thm-base);
}

/* featured collection */

.featured-collection {
	padding-top: 150px;
	padding-bottom: 200px;
}

.featured-collection__left {
	padding-right: 50px;
}

.featured-collection__left .featured-collection__image {
	margin-bottom: 80px;
}

.featured-collection__left>p {
	margin: 0;
}

.featured-collection__btn {
	margin-top: 40px;
}

.featured-collection__btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.featured-collection__right {
	padding-left: 50px;
	padding-top: 100px;
}

.featured-collection__right>p {
	margin: 0;
	color: var(--thm-black);
	font-family: var(--heading-font);
	font-size: 24px;
	line-height: 44px;
	margin-bottom: 85px;
}

.featured-collection__right .block-title {
	margin-bottom: 50px;
}

.featured-collection__image>img {
	max-width: 100%;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

.featured-collection__image {
	overflow: hidden;
	position: relative;
}

.featured-collection__image::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -120%;
	left: -210%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.5);
	        transform: rotate(30deg) scale(1.5);
	background: -webkit-gradient(linear,
			left top, right top,
			color-stop(50%, rgba(255, 255, 255, 0)),
			to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 50%,
			rgba(255, 255, 255, 0.7) 100%);
}

.featured-collection__image:hover::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

/* collection two */

.collection-two {
	padding-bottom: 30px;
	/*background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(245, 247, 250, .8)));*/
	/*background-image: linear-gradient(180deg, transparent 0%, rgba(245, 247, 250, .8) 100%);*/
	padding-top: 0px;
	margin-top:80px;
}

.collection-two .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

.collection-two__single {
	position: relative;
	padding:0 ;
	margin-bottom:70px;
}

.collection-two__content {
	padding-top: 20px;
	padding-bottom: 20px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(50%);
	        transform: translateX(-50%) translateY(50%);
	width: calc(100% - 30px);
	background-color: #fff;
	text-align: center;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
	-webkit-transition: 500ms;
	transition: 500ms;
	z-index: 11;
}
.collection-two__single:hover .collection-two__content,
.collection-two__content:hover {
	background-color: var(--thm-black);
	color:#ffffff;
}

.collection-two__content h3 {
	color: #000000;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
	font-weight: bold;
}
.collection-two__single:hover .collection-two__content h3,
.collection-two__content:hover h3 {
	color: #fff;
}



.collection-two__content p {
	margin: 10px 0;
	text-transform: uppercase;
	font-size: 14px;
	color: #333333;
	line-height: 20px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.collection-two__single:hover .collection-two__content p,
.collection-two__content:hover p {
	color: #fff;
}

.collection-two__carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.collection-two__carousel.owl-theme .owl-nav {
	margin-top: 160px;
}

.collection-two__carousel.owl-theme .owl-nav [class*=owl-] {
	width: 60px;
	height: 45px;
	border: 1px solid var(--thm-base);
	opacity: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-transition: 500ms;
	transition: 500ms;
	position: relative;
	outline: none;
	margin: 0;
	padding: 0;
}

.collection-two__carousel.owl-theme .owl-nav [class*=owl-]:hover {
	border-color: var(--thm-base);
	background-color: transparent;
	opacity: 100%;
}


.collection-two__carousel.owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

.collection-two__carousel.owl-theme .owl-nav [class*=owl-] span {
	color: rgba(0, 0, 0, 0);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}


.collection-two__carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: '\e90e';
	color: var(--thm-base);
	font-size: 17px;
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.collection-two__carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: '\e90f';
}


.collection-two__image {
	overflow: hidden;
	position: relative;
}

.collection-two__image::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -180%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.2);
	        transform: rotate(30deg) scale(1.2);
	background: -webkit-gradient(linear,
			left top, right top,
			color-stop(50%, rgba(255, 255, 255, 0)),
			to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 50%,
			rgba(255, 255, 255, 0.7) 100%);
}

.collection-two__single:hover .collection-two__image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

.collection-two__image>img {
	width: 100%;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

/* collection two full width page */

.collection-two__collection-full-page {
	padding-top: 0;
	padding-bottom: 150px;
}

/* collection two home three */

.collection-two__home-three {
	padding-top: 0;
	padding-bottom: 150px;
	position: relative;
	z-index: 10;
	background-image: none;
}

.collection-two__scupture {
	position: absolute;
	bottom: -45px;
	right: 2%;
	z-index: 10;
}

.collection-two__home-three .collection-two__content h3 {
	font-size: 24px;
}

.collection-two__home-three .collection-two__content {
	width: calc(100% - 40px);
	box-shadow: none;
}

.collection-two__home-three .collection-two__image img {
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

/* collection three */

.collection-three {
	padding-top: 150px;
	padding-bottom: 80px;
}

.collection-three__block>p {
	font-size: 16px;
	line-height: 28px;
	color: #848484;
	margin: 0;
	margin-top: 30px;
	margin-bottom: 35px;
}

.collection-three__block-btn {
	border: 2px solid #e5e5e5;
	background-color: #fff;
	color: var(--thm-black);
}

.collection-three__block-btn:hover {
	color: #fff;
	background-color: var(--thm-black);
	border-color: var(--thm-black);
}

.collection-three .collection-two__single {
	margin-bottom: 50px;
}

.collection-three .masonary-layout {
	margin-left: -20px;
	margin-right: -20px;
}

.collection-three .masonary-item {
	padding-left: 20px;
	padding-right: 20px;
}

.collection-three .collection-two__content {
	position: relative;
	width: 100%;
	padding: 0;
	text-align: left;
	background-color: #fff !important;
	box-shadow: none;
	bottom: auto;
	left: auto;
	-webkit-transform: translateX(0) translateY(0);
	        transform: translateX(0) translateY(0);
	padding-top: 20px;
}

.collection-three .collection-two__content h3 {
	color: var(--thm-black) !important;
}

.collection-three .collection-two__single:hover .collection-two__content h3 a,
.collection-three .collection-two__content h3 a:hover {
	color: var(--thm-base) !important;
}

.collection-three .collection-two__content h3 br {
	display: none;
}

.collection-three .collection-two__content p {
	color: var(--thm-base) !important;
}


/* collection grid */

.collection-grid {
	padding-bottom: 100px;
}

.collection-grid .row.high-gutter {
	margin-left: -20px;
	margin-right: -20px;
}

.collection-grid .row.high-gutter>[class*=col-] {
	padding-left: 20px;
	padding-right: 20px;
}

.collection-grid__single {
	margin-bottom: 50px;
}

.collection-grid__image {
	position: relative;
	background-color: var(--thm-black);
	overflow: hidden;
}

.collection-grid__image>img {
	width: 100%;
	-webkit-transition: opacity 500ms, -webkit-transform 500ms;
	transition: opacity 500ms, -webkit-transform 500ms;
	transition: transform 500ms, opacity 500ms;
	transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
	-webkit-transform: scale(1.0);
	        transform: scale(1.0);
}

.collection-grid__single:hover .collection-grid__image>img {
	opacity: 0.5;
	-webkit-transform: scale(1.05);
	        transform: scale(1.05);
}

.collection-grid__image>a {
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	        align-items: center;
	text-align: center;
	position: absolute;
	top: calc(50% - 32.5px);
	left: calc(50% - 32.5px);
	background-color: #fff;
	color: var(--thm-black);
	line-height: 65px;
	font-size: 30px;
	font-weight: 600px;
	color: var(--thm-black);
	-webkit-transform: translateY(33px) rotate(30deg);
	        transform: translateY(33px) rotate(30deg);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 500ms;
	transition: 500ms;
	-webkit-transition-delay: 0ms;
	        transition-delay: 0ms;
}

.collection-grid__single:hover .collection-grid__image>a {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0) rotate(0);
	        transform: translateY(0) rotate(0);
	-webkit-transition-delay: 500ms;
	        transition-delay: 500ms;
}

.collection-grid__content h3 {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	color: var(--thm-black);
	margin-top: 30px;
	margin-bottom: 20px;
}

.collection-grid__content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.collection-grid__content h3 a:hover {
	color: var(--thm-base);
}

.collection-grid__content p {
	margin: 0;
	color: var(--thm-base);
	font-size: 16px;
	line-height: 1em;
	text-transform: uppercase;
}

/* collection filter */

.collection-filter {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	        align-items: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.collection-filter li {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	margin-bottom: 10px;
}

.collection-filter li+li {
	margin-left: 10px;
}

.collection-filter li span {
	display: block;
	border: 1px solid #e5e5e5;
	font-size: 16px;
	color: var(--thm-black);
	padding: 10px 26px;
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.collection-filter li.active span,
.collection-filter li:hover span {
	background-color: var(--thm-base);
	border-color: var(--thm-base);
	color: #fff;
}

/* collection masonary */

.collection-masonary {
	padding-top: 150px;
}

.collection-masonary .collection-grid__top {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	        align-items: flex-end;
	-webkit-box-pack: justify;
	        justify-content: space-between;
	margin-bottom: 60px;
}

@media(max-width: 1199px) {
	.collection-masonary .collection-grid__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		        flex-direction: column;
		-webkit-box-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: start;
		        align-items: flex-start;
	}
}

.collection-masonary .collection-grid__top .block-title {
	margin-bottom: 0;
}

@media(max-width: 1199px) {
	.collection-masonary .collection-grid__top .block-title {
		margin-bottom: 40px;
	}
}

.collection-masonary .collection-filter {
	margin-bottom: 0;
}


/*-------------------------------------------------------------- 
# Main Footer 
--------------------------------------------------------------*/
.site-footer{
	background: #076ce0;
}
.site-footer__upper {
	padding:20px 0 20px 0;
}

.footer-widget {

}
.footer-widget__title {
	margin: 0;
	/*color:#3f332e;*/
	color: rgba(255,255,255,1);
	font-size: 24px;
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 30px;
}
.footer-widget h5{
	font-weight: bold;
	font-size: 16px;
	color:#ffffff;
}
.footer-widget p {
	 margin: 0;
	 font-size: 14px;
	 line-height: 24px;
	 color: rgba(255,255,255,0.8);
 }


.footer-widget p a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget p a:hover {
	color: var(--thm-black);
}



.footer-widget__links-list li+li {
	margin-top: 5px;
}

.footer-widget__links-list li a {
	color: rgba(255,255,255,0.8);
	font-size: 16px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget__links-list li:hover::before {
	color: var(--thm-black);
}

.footer-widget__links-list li:hover a {
	color: var(--thm-black);
}



.site-footer__bottom {
	font-size: 14px;
}

.site-footer__bottom .inner-container {
	border-top: 1px solid rgba(255,255,255,0.1);
	text-align: left;

}

.site-footer__bottom-logo {
	-webkit-transform: translateY(-30px);
	        transform: translateY(-30px);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255,255,255,0.4);
}
.site-footer__bottom p a{
	color: rgba(255,255,255,0.8);
}
.site-footer__bottom p a:hover {
	color:  var(--thm-base);
}
.site-footer__bottom-links {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
}

.site-footer__bottom-links a {
	color: rgba(255,255,255,0.8);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.site-footer__bottom-links a:hover {
	color:  var(--thm-base);
}

.site-footer__bottom-links a+a {
	margin-left: 5px;
}


/*-------------------------------------------------------------- 
 # SideMenu 
 --------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: right center;
	-webkit-transition: -webkit-transform 0.7s ease;
	transition: -webkit-transform 0.7s ease;
	transition: transform 0.7s ease;
	transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.side-menu__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.side-menu__block-overlay {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.7;
}

.side-menu__block-inner {
	position: relative;
	width: 300px;
	margin-left: auto;
	height: 100vh;
	background-color: #076ce0;
	z-index: 999999;
	overflow-y: auto;
	padding: 40px 0;
	padding-top: 60px;
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-content: space-between;
}

.side-menu__block-inner .mCustomScrollBox {
	width: 100%;
}

.side-menu__close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 9999999;
	font-size: 18px;
	color: #fff;
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__close-btn:hover {
	color: var(--thm-base);
}

.mobile-nav__container {
	margin: 40px 0;
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
	border-bottom: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav__container li.dropdown ul {
	display: none;
}

.mobile-nav__container li.dropdown {
	position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
	border: none;
	outline: none;
	width: 35px;
	height: 35px;
	background-color:transparent;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;
	color: #fff;
	position: absolute;
	top: 10px;
	right: 0;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease,
		background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease,
		background-color 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	color: #fff;
}

.mobile-nav__container li+li {
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.mobile-nav__container li>ul {
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.mobile-nav__container li a {
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	display: block;
	font-family: var(--thm-font);
	padding: 10px 0;
	padding-left: 30px;
	padding-right: 30px;
	border-left: 3px solid transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
}

.mobile-nav__container li a:hover {
	background-color: rgba(0,0,0,0.2);
	color: #ffffff;
}

.mobile-nav__container li.current-menu-item>a,
.mobile-nav__container li.current>a {
	border-color: var(--thm-primary);
	background-color: rgba(0,0,0,0.2);
}

.mobile-nav__container .navigation-box__right {
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.side-menu__logo {
	padding-left: 30px;
}




/*-------------------------------------------------------------- 
 # Search Popup 
 --------------------------------------------------------------*/

.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	-webkit-transition: -webkit-transform 0.7s ease;
	transition: -webkit-transform 0.7s ease;
	transition: transform 0.7s ease;
	transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.search-popup.active {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.search-popup__overlay {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.7;
	cursor: none;
}

.search-popup__inner {
	position: absolute;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.search-popup__form {
	position: relative;
	z-index: 9991;
	width: 100%;
	padding: 15px;
	max-width: 600px;
	position: relative;
}

.search-popup__form input {
	background-color: transparent;
	border: none;
	outline: none;
	width: 100%;
	height: 60px;
	color: var(--thm-black);
	font-size: 18px;
	background-color: white;
	padding-left: 30px;
}

.search-popup__form ::-webkit-input-placeholder {
	opacity: 1;
	color: var(--thm-black);
}

.search-popup__form ::-moz-placeholder {
	opacity: 1;
	color: var(--thm-black);
}

.search-popup__form :-ms-input-placeholder {
	opacity: 1;
	color: var(--thm-black);
}

.search-popup__form ::-ms-input-placeholder {
	opacity: 1;
	color: var(--thm-black);
}

.search-popup__form ::placeholder {
	opacity: 1;
	color: var(--thm-black);
}

.search-popup__form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
	/* IE 10+ */
	color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
	/* Firefox 18- */
	color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
	border: none;
	outline: none;
	width: 60px;
	height: 60px;
	color: #fff;
	background-color: var(--thm-black);
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.search-popup__form button[type="submit"]:hover {
	background-color: var(--thm-base);
	color: #fff;
}





/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
	background-color: #f5f7fa;
}

.testimonials-one .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

.testimonials-one .block-title {
	margin-bottom: 30px;
}

.testimonials-one__block {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 480px;
}

.testimonials-one__carousel .owl-item img {
	width: auto;
}

.testimonials-one .my-auto {
	width: 100%;
	display: block;
}

.testimonials-one__author {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
}

.testimonials-one__author img {
	border-radius: 50%;
}

.testimonials-one__author h4 {
	margin: 0;
	font-size: 16px;
	color: var(--thm-black);
	font-family: var(--thm-font);
	text-transform: uppercase;
	margin-left: 15px;
}

.testimonials-one__single>p {
	margin: 0;
	font-family: var(--heading-font);
	font-size: 18px;
	color: #000000;
	line-height: 32px;

	margin-top: 30px;
	margin-bottom: 15px;
}

.testimonials-one__carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	        align-items: flex-start;
	-webkit-box-pack: start;
	        justify-content: flex-start;
}

.testimonials-one__carousel.owl-theme .owl-nav {
	margin-top: 45px;
}

.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-] {
	width: 60px;
	height: 45px;
	border: 1px solid var(--thm-base);
	opacity: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-transition: 500ms;
	transition: 500ms;
	position: relative;
	outline: none;
	margin: 0;
	padding: 0;
}

.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-]:hover {
	border-color: var(--thm-base);
	background-color: transparent;
	opacity: 100%;
}


.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-] span {
	color: rgba(0, 0, 0, 0);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}


.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: '\e90e';
	color: var(--thm-base);
	font-size: 17px;
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.testimonials-one__carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: '\e90f';
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: 50%;
	background-size: cover;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}


.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.page-header .container {
	position: relative;
	text-align: center;
}

.page-header h2 {
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	margin: 0;
}




/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
	width:90%;
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
	padding-bottom: 20px;
	min-height: 400px;
}

/*side-nav*/
.side-nav{
	padding:20px;
}
.side-nav .nav-item a{
	display: block;
	width:100%;
	color:#333333;
}
.side-nav .nav-item{
	background:#ffffff;
	width:100%;
	padding: 5px 0 5px 20px;
	margin:5px 0;
	border:1px solid #ebebeb;
	position: relative;
}

.side-nav .nav-item.active {
	width:100%;
	background:#076ce0;
	color:#ffffff;

}
.side-nav .nav-item:after,
.side-nav .nav-item.active:after,
.side-nav .nav-item:hover::after{
	content: "\e929";
	font-family: 'feather';
	position: absolute;
	right: 15px;
	top:12px;
}
.side-nav .nav-item:hover{
	width:100%;
	position: relative;
	background:#076ce0;
	color:#ffffff;
}
.side-nav .nav-item:hover .nav-link,
.side-nav .nav-item.active .nav-link{
	color:#ffffff;
}

.sidebar-title {
	background: #076ce0;

}
.sidebar-title h3{
	margin:0;
	font-weight: bold;
	font-size: 28px;
	padding:20px 0 20px 0;
	text-align: center;
	color:#ffffff;
}


.sidebar-title2{
	margin-top:20px;
	border-radius: 0;
	padding:15px 20px;
	font-size: 24px;
	color:#ffffff;
	background:#076ce0;
}
.sidebar-title2 h3{
	font-size:20px;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-title2 h3:after{
	content: "\e927";
	font-family: 'feather';
	position: absolute;
	right: 5px;
	top:0px;
}


/*
block-title styles
*/

.block-title {
	position: relative;
	padding:30px 0;
}

.block-title-title {
	position: relative;
	color: #054896;
	font-weight:bold;
	font-size: 32px;
	padding-left:50px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: left;
	background-size: 36px;
}
.block-title-title.white{
	color:white;
}
.block-title-title .title-sub{
	color:#054896;
	font-size: 16px;
	font-weight: normal;
}
.block-title-title.title-icon1{
	background-image:url(../images/modular.png) ;
}
.block-title-title.title-icon2{
	background-image:url(../images/modular.png) ;
}
.block-title-title.title-icon3{
	background-image:url(../images/modular.png) ;
}
.block-title-title.title-icon4{
	background-image:url(../images/modular.png) ;
}
.block-title-title.title-icon5{
	background-image:url(../images/modular.png) ;
}
.block-title-title .title-icon6{
	background-image:url(../images/modular.png) ;
}
.block-title-title.title-icon7{
	background-image:url(../images/modular.png) ;
}
.more {
	margin:0 10px 0 0;
	display: block;
	width:53px;
	font-size: 14px;
	color:#076ce0;
	/*background: url(../images/more.png) right no-repeat;*/
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.more:hover {
	color:#054896;
	margin:0 0 0 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.block-title .more {
	position: absolute;
	top:28px;
	right:0;
	display: block;
}
/*
list-text
*/
.list-text{
	padding:0;
	margin:0;
}
.list-text li{
	position: relative;
	padding:10px;
	line-height: 24px;
	border-bottom:1px solid #dedede;
	list-style: none;
	cursor: pointer;
border-radius: 2px;
}

.list-text li:hover{
	background:rgba(31, 135, 232, 1);
	color:#ffffff;
}

.list-text li:hover::before {
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.list-text li a{
	display: block;
	color:#333333;
padding-left:5px
}

.list-text li .title{
	position: relative;
}

.list-text li .time{
	 font-size: 13px;
	 color:#888888;
 }
.list-text .time-left{
	color:#999999;
	padding-right:15px;
	padding-top:6px;
	line-height: 20px;
	font-size: 14px;

	width:100px;
	text-align: center;
	position: relative;
	z-index: 3;
}
.list-text .time-left .day{
	font-size: 36px;
}
.list-text.sub li{
	position: relative;
	padding:18px 5px;
	line-height: 30px;
	border-bottom:1px dashed #d7d7d7;
	list-style: none;
	cursor: pointer;
}
.list-text.sub .title{
	color:#333333;
	font-size: 20px;
	font-weight: bold;
	width:calc(100% - 120px);
	position: relative;
	padding-left:15px;
}
.list-text.sub .title:after{
	content: "";
	position: absolute;
	width:6px;
	height:6px;
	border-radius: 6px;
	background: #ffffff;
	left:0;
	top:14px;
}
.list-text.sub .title:hover{
	color:#ffffff;
}
.list-text.sub .time{
	width:100px;
	position: absolute;
	right:5px;
	top:18px;
	font-size: 16px!important;
	text-align: right;
}

.list-media{
	padding:0;
}
.list-media a{
	color:#000000;
}
.list-media .img{
	width:240px;
	margin-right:20px;
}
.list-media .title{
	font-weight: bold;
	font-size: 18px;
	line-height: 28px;
}
.list-media .summary{
	font-size:14px;
	line-height:22px;
	color:#999999;
}
.list-media .time{
	font-size:13px;
	color:#666666;
}
.list-media .time i{
	margin-right:5px;
	color:#c61000
}
.list-media li{
	list-style: none;
	border-bottom:1px dashed #d7d7d7;
	padding:12px 20px;
}
.list-media li:last-child{
	border-bottom:1px dashed transparent;
	padding-bottom:0;
}
.list-media li:hover .title{
	color:#076ce0;
}
.list-media .time-left{
	color:#999999;
	padding-right:15px;
	padding-top:6px;
	line-height: 20px;
	font-size: 14px;
	width:100px;
	text-align: center;
	position: relative;
	z-index: 3;
}
.list-media .time-left .day{
	font-size: 36px;
}

.list-media.sub .title{
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
}

.home li{
	position: relative;
	padding:10px 0;
	line-height: 30px;
	border-bottom:1px dashed #d7d7d7;
	list-style: none;
	cursor: pointer;
}
.home .title{
	color:#333333;
	font-size: 20px;
	font-weight: bold;
	width:calc(100% - 100px);
}
.home .title:hover{
	color:#ffffff;
}
.home .title2:hover{
	color:#ffffff;
}
.home .time{
	width:80px;
	position: absolute;
	right:0;
	top:10px;
}


/*.news-list*/
.news-list ul li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	padding: 16px 0;
	cursor: pointer;
	border-bottom:1px dashed #d7d7d7;
}
.news-list ul li .title{
	color:#333333;
	font-weight: bold;
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}
.news-list ul li:hover .title{

}

.news-list  ul li.cur span,
.news-list  ul li.cur .title{
	position: relative;
	z-index: 3;
	color: #ffffff;
}
.news-list  ul li .media-body{
	padding:0 15px;
}
.news-list  ul li.cur .media-body{
	position: relative;
	z-index: 3;
	border-left:3px solid #ffffff;
}
.news-list  ul li .desc {
	font-size: 14px;
	color:#666666;
	line-height: 1.5em;
	padding:0;
	margin:0;
}
.news-list ul li.cur .desc {
	position: relative;
	z-index: 3;
	color: #fff;
	opacity: .7;
}
.news-list  ul li:after {
	background:#12a6d6 no-repeat center;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	z-index: 0;
}
.news-list  ul li.cur:after {
	width: 100%;
	transition: .5s
}
.news-list .media-time{
	text-align: center;
	line-height: 24px;
	font-size: 13px;
	width:80px;
	position: relative;
	z-index: 3;
	font-weight: bold;
}

.news-list .media-time .day{
	font-size: 20px;
}
.news-list .media-time .year{
	font-size: 14px;
}
.news-list ul li:hover .title,
.news-list ul li:hover .media-time {
	color:#ffffff;

}
/*timeline*/
.timeline-track {
	margin-left: 18px;
	border-left: 1px solid #e5e5e5;
	padding-top:20px;
}
.timeline-track ul{
	padding:0;
}
.timeline-track ul>li {
	list-style: none;
	margin-left: -6px;
}
.timeline-track .levellist li {
	padding-top:10px;
	padding-bottom:10px;
	line-height: 20px;
	padding-left: 20px;
	background: url(../images/time-line-dot2.png) 0 top no-repeat;
	color: grey;

}
.timeline-track .levellist li div{
	margin-top:-15px;
}
.timeline-track .time{
	display: block;
	width:80px;
	height:20px;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color:#666666;
}
.timeline-track p{
	color:#333333;
	font-size: 15px;
	line-height: 20px;
	border-bottom:1px solid #ebebeb;
	padding-bottom:20px;
}
.card-box {
	padding-bottom: 20px;
}
.card-box-content.shadow {
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
	padding:10px 20px;
	background: #ffffff;
}
.card-box-content {

}

.card-box-content h3 {
	margin: 0;
	padding-top: 10px;
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
	color:#000000;
}

.card-box-content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.card-box-content h3 a:hover {
	color:#000000;
}

.card-box-content span {
	font-size: 16px;
	color: var(--thm-base);
	text-transform: uppercase;
	display: block;
	margin-bottom: 15px;
}

.card-box-content p {
	margin: 0;
	color: #848484;
	font-size: 14px;
	line-height: 28px;
}

.card-box-link {
	color:#848484;
	font-size: 16px;
	font-weight: thin;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
}

.card-box-link::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--thm-base);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.card-box-link:hover {
	color: var(--thm-base);
}

.card-box-link:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: right center;
	transform-origin: right center;
}


.card-box-image {
	overflow: hidden;
	position: relative;
}
.card-box-image img{
	width:100%;
}
.card-box-image::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -190%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.3);
	transform: rotate(30deg) scale(1.3);
	background: -webkit-gradient(linear,
	left top, right top,
	color-stop(50%, rgba(255, 255, 255, 0)),
	to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
	rgba(255, 255, 255, 0) 50%,
	rgba(255, 255, 255, 0.7) 100%);
}
.card-box-single{
	position: relative;
}
.card-box-single:hover .card-box-image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}


.home-tab .nav-item{
	margin-right:30px;
	border-radius: 0;
	cursor:pointer;
	position: relative;
	padding:0;

}

.home-tab .nav-link{
	border-radius: 0;
	color:#888888;
	height:40px;
	background: transparent;
	font-size: 20px;
	padding-left:0!important;
	padding-right:30px!important;
}
.home-tab .nav-link:hover{
	color:#0160b0;
}
.home-tab .nav-link:hover:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width:80px;
	height:2px;
	background:#0160b0;
}
.home-tab .nav-link.active{
	color:#0160b0;
	font-weight: bold;
	background: transparent;
}
.home-tab .nav-link.active:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width:82px;
	height:2px;
	background:#0160b0;
}

.headlines{
	height:120px;
	padding:15px;
	border-bottom:1px dashed #c9d7e5;
}
.headlines:hover{
	background: #f7fbff;
}
.headlines h4{
	color:#333333;
	font-size: 24px;
	font-weight: bold;
}
.headlines p{
	color:#666666;
	font-size: 13px;
	line-height: 20px;
}

.sub-container{
	position: relative;
	z-index: 10;
}
.sub-nav .nav-item{
	color:#666666;
}

.sub-nav .nav-item h2{
	padding:10px;
	font-size: 20px;
	position: relative;
}
.sub-nav .nav-item+.nav-item h2::before{
	content: "";
	width: 1px;
	height: 20px;
	background-color:#ebebeb;
	position: absolute;
	top: 13px;
	left: -20px;
}

.sub-nav .nav-item:hover h2,
.sub-nav .nav-item.active h2 {
	font-weight:bold;
	color:#333333;
	font-size:24px;
}

.right-box{
	padding:20px;
}

.article-box{
	padding:30px;
	color:#000000;
}
.article .title{
	margin-bottom:30px;
	text-align: center;
}
.article .title h2{
	font-size: 24px;
	font-weight: bold;
	color:#000000;
	margin-bottom:25px;
}
.article .title p{
	font-size: 14px;
}
.article .publish-info{
	border-bottom:1px dashed #d7d7d7;
	padding:8px;
	font-size: 14px;
	color:#666666;
}
.article .more-article{
	padding:20px 10px 10px;
	border-top:1px dashed #d7d7d7;
}
.article .more-article a{
	font-size: 16px;
	color:#333333;
}
.article .more-article a:hover{
	text-decoration: underline;
}
/*image_gallery_item*/
.image_gallery_item {
	position: relative;
}
/*gallary_hover_box*/
.gallary_hover_box {
	background-color: rgba(0,0,0,0.80);
	bottom: 0px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	position: absolute;
	top: 0px;
	opacity: 0;
	visibility: hidden;
	right: 0px;
	left: 0px;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
.gallary_hover_box i {
	color: #fff;
	font-size: 24px;
}
.image_gallery_item:hover .gallary_hover_box {
	opacity: 1;
	visibility: visible;
}
.gallery_img img {
	transition: all 0.5s ease;
}
.gallery_hover_style1 .image_gallery_item,
.gallery_hover_style2 .image_gallery_item {
	overflow: hidden;
}
.gallery_hover_style1 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.gallery_hover_style2 .gallary_hover_box {
	top: 15px;
	left: 15px;
	bottom: 15px;
	right: 15px;
}
.gallery_hover_style2 .image_gallery_item:hover .gallery_img img {
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	-o-filter: blur(5px);
	filter: blur(5px);
}
.gallery_hover_style3 .gallary_hover_box::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0px;
	bottom: 0px;
	border: 2px solid rgba(255,255,255,0.5);
	margin: 10px;
}
.section1{
	padding:0 0 30px 0;
/*background-image: url("../images/zcsybg.jpg");
background-attachment: inherit;*/
}
.section2{
	padding:0 0 20px 0;
	/*background-image: url("../images/bg1.jpg");*/
background-image: url("../images/zcsybg.jpg");
	background-attachment: inherit;
}
.section3 h3{
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
}
.section-sub-container{
	background-image: url(../images/bg-sub1.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
}
ul.footer-a a {
    color: #ffffff;
}

