﻿@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/

body {
	font-size: 16px;
	line-height: 28px;
}

[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;
}
ul,li,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1300px;
	}
}

.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);
}

/* bootstrap select */
.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
	background-color: inherit !important;
	box-shadow: none !important;
	outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
	box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
	outline: none !important;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	z-index: 991;
}

.bootstrap-select .dropdown-menu>li+li>a {
	border-top: 1px solid #f4f4f4;
}

.bootstrap-select .dropdown-menu>li:first-child>a {
	padding-top: 10px;
}

.bootstrap-select .dropdown-menu>li:last-child>a {
	padding-bottom: 10px;
}

.bootstrap-select .dropdown-menu>li.selected>a {
	background: var(--thm-black);
	color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
	font-size: 16px;
	font-weight: 500;
	padding: 9px 20px;
	color: var(--thm-black);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
	background: var(--thm-black);
	color: #fff;
	cursor: pointer;
}

.scroll-to-top {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #0160b0;
	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 #0160b0;
}

@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);
}

.post-pagination {
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.post-pagination a {
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 700;
	border-style: solid;
	border-width: 1px;
	border-color: #e3e9ec;
	padding-left: 18.5px;
	padding-right: 18.5px;
	padding-top: 8px;
	padding-bottom: 8px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.post-pagination a.active,
.post-pagination a:hover {
	color: #fff;
	background-color: var(--thm-black);
	border-color: var(--thm-black);
}

.post-pagination a+a {
	margin-left: 10px;
}

.post-pagination a.active {
	cursor: auto;
}

.post-pagination__prev,
.post-pagination__next {
	border: none !important;
	background-color: transparent !important;
	text-decoration: underline;
	color: var(--thm-black) !important;
	text-transform: uppercase;
	font-size: 14px !important;
}

/* datepicker */
.datepicker-dropdown {
	min-width: 300px;
}

.datepicker-dropdown table {
	width: 100%;
}

.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover:active {
	background-color: var(--thm-black);
	background-image: none;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
	background-color: var(--thm-base);
	background-image: none;
}

/* 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: 0;
	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%;
}
.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%;
}
.rectangle4-3{
	aspect-ratio: '4:3';
}
.rectangle4-3:before {
	padding-top: 75%;
}
.rectangle3-4{
	aspect-ratio: '3:4';
}
.rectangle3-4:before {
	padding-top: 120%;
}

/*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;
}

/*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;
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.25);
}
.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;
}


.thumbnail .ripple{
	position: absolute;
	top:calc(50% - 25px);
	left:calc(50% - 25px);
}
.thumbnail a:hover img{
	filter:alpha(opacity=80);
	-moz-opacity:80;
	opacity:80;
}


/*
block-title styles
*/

.block-title {
	position: relative;
}
.block-title.home {
	padding:40px 0;
}

.home  .block-title-title {
	padding-right:15px;
	border-right: 3px solid #085faf;
}
.home  .block-title-title p{
	font-size: 18px;
	font-weight: 100;
	color:#000000;
	padding:0;
	margin:0;
}
.home  .block-title-title h3{
	margin:0;
	font-size: 30px;
	color:#000000;

}

.more {
	margin:0 auto;
	display: block;
	color:#0160b0;
	font-size: 14px;
}
.block-title .more {
	position:relative;
	padding-top:40px;
	padding-left:15px;
}

.breadcrumb{
	background-color:transparent;
	font-size: 14px;
	-ms-flex-pack:end!important;justify-content:flex-end!important
}


.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}
/*-------------------------------------------------------------- 
# 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;
}


/*-------------------------------------------------------------- 
# 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;
	color:#ffffff;
}

.main-nav-one .logo-box {
	padding:20px 0;
}
.main-nav-one .logo-box img{
	width:90%;
}
.main-nav-one .main-nav__main-navigation {
	margin-left: auto;
}

.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 {
	padding: 15px 0 15px 0;
	white-space:nowrap;
}

.main-nav-one .main-nav__navigation-box>li+li {
	margin-left: 20px;
}

.main-nav-one .main-nav__navigation-box>li>a {
	font-size: 17px;
	color: var(--thm-black);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.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;
	width: 180px;
	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: 9.5px;
	padding-bottom: 9.5px;
	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: #085faf;
}

/* 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:#0160b0;
	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: 12px;
	padding-bottom: 12px;
}

.stricked-menu .main-nav__main-navigation .main-nav__navigation-box>li {
	padding: 20px 0;
}

.stricked-menu .main-nav__right {
	padding-top: 20px;
	padding-bottom: 20px;
}



/* home three */
.main-nav-one__home-three {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;;
}

.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;
}

/*-------------------------------------------------------------- 
# Banner
--------------------------------------------------------------*/

.banner-section {
	position: relative;
}

.banner-carousel {
	position: relative;
}

.banner-carousel .slide-item {
	position: relative;
	display: block;
	background-color: #000000;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height:640px;
	overflow: hidden;
}

.banner-carousel .slide-item .curved-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
	height: 100%;
}

.banner-carousel .slide-item .curved-layer:before {
	content: "";
	position: absolute;
	right: 0;
	top: -80%;
	width: 120%;
	height: 200%;
	opacity: 0.85;
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transform: rotate(20deg) scaleX(0);
	transform: rotate(20deg) scaleX(0);
}

.banner-carousel .active .slide-item .curved-layer:before {
	-webkit-transform: rotate(20deg) scaleX(1);
	transform: rotate(20deg) scaleX(1);
	-webkit-transition: all 700ms linear;
	transition: all 700ms linear;
}

.banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
}
/*
.banner-carousel .active .slide-item .image-layer {
	-webkit-animation-name: slideBgImage;
	        animation-name: slideBgImage;
	-webkit-animation-duration: 7000ms;
	        animation-duration: 7000ms;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}
*/
.banner-carousel .slide-item:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #000000;
	opacity: 0;
	content: "";
	z-index: 1;
}

.banner-carousel .content-box {
	position: relative;
	margin: 0 auto;
	padding: 0 0px;
	z-index: 5;
}

.banner-carousel .content-box:before {
	position: absolute;
	content: "";
	left: -220px;
	top: -120px;
	width: 650px;
	height: 650px;
	border-radius: 50%;
}

.banner-carousel .content-box h3 {
	font-family: var(--thm-font);
	display: block;
	font-size: 24px;
	line-height: 1.15em;
	color: #ffffff;
	font-weight: 700;
	opacity: 0;
	margin-bottom: 35px;
	letter-spacing: 0;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	text-transform: capitalize;
}

.banner-carousel .active .content-box h3 {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transition-delay: 700ms;
	transition-delay: 700ms;
}

.banner-carousel .content-box h2 {
	display: block;
	font-size: 60px;
	line-height: 1.15em;
	color: #ffffff;
	font-weight: 700;
	opacity: 0;
	margin-bottom: 30px;
	position: relative;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	text-transform: capitalize;
}

.banner-carousel .content-box h2 span {
	font-weight: 300;
}

.banner-carousel .active .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

.banner-carousel .content-box .text {
	display: block;
	font-size: 20px;
	line-height: 1.6em;
	color: #ffffff;
	font-weight: 400;
	opacity: 0;
	margin: 0 auto;
	margin-bottom: 35px;
	-webkit-transform: translateY(80px);
	transform: translateY(80px);
}

.style-three .banner-carousel .content-box .text {
	text-align: left;
	max-width: 600px;
	margin: 0 0 40px;
}

.banner-carousel .active .content-box .text {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 700ms ease;
	transition: all 700ms ease;
	-webkit-transition-delay: 700ms;
	transition-delay: 700ms;
}

.banner-carousel .content-box .btn-box {
	position: relative;
	opacity: 0;
	z-index: 5;
	-webkit-transform: translateY(80px);
	transform: translateY(80px);
	margin-top: 70px;
}

.banner-carousel .active .content-box .btn-box {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 700ms ease;
	transition: all 700ms ease;
	-webkit-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-carousel .content-box .btn-box .thm-btn {
	margin-right: 20px;
	padding: 13.5px 40.5px;
	background-color: #fff;
	color: var(--thm-black);
}

.banner-carousel .content-box .btn-box .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.banner-carousel .content-box .btn-box .thm-btn:last-child {
	margin: 0;
}

.banner-section .owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
}

.banner-section .owl-theme .owl-nav .owl-prev {
	position: absolute;
	left: 50px;
	top: 0;
	background: rgba(255, 255, 255, 0.15);
	height: 56px;
	width: 56px;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	color: rgba(0, 0, 0, 0);
	line-height: 56px;
	font-size: 0px;
	opacity: 1;
	margin-top: -30px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-section .owl-theme .owl-nav .owl-prev:after {
	font-family: "feather";
	content: "\e928";
	font-weight: 900;
	position: absolute;
	top: 0;
	width: 56px;
	height: 56px;
	line-height: 56px;
	left: 0;
	color: #ffffff;
	font-size: 24px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover:after {
	color: #222;
}

.banner-section .owl-theme .owl-nav .owl-next {
	position: absolute;
	right: 50px;
	top: 0;
	background: rgba(255, 255, 255, 0.15);
	height: 56px;
	width: 56px;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	line-height: 56px;
	color: rgba(0, 0, 0, 0);
	font-size: 0px;
	opacity: 1;
	margin-top: -30px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-section .owl-theme .owl-nav .owl-next:after {
	font-family: "feather";
	font-weight: 900;
	content: "\e929";
	position: absolute;
	top: 0;
	width: 56px;
	height: 56px;
	line-height: 56px;
	right: 0;
	color: #ffffff;
	font-size: 24px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-section .owl-theme .owl-nav .owl-next:hover:after {
	color: #222;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover,
.banner-section .owl-theme .owl-nav .owl-next:hover {
	opacity: 1;
	background-color: #fff;
}

.banner-section .owl-dots {
	position: absolute;
	left: 0;
	margin: 0;
	bottom: 40px;
	width: 100%;
	text-align: center;
	display: none;
}

.banner-section .owl-dots .owl-dot {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0px 4px;
}

.banner-section .owl-dots .owl-dot span {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
	background: #ffffff;
	border-radius: 50%;
}

.banner-section .btn-style-one .btn-title {
	background-color: #fff;
	color: #222;
}

.banner-section .btn-style-one:hover .btn-title {
	color: #fff;
}

.bg_gradual{
	position: relative;

}
.bg_gradual::before{
	height:300px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(1, 91, 154, 0.9), rgba(0, 0, 0, 0));
	-webkit-background-image: linear-gradient(to bottom, rgba(1, 91, 154, 0.9), rgba(0, 0, 0, 0));
}


/* exhibition two */

.exhibition-two {
	padding-bottom:30px;
	min-height:550px;
}
.exhibition-two .container-max{
	width:120%;margin-left:-10%;position: relative
}
.exhibition-two__content {
	padding: 20px;
	background: #ffffff;
}
.exhibition-two__single:hover .exhibition-two__content {
	background: #0160b0;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.exhibition-two__single:hover .exhibition-two__content h3,
.exhibition-two__single:hover .exhibition-two__content p{
	color:#ffffff;
}
.exhibition-two__content h3 {
	margin: 0;
	padding:0;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	color:#333333;
}

.exhibition-two__content h3 a {
	color: inherit;

}


.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;
	padding:0;
	color: #666666;
	line-height: 18px;
	font-size: 12px;
}

.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);
}


/*owl-carousel*/
.exhibition-two .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 .owl-theme .owl-nav {
	margin-top: -460px;
	margin-left:900px;

}

.exhibition-two .owl-theme .owl-nav [class*=owl-] {
	width: 50px;
	height: 50px;
	border: 1px solid #005ec7;
	border-radius: 30px;
	opacity: 40%;
	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 .owl-theme .owl-nav [class*=owl-]:hover {
	border-color: #0160b0;
	background-color: transparent;
	opacity: 100%;
}


.exhibition-two .owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

.exhibition-two .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 .owl-theme .owl-nav [class*=owl-] span::before {
	content: '\e90e';
	color: #0160b0;
	font-size: 15px;
	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 .owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: '\e90f';
}

/*-------------------------------------------------------------- 
# Event
--------------------------------------------------------------*/

.event-one {
	padding-bottom: 50px;
	position: relative;
	background-image: -webkit-gradient(linear,
	left top, right top,
	from(rgba(245, 247, 250, 0)),
	to(rgba(245, 247, 250, 0.8)));
	background-image: linear-gradient(90deg,
	rgba(245, 247, 250, 0) 0%,
	rgba(245, 247, 250, 0.8) 100%);
}

.event-one::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.3;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.event-one__moc {
	position: absolute;
	top: -150px;
	right: 2%;
	-webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.event-one__home-three .event-one__moc {
	left: 2%;
	right: auto;
}

.event-one .container {
	position: relative;
}

.event-one .container .row>[class*="col-"]+[class*="col-"] {
	margin-top: 30px;
}

.event-one__single {

	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.event-one__single:hover {
	background-color: #fff;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

.event-one__image {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	position: relative;
}

.event-one__image-inner {
	position: relative;
}

.event-one__image-inner::before {
	content: "";
	width: 230px;
	height: 10px;
	border-top: 2px solid var(--thm-base);
	border-bottom: 2px solid var(--thm-base);
	opacity: 0.5;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-30deg) skewX(30deg);
	transform: translate(-50%, -50%) rotate(-30deg) skewX(30deg);
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.event-one__single:hover .event-one__image-inner::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg) skewX(45deg);
	transform: translate(-50%, -50%) rotate(45deg) skewX(45deg);
}

.event-one__image-inner>img {
	position: relative;
	z-index: 10;
	width:200px;
	height:120px;
	border-radius:0;
	box-shadow: 0px 10px 20px 0px rgba(33, 37, 43, 0.2);
}

.event-one__content {
	padding-left: 30px;
	padding-right: 30px;
	-webkit-box-flex: 1;
	flex: 1 1 54%;
}

.event-one__content h3 {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 28px;
	font-weight: bold;
	color:#000000;
}

.event-one__content h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.event-one__content h3 a:hover {
	color:  var(--thm-black);
}

.event-one__content p {
	margin: 0;
}

.event-one__date {
	font-size: 16px;
	color: var(--thm-base);
	line-height: 1em;
	text-align: center;
	margin-right: 20px;
}

.event-one__date span {
	display: block;
	font-size: 30px;
	font-weight: bold;
	color: var(--thm-black);
	margin-bottom: 15px;
}

.event-one__btn {
	border: 2px solid #e5e5e5;
	background-color: transparent;
	font-size: 16px;
	color: var(--thm-black);
}

.event-one__btn:hover {
	background-color: var(--thm-base);
	border-color: var(--thm-base);
	color: #fff;
}

.event-one__event-page-2 {
	padding-top: 150px;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(245, 247, 250, 0)), to(rgba(245, 247, 250, 0.8)));
	background-image: linear-gradient(90deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.8) 100%);
}

.event-one__event-page-2::before {
	display: none;
}

.event-one__event-page-2 .more-post__block {
	margin-top: 70px;
}



/*-------------------------------------------------------------- 
# Main Footer 
--------------------------------------------------------------*/
.site-footer{
	background: url(../images/footer-bg.jpg)
}
.site-footer__upper {
	padding:50px 0 20px 0;
}

.footer-widget {
	margin-bottom: 10px;
}

.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 p {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	color: rgba(255,255,255,0.8);
}

.footer-widget p+p {
	margin-top: 5px;
}

.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: center;
}

.site-footer__bottom-logo {
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255,255,255,0.8);
}
.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: #0160b0;
	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: var(--thm-black);
}

.mobile-nav__container li+li {
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.3);
}

.mobile-nav__container li>ul {
	padding-left:20px;
	border-top: 1px solid transparent;
}
.mobile-nav__container li>ul li+li{
	border-top: 1px solid transparent;
}
.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: var(--thm-base);
	color: #ffffff;
}

.mobile-nav__container li.current-menu-item>a,
.mobile-nav__container li.current>a {
	border-color: #31a1ff;
	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;
}


/* side content */

.side-content__block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left 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-content__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.side-content__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-content__block-inner {
	position: relative;
	width: 300px;
	height: 100vh;
	background-color: #fff;
	z-index: 999999;
	overflow-y: auto;
	padding: 20px 15px;
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-content: space-between;
}

.side-content__block-inner .mCustomScrollBox {
	width: 100%;
}

.side-content__block .main-navigation .submenu {
	display: none;
}

.side-content__block__text {
	text-align: center;
}

.side-content__block__title {
	font-size: 20px;
	color: var(--thm-black);
	margin: 0;
	margin-bottom: 15px;
}

.side-content__block-line {
	margin: 40px 0;
	border-color: rgba(48, 46, 47, 0.2);
}

.side-content__block-about {
	margin-top: 40px;
}

.side-content__block-about__btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.side-content__block-contact__list {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}

.side-content__block-contact__list-item {
	color: var(--thm-black);
	font-size: 15px;
	position: relative;
	padding-left: 30px;
}

.side-content__block-contact__list-item a {
	color: inherit;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.side-content__block-contact__list-item a:hover {
	color: var(--thm-black);
}

.side-content__block-contact__list-item i {
	font-size: 17px;
	color: var(--thm-black);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.side-content__block-contact__list-item+.side-content__block-contact__list-item {
	margin-top: 10px;
}

.side-content__block__text-copy {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.side-content__block__text-copy a {
	color: inherit;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.side-content__block__text-copy a:hover {
	color: var(--thm-black);
}

.side-content__block__text a {
	color: var(--thm-black);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.side-content__block__text a:hover {
	color: var(--thm-black);
}

/*-------------------------------------------------------------- 
 # 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;
}




/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background-repeat: no-repeat;
	background-position:top center;
	background-size: 100%;
	position: relative;
	padding-top: 200px;
	padding-bottom: 100px;
}


.page-header::before {
	height:100px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(1, 91, 154, 0.9), rgba(0, 0, 0, 0));
}

.page-header .container {
	position: relative;
	text-align: center;
}

.page-header h2 {
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	margin: 0;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team-one {
	background-color: #f5f7fa;
	padding-bottom: 95px;
}

@media(min-width: 1200px) {
	.team-one .container>.row {
		margin-left: -53px;
		margin-right: -53px;
	}

	.team-one .container>.row>[class*=col-] {
		padding-left: 53px;
		padding-right: 53px;
	}
}

.team-one .block-title-two {
	padding-top: 150px;
}

.team-one__single {
	margin-bottom: 65px;
}

.team-one__image {
	background-color: #000000;
	position: relative;
	overflow: hidden;
}

.team-one__image>img {
	width: 100%;
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.team-one__single:hover .team-one__image>img {
	opacity: 0.7;
}

.team-one__social {
	position: absolute;
	width: 100%;
	background-color: var(--thm-base);
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	bottom: 0;
	left: 0;
	padding-top: 25px;
	padding-bottom: 25px;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	opacity: 0;
	visibility: hidden;
	-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;
}

.team-one__single:hover .team-one__social {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}

.team-one__social a {
	display: -webkit-box;
	display: flex;
	width: 40px;
	height: 40px;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	-webkit-transition: 500ms;
	transition: 500ms;
	font-size: 14px;
	border-radius: 50%;
}

.team-one__social a:hover {
	color: var(--thm-black);
	border-color: #ffff;
	background-color: #fff;
}

.team-one__social a+a {
	margin-left: 10px;
}

.team-one__content {
	text-align: center;
}

.team-one__content h3 {
	color: var(--thm-black);
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 10px;
}

.team-one__content p {
	margin: 0;
	color: var(--thm-base);
	text-transform: uppercase;
	font-size: 16px;
}



/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 40px;
	padding-bottom: 70px;
}

@media(max-width: 991px) {
	.sidebar {
		margin-top: 80px;
	}
}

.sidebar__single+.sidebar__single {
	margin-top: 70px;
}

.sidebar__title {
	margin: 0;
	color: var(--thm-black);
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 35px;
}

.sidebar__single .sidebar__title+p {
	margin-top: -20px;
}

.sidebar__search {
	border-style: solid;
	border-width: 1px;
	border-color: rgb(229, 229, 229);
	background-color: rgb(255, 255, 255);
	position: relative;
}

.sidebar__search input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	border: none;
	outline: none;
	width: 100%;
	height: 70px;
	padding-left: 20px;
}

.sidebar__search button[type=submit] {
	width: auto;
	border: none;
	outline: none;
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 18px;
}

.sidebar__search ::-webkit-input-placeholder {
	opacity: 1;
	font-size: 16px;
	color: #848484;
}

.sidebar__search ::-moz-placeholder {
	opacity: 1;
	font-size: 16px;
	color: #848484;
}

.sidebar__search :-ms-input-placeholder {
	opacity: 1;
	font-size: 16px;
	color: #848484;
}

.sidebar__search ::-ms-input-placeholder {
	opacity: 1;
	font-size: 16px;
	color: #848484;
}

.sidebar__search ::placeholder {
	opacity: 1;
	font-size: 16px;
	color: #848484;
}

.sidebar__single p {
	margin: 0;
	font-size: 16px;
	line-height: 28px;
	color: #848484;
}

.sidebar__cat-list {
	margin-bottom: -10px;
	margin-top: 20px;
}

.sidebar__cat-list li {
	position: relative;
	padding-left: 18px;
}

.sidebar__cat-list li+li {
	margin-top: 10px;
}

.sidebar__cat-list li::before {
	content: '';
	width: 10px;
	height: 5px;
	background-color: #dadde0;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 0;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sidebar__cat-list li:hover::before {
	background-color: var(--thm-black);
}

.sidebar__cat-list li a {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: block;

}

.sidebar__cat-list li a:hover {
	color: var(--thm-black);
}

.sidebar__post-single {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	border-bottom: 1px dashed #ebebeb;
	padding-bottom:15px;
}

@media(max-width: 425px) {
	.sidebar__post-single {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: start;
		align-items: flex-start;
		-webkit-box-pack: start;
		justify-content: flex-start;
	}
}

.sidebar__post-single+.sidebar__post-single {
	margin-top: 15px;

}

.sidebar__post-image>img {
	width: 90px;
}

.sidebar__post-content {
	margin-left: 0px;
}
.sidebar__post-content span{
	font-size: 14px;
	color:#888888;
}
@media(max-width: 425px) {
	.sidebar__post-content {
		margin-left: 0;
		margin-top: 20px;
	}
}

.sidebar__post-content h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.5em;
	color: #333333;
	font-weight: normal;
	margin-top: 10px;
}

.sidebar__post-content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sidebar__post-content  a:hover span,
.sidebar__post-content  a:hover h3,
.sidebar__post-content h3 a:hover {
	color: var(--thm-black);
}

.sidebar__post-date {
	text-transform: uppercase;
	color: var(--thm-black);
	font-size: 16px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	line-height: 1em;
}

.sidebar__post-date i {
	color: var(--thm-base);
	margin-right: 10px;
}

.sidebar__tags {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin-top: -10px;
	margin-left: -10px;
}

.sidebar__tags a {
	border: 1px solid #e5e5e5;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 15px;
	color: var(--thm-black);
	-webkit-transition: 500ms;
	transition: 500ms;
	margin-top: 10px;
	margin-left: 10px;
	padding: 10px 17px;
}

.sidebar__tags a:hover {
	color: #fff;
	background-color: var(--thm-base);
	border-color: var(--thm-base);
}

/*list-text*/
.list-text li{
	position: relative;
	padding:10px 0;
	transition: 1s all linear;
}
.list-text li:hover{
	transition-duration: .3s;
	background: #f4fbff;
}

.list-text.hover-style2 li:hover{
	background:#ffffff;
}
.list-text li a{
	font-size: 14px;
}
.list-text li a:hover{
	color:#047cc4;
}
.list-text li .title{
	font-size: 14px;
}

.list-text li .time{
	display: block;
	font-size: 12px;
	color:#888888;
}
.list-text li .time2{
	display: block;
	font-size: 14px;
	color:#2d6fda;
	margin-top:-10px;
}
.list-text li .num{
	background:#dae6f4;
	border-radius: 3px;
	padding:2px 8px;
	margin-right:10px;
	color:#047cc4;
}

.list-text{
	cursor: pointer;
}
.list-text .time-left{
	text-align: center;
	line-height: 10px;
	font-size: 13px;
	width:55px;
	position: relative;
	z-index: 3;
}

.list-text .time-left .day{
	height:30px;
	line-height: 30px;
	font-size: 20px;
	display: block;
	background:#0160b0;
	color:#ffffff;
}
.list-text .time-left .year{
	height:30px;
	line-height: 30px;
	display: block;
	background:rgba(1,96,176,0.05);
	color:#0160b0;
	font-size: 12px;
}

.list-text .time-left2{
	color:#006cc7;
	text-align: right;
	padding-right:15px;
	font-size: 20px;
	line-height: 20px;
	width:80px;
	position: relative;
	z-index: 3;
}
.list-text .time-left2 .year{
	font-size:13px;
}


.list-text .media-body{
	padding-left:20px;
	position: relative;
	z-index: 3;
}
.list-text .media-body.decorate:hover{
	border-left:2px solid #006cc7;
}
.list-text .media-body .title{
	color:#333333;
	font-size: 14px;
	line-height: 20px;
	height:40px;
}
.list-text .desc{
	font-size: 14px;
	margin:0;
}
.list-text .img{
	width:100px;
	margin-right:10px;
}
.list-text .img-bg{
	width:200px;
	margin-right:10px;
}

.list-media a{
	-webkit-transition: 500ms;
	transition: 500ms;
}
.list-media .img{
	width:200px;
}
.list-media .title{
	font-size: 18px;
	line-height: 24px;
	color:#5a5e66;
	font-weight: bold;
}
.list-media .summary{
	font-size:14px;
	line-height:22px;
	color:#999999;
}
.list-media .time{
	font-size:14px;
	color:#999999;
}
.list-media li{
	border-bottom:1px solid #f2f6fb;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.list-media li:hover{
	background:#f7fbff;
	border-bottom:1px solid #005ec7;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.list-media i{
	margin-top:15px;
	margin-right:30px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.list-media li:hover i{
	margin-right:10px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.section2{
	background-color:#f1f9ff;
	padding-bottom:20px;

}
.section2 .list-text{
	position: relative;
}
.section2 .list-text li{
	padding:14px 0 6px 0;
	position: relative;
	border-bottom:1px solid #e0eaf3;
}
.section2 .list-text .title{
	width:calc(100% - 100px);
	position: relative;
	padding-left:10px;
}
.section2 .list-text li:before{
	content:"";
	position: absolute;
	height:20px;
	width:1px;
	left: 0;
	top: 12px;
	background-color:#0868c7;
}
.section2 .list-text li:hover::before{
	content:"";
	position: absolute;
	height:1px;
	width:20px;
	left: 0;
	top: 15px;
	background-color:#0868c7;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.section2 .list-text li:hover{
	padding-left:20px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.section2 .list-text li:hover{
	-webkit-transition: 500ms;
	transition: 500ms;
	background:#ffffff ;
}
.section2 .list-text .time{
	display: block;
	color:#888888;
	font-size: 12px;
	position: absolute;
	right:10px;
	top:8px;
}
.pic-link{
	padding-top:100px;
}
.pic-link .pic{
	width:100%;
	height:105px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	text-align: right;
	color:#ffffff;
	padding:20px;
	margin-top:15px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.pic-link .pic:hover{
	padding:20px 30px 20px 20px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.pic-link .pic .icon{
	float:left;
	width:70px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.pic-link .pic .icon img{
	width:100%;
}
.pic-link .pic:hover .icon{
	transform: scale(1.1);
	-webkit-transition: 500ms;
	transition: 500ms;
}
.pic-link .pic .text{
	float:right;
	width:calc(100% - 100px);
}
.pic-link .pic h4{
	font-size: 22px;
}
.pic-link .pic-1{
	background-color: #3b845b;
	background-image: url(../images/pic-01-bg.jpg);
}

.pic-link .pic-2{
	background-color: #ba3e38;
	background-image: url(../images/pic-02-bg.jpg);

}

.pic-link .pic-3{
	background-color: #026fb9;
	background-image: url(../images/pic-03-bg.jpg);

}

.pic-link .pic-4{
	background-color: #0093a7;
	background-image: url(../images/pic-04-bg.jpg);

}
.pic-link .pic-5{
	background-color: #0093a7;
	background-image: url(../images/pic-05-bg.jpg);

}



.text-link a{
	display: block;
	padding:8px 30px;
	border-bottom: 1px solid #e7e7e7;
	float:left;
	margin-left:20px;
	color:#000000;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.text-link a:hover{
	border-bottom: 1px solid #085faf;
	color:#000000;
	background: #f1f9ff;
	-webkit-transition: 500ms;
	transition: 500ms;
}


.sub-container{
	position: relative;
	z-index: 10;
}
.sub-nav .nav-item{
	color:#666666;
}

.sub-nav .nav-item h2{
	padding:10px 20px;
	margin:10px 10px 10px 0;
	font-size: 16px;
	position: relative;
	text-align: center;
}


.sub-nav .nav-item:hover h2,
.sub-nav .nav-item.active h2 {
	font-weight:bold;
	background: #0068c6;
	color:#ffffff;

}



.image_gallery_item {
	position: relative;
}
.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;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.image_gallery_item:hover img{
	transform:translate(-50%, -50%) scale(1.25);
}

.article-box{
	padding:30px;
	background: #ffffff;
}
.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 solid #ebebeb;
	padding:8px;
	font-size: 14px;
	color:#666666;
}
.article .more-article{
	padding:20px 10px 10px;
	background: #f2f7fc;
}
.article .more-article a{
	font-size: 16px;
	color:#333333;
}
.article .more-article a:hover{
	text-decoration: underline;
}
