@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/

body {
	font-size: 16px;
	line-height: 1.5;
	font-family: "Times New Roman", Times, serif;

}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family:;
}

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: 1400px;
	}
}



/*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.2);
}
.thumbnail .badge,
.thumbnail:hover .badge{
	position: absolute;
	top:0;
	right:0;
	z-index: 10;
	font-weight: 100;
	border-radius: 0 0 0 10px;
}


.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;
}

.thumbnail-up{
	overflow: hidden;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.thumbnail-up:hover{
	text-decoration: none;
}
.thumbnail-up img{
	cursor: pointer;
	transition: all 1s;
}
.thumbnail-up .img-fluid{
	width:100%;
}
.thumbnail-up:hover img{
	transform: translateY(-40px);
}
/*
block-title styles
*/

.block-title {
	position: relative;
}
.block-title.home {
	padding:20px 0 ;
}
.block-title.home.center {
	text-align: center;
}
.block-title.home .block-title-title h5{
	font-size: 36px;
	position: relative;
}
.block-title.home.center .block-title-title h5:after{
	content: "";
	width:80px;
	height:3px;
	background: #0077d4;
	position: absolute;
	bottom:-10px;
	left:calc(50% - 40px);
}
.block-title.home .block-title-title span{
	color: #808489;
	font-size: 16px;
	padding-left:0;
}

.block-title .more{
	position: absolute;
	right:0;
	top:20px;
}

.more{
	color: #b5bbc4;
	font-size: 16px;
	display: inline-block;
	position: relative;
}
.more:hover{
	background-image: linear-gradient(to right, #2586e9, #0dd1d8);
	-webkit-background-clip: text;
	color: transparent;

}
.more i{
	margin-left:5px;
	font-size: 10px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;

}
.more:hover i{
	-webkit-transition: all 50ms ease;
	transition: all 500ms ease;
	font-size: 10px;

}


/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	font-size: 14px;
}
.breadcrumb li{
	position: relative;
}
.breadcrumb li.active{
	color:#999999;
}
.breadcrumb li:first-child:before{
	content: "";
	width:18px;
	height:18px;
	background: url("../images/icon_breadcrumb_home.png");
	background-size: 100%;
	margin-right: 10px;
	position: absolute;
	left:-24px;
	top:0;

}
.breadcrumb li a{
	color:#888888;
}
.breadcrumb li a:hover{
	color:#0450b0;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color:#999999;
}


/*-------------------------------------------------------------- 
# Main Menu
--------------------------------------------------------------*/
.main-nav .inner-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}


.main-nav .side-menu__toggler {
   display: none;
	color: #ffffff;
	font-size: 18px;
	position: absolute;
	right:20px;
	top:5px;
	text-align: right;
}
.main-nav {
	border-bottom:1px solid rgba(255,255,255,0.2);

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;
}

.main-nav .logo-box {
	padding: 0;
}
.main-nav .logo-box img{
	width:150px;
}

.main-nav .main-nav__main-navigation .search-link{
	text-align: right;
	color:rgba(255,255,255,0.6);
	font-size: 14px;
}
.main-nav .main-nav__main-navigation .search-link a{
	color:rgba(255,255,255,0.6);
}
.main-nav .main-nav__main-navigation {
	margin-left: auto;
}

.main-nav .main-nav__main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav .dropdown-btn {
	display: none;
}

.main-nav .main-nav__main-navigation .main-nav__navigation-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav .main-nav__navigation-box>li {
	padding: 20px 0 30px 0;
	white-space:nowrap;
	border-bottom:2px solid transparent;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.main-nav .main-nav__navigation-box>li:hover,
.main-nav .main-nav__navigation-box>li.active {
	border-bottom:2px solid #0eb4f8;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.main-nav .main-nav__navigation-box>li+li {
	margin-left: 20px;
}

.main-nav .main-nav__navigation-box>li>a {
	font-size: 18px;
	font-weight: bold;
	color:#ffffff;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav .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: 160px;
	background-color: #fff;
	border-top: 2px solid #2cabe0;
	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);
	word-break: keep-all;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li>a {
	display: block;
	width:100%;
	color: var(--thm-black);
	font-size: 16px;
	line-height: 24px;
	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: #2cabe0;
}

/* 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:#2cabe0;
	background-image:url(../images/nav-bg.jpg) ;
	background-position: right top;
	border-top: none;
	padding-top:10px;
	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: 0;
	padding-bottom: 12px;
}
.stricked-menu .main-nav__right {
	padding-top: 0;
	padding-bottom: 20px;
}
.stricked-menu .main-nav__navigation-box>li>a {
	color: #ffffff;
}
.stricked-menu .logo_light, .logo_dark {
	display: none;
}
.stricked-menu .logo_dark {
	display: block;
}
.stricked-menu .main-nav__main-navigation .search-link{
	color:rgba(0,0,0,0.6);
}
.stricked-menu .main-nav__main-navigation .search-link a{
	color:rgba(0,0,0,0.6);
}
.stricked-menu .side-menu__toggler{
	color:#ffffff;
}


/*-------------------------------------------------------------- 
 # 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: #2cabe0;
	z-index: 999999;
	overflow-y: auto;
	padding: 40px 0;
	padding-top: 60px;
	position: relative;
}

.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:#ffffff;
}

.mobile-nav__container {
	margin: 40px 0;
	border-top: 1px solid rgba(255,255,255, 0.1);
	border-bottom: 1px solid rgba(255,255,255, 0.1);
}

.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: #ffffff;
}

.mobile-nav__container li+li {
	border-top: 1px solid rgba(255,255,255, 0.1);
}

.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;
	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.1);
	color: #ffffff;
}
.mobile-nav__container .search-link{
	display: block;
	position: absolute;
	bottom:-40px;
	left:34px;
}
.mobile-nav__container .search-link span{
	display: none
}
.mobile-nav__container .search-link a{
	color:#ffffff;
	font-size: 14px;
}


/*--------------------------------------------------------------
 # 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 {
	border: none;
	outline: none;
	width: 100%;
	height: 60px;
	color: #000000;
	font-size: 18px;
	background-color: white;
	padding-left: 30px;
}

.search-popup__form ::-webkit-input-placeholder {
	opacity: 1;
	color: #888888;
}

.search-popup__form ::-moz-placeholder {
	opacity: 1;
	color: #888888;
}

.search-popup__form :-ms-input-placeholder {
	opacity: 1;
	color: #888888;
}

.search-popup__form ::-ms-input-placeholder {
	opacity: 1;
	color: #888888;
}

.search-popup__form ::placeholder {
	opacity: 1;
	color:#888888;
}

.search-popup__form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color:#888888;
}

.search-popup__form input::-moz-placeholder {
	/* Firefox 19+ */
	color:#888888;
}

.search-popup__form input:-ms-input-placeholder {
	/* IE 10+ */
	color:#888888;
}

.search-popup__form input:-moz-placeholder {
	/* Firefox 18- */
	color:#888888;
}

.search-popup__form button[type="submit"] {
	border: none;
	outline: none;
	width: 60px;
	height: 60px;
	color: #fff;
	background-color: #2cabe0;
	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: #2cabe0;
	color: #fff;
}

/* 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);
}



/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.site-footer{
	background-color:#0077d4;
	color:#ffffff;
}
.site-footer p{
	margin:0;
	color:rgba(255,255,255,0.7);
	font-size: 12px;
}
.site-footer .title{
	position: relative;
	font-weight: bold;
	padding-left:0;
	margin-bottom:20px;
}
.site-footer .title:after{
	content: "";
	height:2px;
	width:40px;
	background: #ffffff;
	position: absolute;
	left:0;
	bottom:-10px;
}
.site-footer a{
	color:rgba(255,255,255,0.7);
}
.site-footer a:hover{
	color:rgba(255,255,255,1);
}
.site-footer-upper {
	padding:40px 0 20px 0;
}


.site-footer-bottom  {
	font-size: 14px;
	border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center;
	color:rgba(255,255,255,0.5);
	padding:10px 0  10px 0;
	background: #0062af;
}
.site-footer-bottom .inner-container p{
	margin:0;
	padding:0;
}


/*--------------------------------------------------------------
# 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:910px;
	overflow: hidden;
}

.banner-carousel .slide-item .curved-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 45%;
	height: 100%;
}



.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);
}


.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;
	outline: none;
}

.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;
	outline: none;
}

.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 .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:150px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
	-webkit-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.bg_gradual1{
	position: absolute;
	width:100%;
	top:0;left:0;

}
.bg_gradual1::before{
	height:150px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
	-webkit-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

/* news-carousel */

.news-carousel {

}
.news-carousel-single{
}

/*owl-carousel*/
.news-carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align:center;
	align-items: center;
	-webkit-box-pack:center;
	justify-content:center;
	margin-top: 20px;
	margin-bottom:20px;
}


.news-carousel.owl-theme .owl-nav [class*=owl-] {
	width: 40px;
	height: 40px;
	border-radius: 30px;
	background-color: #2cabe0;
	border:1px solid #2cabe0;
	opacity: 50%;
	color:#ffffff;
	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;
}

.news-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	background-color: #2cabe0;
	opacity: 1;
}


.news-carousel.owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

.news-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;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}


.news-carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: "\e90e";
	font-family: "feather";
	color:#ffffff;
	font-size: 17px;
	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;
}

.news-carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: "\e90f";
}

/*list-text*/
.list-text{
	padding:0;
	margin:0;
}
.list-text.box{
border-top: 1px solid #b9c8df;
}

.list-text li{
	position: relative;
	padding:10px 0;
	list-style: none;
	cursor: pointer;
	transition: all 0.6s;
	border-bottom:1px solid #d0dbec;
}

.list-text li:hover{
	transform: scale(1.02);
	border-bottom:1px solid #2cabe0;
}
.list-text li a{
	display: block;
	color:#333333;
}
.list-text li:hover a{
	display: block;
	color:#2cabe0;
	-webkit-transition: 1s;
	transition: 1s;

}
.list-text li .title{
	margin-top:5px;
	font-size: 16px;
	padding-left:20px;
	position: relative;
	width:calc(100% - 110px);
}
.list-text li .title:before{
	content: "";
	position: absolute;
	width:8px;
	height:8px;
	border-radius: 6px;
	border:1px solid #d9dfe5;
	left:3px;
	top:6px;

}
.list-text li:hover .title:before{
	background: #2cabe0;
	-webkit-transition: 1s;
	transition: 1s;
}

.list-text li .time{
	font-size: 14px;
	color:#999999;
	width:90px;
	position: absolute;
	right:0;
	top:8px;
}
.list-text li a:hover .time{
	color: #2cabe0;
}


/*list-text-media*/

.list-text.media{
}

.list-text.media  .time-left{
	position: relative;
	color:#666666;
	width:80px;
	height:58px;
	padding:0 20px 0 0;
	font-size: 14px;
	text-align:right;
	border-right:1px solid #e1eaf3;
}

.list-text.media  .time-left .day{
	display: block;
	font-size: 24px;
	font-weight: bold;
	color:#059fe6;
	position: relative;
	margin-bottom:6px;
}
.list-text.media  .time-left .day:after{
	content: "";
	width:28px;
	height:1px;
	background:#059fe6;
	position: absolute;
	right:0;
	bottom:-2px;
}

.list-text.media .media-body{
	position: relative;
	z-index: 3;
}

.list-text.media .media-body .title{
	text-align: left;
	width:100%;
	color:#333333;
	font-size: 18px;
	font-weight: bold;
	line-height: 150%;
	padding-left:20px;
}
.list-text.media .media-body .desc{
	margin-top:15px;
	width:100%;
	color:#333333;
	font-size: 12px;
	line-height: 18px;
}
.list-text .desc{
	font-size: 14px;
	margin:0;
}
.list-text .img{
	width:100px;
	margin-right:10px;
}




.sub-nav{
}
.sub-nav .nav-item{
	background: transparent;

}
.sub-nav .nav-item h2{
	margin:0 0 0 0;
	padding:0 15px;
	color:#5c5e65;
	font-size: 20px;
	line-height: 60px;
	position: relative;
	text-align: center;
	transition: .5s
}
.sub-nav .nav-item:hover h2 {
	color:#0160b0;
}
.sub-nav .nav-item.active h2 {
	font-weight: bold;
	color:#0160b0;
	transition: .5s;
	position: relative;
}
.sub-nav .nav-item.active h2:after{
	content: "";
	position: absolute;
	height:2px;
	background: #0160b0;
	width:100%;
	bottom: 0;
	right: 0;
}


/*sub-container*/
.sub-container{
	position: relative;
	z-index: 10;
	padding-bottom:30px;
	background: #f5fafd;
}

/*article-box*/
.article-box{
	padding:50px;
	background-color: #ffffff;
	box-shadow: 0px 0px 50px 0px rgba(0,0,0, 0.02);
}
.article-box.ty{
}
.article .title{
	margin-bottom:30px;

	text-align: center;
}
.article .title h2{
	font-size: 24px;
	line-height: 150%;
	font-weight: bold;
	background-image: linear-gradient(to right, #2586e9, #0dd1d8);
	-webkit-background-clip: text;
	color: transparent;
	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;
	border-top: 1px solid #ebebeb;
}
.article .more-article p{
	margin:0;
}
.article .more-article a{
	font-size: 14px;
	color:#333333;
}
.article .more-article a:hover{
	text-decoration: underline;
	color:#066abc;
}



.section1 .card{
	background-color: #2180cb ;
	background-image: url(../images/s1-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding:30px;
	color:#ffffff;
	margin:20px 0;
	border-radius: 0;
}
.section1 .card .media img{
	width:120px;
	border-radius: 60px;
}
.section1 .card .title{
	padding-left:20px;
	font-size: 16px;
	position: relative;
	line-height: 260%;
}
.section1 .card .title:after{
	content: "";
	width:126px;
	height:3px;
	background: #ffffff;
	position: absolute;
	left:20px;
	bottom:-12px;
}
.section1 .card .title strong{
	font-size: 24px;
	display: block;
}

.section2{
	padding:30px 0;
	background: #f5fafd;
}
.section2 .card{
	background: #ffffff;
	border: none;
	border-radius: 0;
	cursor: pointer;
	paadding:0;
}

.section2 .card:hover{
	background: #ffffff;
	box-shadow: 0 0 10px 10px rgba(0,0,0,0.02);
}

.section2 .card .card-body{
	padding:25px;
}
.section2 .card .card-title{
	background-image: linear-gradient(to right, #2586e9, #2180cb);
	-webkit-background-clip: text;
	color: transparent;
	font-size: 22px;
	font-weight: bold;
	line-height: 150%;
}
.section2 .card p{
	margin:2px 0 0 0;
	font-size: 14px;
	color:#666666;
}
.section2 .card i{
	padding-right:6px;
	color:#3da7f1;
}
.section2 .card .tag{
	color:#2cabe0;
}

.sub-list .list-text2{
	padding:30px;
	border-bottom:1px solid #eceef1;
	cursor: pointer;
}
.sub-list .list-text2 .time{
	float:left;
	padding:30px 5px;
	height: 100%;
	width:100px;
	background: #0062af;
	color:#ffffff;
	text-align: center;
}
.sub-list .list-text2 .time span{
	display: block;
}
.sub-list .list-text2 .time .day{
	font-size: 30px;
	margin-bottom:10px;
}
.sub-list .list-text2 .time .month{
	font-size: 16px;
	border-bottom:1px solid #ffffff;
}
.sub-list .list-text2 .time .year{
	font-size: 16px;
}
.sub-list .list-text2 .title-box{
	float:left;
	width:calc(100% - 100px);
	padding-left:20px;

}
.sub-list .list-text2 .title{
	font-weight: bold;
	line-height: 150%;

}
.sub-list .list-text2 .summary{
	font-size: 16px;
	margin-top:10px;
	margin-bottom:10px;
	color:#4b5b76;
}
.sub-list .list-text2:hover .title{
	background-image: linear-gradient(to right, #2586e9, #0dd1d8);
	-webkit-background-clip: text;
	color: transparent;

}






