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

:root {
	--thm-base: #0160b0;
	--thm-base-rgb: 170, 160, 129;
	--thm-black: #252930;
	--thm-black-rgb: 37, 41, 48;
}

body {
	font-size: 16px;
	line-height: 28px;
	color: #222222;
}

ul li{
	list-style: none;
}

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

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

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

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

.cursor {
	visibility: visible;
}

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

.cursor.hovered {
	opacity: 0.08;
}

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

.cursor-follower {
	visibility: visible;
}

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

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

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

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

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

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

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

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

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

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



/* preloader */

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

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

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

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

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

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

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

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

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


/*ellipsis*/
.ellipsis-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ellipsis-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ellipsis-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
/*image-hover*/
.image-hover {
	overflow: hidden;
	position: relative;
}

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

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

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/
.main-nav {
	background: #ffffff url(../images/top-bg.jpg) no-repeat top center;
	width: 100%;
	z-index: 91;
}
.main-nav .inner-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
}
.main-nav .inner-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.main-nav .side-menu__toggler {
	display: none;
	position: absolute;
	right:50px;
	font-size: 24px;
}

.main-nav .logo-box {
	padding:20px 0;
	position: relative;
}
.main-nav .logo-box img{
	width:80%;
}
.main-nav .main-nav__main-navigation {
	position: relative;
	background:#006cc6;
	z-index: 100;
}

.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 {
	width:100%;
	text-align: center;
}

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

}

.main-nav .main-nav__navigation-box>li>a {
	padding:15px 15px ;
	width:100%;
	font-size: 17px;
	font-weight: bold;
	color:#ffffff;
	display: block;
	text-align: center;
	position: relative;
}

.main-nav .main-nav__navigation-box .dropdown>a::after {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: 10px;
}

/* Dropdown menu */

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

.main-nav__main-navigation .main-nav__navigation-box>li ul {
	position: absolute;
	width: 160px;
	background-color: #fff;
	border-top: 2px solid #00deff;
	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;
	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: var(--thm-base);
}

/* 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: #ffffff;
	box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
	opacity: 0;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

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

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

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

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

/*-------------------------------------------------------------- 
 # 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: var(--thm-black);
	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.1);
	border-bottom: 1px solid rgba(var(--thm-base-rgb), 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);
}

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

.mobile-nav__container li>ul {
	background: rgba(0,0,0,0.2);
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.1);
	padding:0 18px;
}
.mobile-nav__container li>ul li{
	border-top: 1px solid rgba(var(--thm-base-rgb), 0.1);
}
.mobile-nav__container li a {
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	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: var(--thm-base);
	color: #ffffff;
}

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

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

.side-menu__logo {
	padding-left: 30px;
}
.side-menu__logo img{
	width:70%;
}
.side-menu__block__copy {
	color: #cccccc;
	font-size: 18px;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}

.side-menu__block__copy a {
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__block__copy a:hover {
	color: var(--thm-base);
}

.side-menu__social {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.side-menu__social a {
	color: #ffffff;
	font-size: 16px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__social a:hover {
	color: var(--thm-base);
}

.side-menu__social a+a {
	margin-left: 19px;
}


/*-------------------------------------------------------------- 
 # 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;
}


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner-section {
	position: relative;
}
.banner-section,
.banner-section .carousel-item,
.banner-section .banner_content_wrap,
.banner-section .banner_content_wrap .carousel-item {
	/*height: 500px;*/
}

.banner-section .carousel-item{
	position: relative;

}
.banner-section .carousel-item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height:100%;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.banner-section .carousel-item.active img {
	-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;
}

.carousel-control-next,
.carousel-control-prev{
	background-color: rgba(0,0,0,0.5);
	font-size: 14px;
	height: 50px;
	border-radius: 30px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	transition: all 0.3s ease-in-out;

}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right: 20px;
}
.carousel-control-prev {
	left: 20px;
}
.carousel-control-next:hover, .carousel-control-prev:hover{
	background-color:transparent;
	border:1px solid #ffffff;
	color: #fff;
}

.banner-section .carousel-caption{
	height:100px;
	right:0;
	bottom:0px;
	left:0;
	padding:50px 0 0 0;
	color:#ffffff;
	text-align:left;
	z-index:10;
}
.banner-section .carousel-caption h5{
	font-size:18px;
	text-align: center;
	color:#ffffff;
}
.banner-section .carousel-indicators{
	bottom:20px;
}
.banner-section .carousel-indicators li{
	border:1px solid rgba(255,255,255,0.9);
	background: rgba(255,255,255,0.9);
	width:20px;
	height:6px;
	border-radius: 15px;
	opacity: 1;
}
.banner-section .carousel-indicators li.active{
	width:30px;
	height:6px;
	background-color:#006cc7;
	border:1px solid #006cc7;
}

/*
block-title styles
*/

.block-title {
	position: relative;
	margin: 15px 0;

}

.block-title .block-title-title {
	position: relative;
	color: #000000;
	font-size: 26px;
	font-weight: bold;
	line-height: 30px;
}
.block-title .block-title-title:after {
	content: '';
	width:30px;
	height:2px;
	background:#006cc7 ;
	position: absolute;
	left:calc(50% - 15px);
	top:-8px;
}
.block-title .more {
	width:85px;
	display: block;
	position: absolute;
	top:5px;
	right:10px;
	text-align: right;
}

.block-title-left{
	position: relative;
	margin: 30px 0;
}
.block-title-left .block-title-title {
	position: relative;
	padding-left:15px;
	color: #000000;
	font-size: 26px;
	line-height: 30px;
}
.block-title-left .block-title-title:after {
	content: '';
	width:6px;
	height:24px;
	border-radius: 4px;
	background:#006cc7 ;
	position: absolute;
	left:0;
	top:4px;
}
.block-title-left .more {
	width:85px;
	display: block;
	position: absolute;
	top:5px;
	right:10px;
	text-align: right;
}


.more,
a.more{
	position: absolute;
	color: #4f4f4f;
	font-size: 14px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	display: inline-block;
}

.more:hover {
	color: #449cc1;
}

.more:hover::before {
	background-image:url(../images/more-icon-color.png);
	-webkit-transform-origin: left center;
	transform-origin: right center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
/*list-media*/
.list-media{
	margin:0;
	padding:0;
}

.list-media li{
	padding:20px;
	border-bottom:1px dashed #f2f6fb;
	-webkit-transition: 1s;
	transition: 1s;
}
.list-media li:hover{
	-webkit-transition: 1s;
	transition: 1s;
	transform: scale(1.01);
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}
.list-media a{
	color:#060606;
}
.list-media .media-img{
	width:180px;
}
.list-media .media-body{
   padding-left:20px;
}
.list-media .title{
	font-size: 17px;
	line-height: 24px;
	color:#333333;
	font-weight: bold;
}
.list-media .summary{
	font-size:14px;
	line-height:22px;
	color:#989898;
	padding:0;
	margin-bottom:5px;
}
.list-media .time{
	font-size:14px;
	color:#666666;
}


.news-slide{

}
.news-slide:after{
	content: '';
	position: absolute;
	width:6px;
	height:80px;
	background-color:#006cc7 ;
	left: -6px;
	top: 0;
}
.news-slide:before{
	content: '';
	position: absolute;
	width:160px;
	height:6px;
	background-color:#006cc7 ;
	left: -6px;
	top: -6px;
}
.news-slide .carousel-control-next,
.news-slide .carousel-control-prev{
	top: 40%;
}
.news-slide .carousel-inner{
	padding-bottom:90px;
}

.news-slide .carousel-item{
	position: relative;
}

.news-slide .carousel-indicators{
	position: absolute;
	left:calc(55% - 130px);
	width:100%;
	bottom:90px;
	z-index: 100;
}
.news-slide .carousel-indicators li{
	border:1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.7);
	width:6px;
	height:6px;
	border-radius:0;
	opacity: 1;
}
.news-slide .carousel-indicators .active{
	width:6px;
	background-color:#006cc7;
	border:1px solid #006cc7;
}
.news-slide .carousel-caption{
	background-color: #ffffff;
	background-image: url(../images/bg-news-pic.png);
	background-repeat: no-repeat;
	background-position:bottom right;
	height:90px;
	width:100%;
	left:0;
	bottom: -90px;
	z-index:100;
	text-align: left;
	padding:15px 40px 15px 15px;
	position: absolute;
}

.news-slide .carousel-caption h5{
	font-size:17px;
	line-height: 20px;
	color:#000000;

}
.news-slide .carousel-caption span{
	font-size:14px;
	color:#888888;
	text-align: left;
}



/*.news-list*/
.news-list ul li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	padding: 10px;
	cursor: pointer;
	border:1px solid #e6eaef;
	background: #f6f9fc;
	margin-bottom:20px;
	transition: .5s
}
.news-list ul li:hover {
	border:1px solid #006cc6;
	background: #0160b0;
	transition: .8s;
	transform: scale(1.02);
}
.news-list ul li .title{
	margin:0;
	line-height: 24px;
	font-size: 16px;
	color:#000000;
	transition: .5s
}
.news-list ul li:hover .title{
	color:#ffffff;
	transition: .5s
}
.news-list  ul li .desc {
	font-size: 14px;
	color:#888888;
	line-height:24px;
	padding:0;
	margin:5px 0 0 0;
	display: none;
	transition: .5s;
	height:48px;
}
.news-list ul li.cur .desc {
	display: block;
	position: relative;
	z-index: 3;
	color: #888888;
	transition: .5s
}
.news-list  ul li:after {
	border-bottom:1px dashed #b4c4db;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	z-index: 0;
}
.news-list  ul li.cur:after {
	width: 100%;
	transition: .5s
}
.news-list .media-time{
	text-align: left;
	font-size: 18px;
    margin-right:15px;
	line-height: 26px;
	color:#060606;
	width:65px;
	border-right:1px solid #fbb98a;
	position: relative;
	z-index: 3;
}

.news-list .media-time span{
	font-size: 14px;
	color:#4e4e4f;
	display: block;
	font-weight: thin;
}
.news-list ul li:hover .media-time{
	color:#ffffff;
	transition: .5s
}
.news-list ul li:hover .media-time span{
	color:#ffffff;
	transition: .5s
}
/*.news-list2*/
.news-list2 ul li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	padding: 8px 0;
	cursor: pointer;
}

.news-list2 ul li .title{
	font-weight: bold;
	font-size: 15px;
	color:#333333;
	line-height: 24px;transition: .5s
}
.news-list2 ul li:hover .title{
	color:#0160b0;
	transition: .5s
}
.news-list2  ul li .media-body{
	height:60px;
	padding-top:6px;
	margin-left:15px;
	position: relative;
}
.news-list2  ul li .media-body:after {
	border-bottom:1px solid #0160b0;
	content: '';
	position: absolute;
	left:0;
	top: 0;
	bottom: 0;
	width: 0;
	z-index: 0;
}
.news-list2  ul li:hover .media-body:after {
	width: 100%;
	transition: .5s
}
.news-list2 .media-time{
	text-align: center;
	width:64px;
	position: relative;
	z-index: 3;
	background: #c7e5ff;
	color:#0160b0;
	padding:3px 5px 0 5px;
	border-radius: 5px;
	font-weight: bold;
	transition: .5s
}
.news-list2 ul li:hover .media-time{
	background: #0160b0;
	color:#ffffff;
	transition: .5s
}
.news-list2 .media-time .day{
	font-size: 22px;
	border-bottom: 1px solid rgba(1,96,176,0.2);
	display: block;
	width:100%
}
.news-list2 .media-time .year{
	font-size: 14px;
	text-transform: uppercase;
}

.section1{
	padding-bottom:30px;
}

/*bsdt*/
.bsdt .block-title-title{
   color:#ffffff;
}
.bsdt .block-title-title:after {
	background:#ffffff;
}
.bsdt-single{
	text-align: center;
	padding:30px;
	cursor: pointer;
}
.bsdt-content h3 {
	margin: 0;
	padding-top: 30px;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
	color:#ffffff;
	text-align: center;
	transition: .5s
}

.bsdt-single:hover .bsdt-content h3{
	color:#ffffff;
	margin-top:-5px;
}

.bsdt-image {
	margin:0 auto;
	position: relative;
	height:100px;
	width:100px;
	padding:20px;
	border-radius: 50px;
	border:2px dashed #ffffff;
	text-align: center;
	text-transform: capitalize;
}
.bsdt-image.color {
	border:2px dashed #006cc7;
}
.bsdt-image img {
	width:100%;
}
.bsdt-single:hover .bsdt-image img{
	-webkit-animation: jello 1s;
	-moz-animation: jello 1s;
	animation: jello 1s;
}
.circle::before, .circle::after {
	box-sizing: border-box;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	top: 0;
	left: 0;
}

.circle::before {
	border: 2px solid transparent;
}
.circle:hover::before {
	border-top-color: #2c7ed2;
	border-right-color: #2c7ed2;
	border-bottom-color: #2c7ed2;
	-webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
	transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.circle::after {
	border: 0 solid transparent;
}
.circle:hover::after {
	border-top: 2px solid #2c7ed2;
	border-left-width: 2px;
	border-right-width: 2px;
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	-webkit-transition: -webkit-transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
	transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}



@-webkit-keyframes circleProgressLoad_right{
	0%{
		-webkit-transform: rotate(45deg);
	}
	50%{
		-webkit-transform: rotate(225deg);
	}
	100%{
		-webkit-transform: rotate(225deg);
	}
}
@-webkit-keyframes circleProgressLoad_left{
	0%{
		-webkit-transform: rotate(45deg);
	}
	50%{
		-webkit-transform: rotate(45deg);
	}
	100%{
		-webkit-transform: rotate(225deg);
	}
}
@keyframes jello {
	from, 11.1%, to { -webkit-transform: none; -moz-transform: none; transform: none }
	22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); -moz-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg) }
	33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); -moz-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg) }
	44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); -moz-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg) }
	55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); -moz-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg) }
	66.6% { -webkit-transform: skewX(-.78125deg) skewY(-.78125deg); -moz-transform: skewX(-.78125deg) skewY(-.78125deg); transform: skewX(-.78125deg) skewY(-.78125deg) }
	77.7% { -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); -moz-transform: skewX(0.390625deg) skewY(0.390625deg); transform: skewX(0.390625deg) skewY(0.390625deg) }
	88.8% { -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg); -moz-transform: skewX(-.1953125deg) skewY(-.1953125deg); transform: skewX(-.1953125deg) skewY(-.1953125deg) }
}


/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.footer{
	background: #0160b0;
	padding:30px 0 20px 0;
	color:#ffffff;
}
.footer h5{
	font-size: 20px;
	font-weight:bold ;
}
.footer p{
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: rgba(255,255,255,0.7);
}
.footer p+p {
	margin-top: 5px;
}
.bottom_footer {
	font-size: 14px;
	text-align: center;
	padding: 10px 0 5px 0;
	position: relative;
	border-top:1px solid rgba(225,225,225,0.1);
	color:rgba(225,225,225,0.6)
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: fixed;
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	background-color:#0150af ;
}

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

.sub-container{
	position: relative;
	z-index: 10;
	min-height: 400px;
}
/*sub-nav*/
.sub-nav .nav-item{
	color:#888888;
	background: transparent;
}
.sub-nav .nav-item h2{
	margin:10px 30px 10px 0;
	font-size: 20px;
	line-height: 30px;
	position: relative;
	text-align: center;
	transition: .5s
}
.sub-nav .nav-item:hover h2 {
	font-size: 22px;

}
.sub-nav .nav-item.active h2 {
	font-size: 24px;
	background: transparent;
	color:#0160b0;
	transition: .5s;
	position: relative;
}
.sub-nav .nav-item.active h2:after{
	content: "";
	position: absolute;
	height:3px;
	background: #0160b0;
	width:100%;
	bottom: -12px;
	right: 0;
}
.sub-title{
	margin:10px 30px 10px 0;
	line-height: 30px;
	position: relative;
	text-align: left;

}
.sub-title h2{
	font-size: 24px;
	line-height: 30px;
	text-align:left;
	font-family: f015;
	color:#0160b0;
}
.sub-title span{
	display: block;
	font-size: 24px;
	color:rgba(1,96,176,0.1);
	text-transform: uppercase;
	font-weight: bold;
	position: absolute;
	left:30px;
	bottom:-6px;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
	width:90%;
	background-image: url(../images/bg-sidebar.jpg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-color: #e9f1f9;
	background-size:100% ;
	min-height: 300px;
}

/*side-nav*/
.side-nav{
	padding:0 20px 150px 20px;
}
.side-nav .nav-item a{
	display: block;
	width:100%;
	color:#333333;
}
.side-nav .nav-item{
	width:100%;
	padding: 5px 0 5px 15px;
	border-bottom:1px dashed #c4d2e1;
	position: relative;
	-webkit-transition: all 0.5s ease;
	transition: all .5s ease;
}

.side-nav .nav-item.active {
	width:100%;
	color:#3084d9;
	font-weight: bold;
}

.side-nav .nav-item.active:after,
.side-nav .nav-item:hover::after{
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	color: #3084d9;
	right: 15px;
	top:15px;
	opacity: 1;
	transform: translateY(0);

}
.side-nav .nav-item:after{
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	color: #3084d9;
	right: 15px;
	top:15px;
	opacity: 0.3;
	transition: opacity 0.3s, transform 0.3s;
}
.side-nav .nav-item:hover{
	width:100%;
	position: relative;
	color:#0055aa;
}

.sidebar-title h3{
	width:100%;
	height:80px;
	line-height: 80px;
	font-size: 24px;
	margin-bottom:20px;
	color:#ffffff;
	text-align: center;
	background:#0055aa;
}

.sidebar-title2{
	margin-top:0;
	border-radius: 0;
	padding:15px 20px;
	font-size: 24px;
	color:#ffffff;
	background-color:#066abc;
}
.sidebar-title2 h3{
	font-size:20px;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-title2 h3:after{
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 5px;
	top:0;
}
/*sub-nav*/
.sub-nav .nav-item{
	color:#888888;
	background: transparent;
}
.sub-nav .nav-item h2{
	margin:0 30px 10px 0;
	font-size: 18px;
	line-height: 30px;
	position: relative;
	text-align: center;
	transition: .5s
}
.sub-nav .nav-item:hover h2 {
	font-size: 20px;

}
.sub-nav .nav-item.active h2 {
	font-size: 20px;
	font-weight: bold;
	background: transparent;
	color:#0055aa;
	transition: .5s;
	position: relative;
}
.sub-nav .nav-item.active h2:after{
	content: "";
	position: absolute;
	height:3px;
	background: #0055aa;
	width:100%;
	bottom: -12px;
	right: 0;
}
.sub-title{
	margin:10px 30px 10px 0;
	line-height: 30px;
	position: relative;
	text-align: left;

}
.sub-title h2{
	font-size: 24px;
	line-height: 30px;
	text-align:left;
	font-family: f015;
	color:#0055aa;
}
.sub-title span{
	display: block;
	font-size: 24px;
	color:rgba(1,96,176,0.1);
	text-transform: uppercase;
	font-weight: bold;
	position: absolute;
	left:30px;
	bottom:-6px;
}
/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 14px;
}
.breadcrumb li.active{
	color:#999999;
}
.breadcrumb li a{
	color:#333333;
}
.breadcrumb li a:hover{
	color:#0160b0;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	color:#999999;
}
/*
list-text
*/
.list-text{
	padding:0;
	margin:0;
}
.list-text li{
	position: relative;
	padding:7px 5px;
	line-height: 24px;
	list-style: none;
	cursor: pointer;
	transition: all 0.6s;
}

.list-text li:hover{
	transform: scale(1.005);
}
.list-text li a{
	display: block;
	color:#333333;
}
.list-text li a:hover{
	display: block;
	color:#3a7bbd;
	-webkit-transition: 1s;
	transition: 1s;
}
.list-text li .title{
	font-size: 15px;
	padding-left:12px;
	position: relative;
	width:calc(100% - 110px);
}
.list-text li .title:before{
	content: "";
	position: absolute;
	height:5px;
	width:5px;
	background: #999999;
	top:10px;
	left:0;
}
.list-text li a:hover .title:before{
	background: #3a7bbd;
	-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: #3a7bbd;
}
.list-text .time-left{
	color:#999999;
	padding-right:15px;
	padding-top:6px;
	line-height: 20px;
	font-size: 14px;
	width:100px;
	text-align: center;
	position: relative;
	z-index: 3;
}
.list-text .time-left .day{
	font-size: 36px;
}


.list-text.sub li{
	position: relative;
	padding:10px 5px;
	line-height: 24px;
	border-bottom:1px dashed #d7d7d7;
	list-style: none;
	cursor: pointer;
}

.list-text.sub .title{
	color:#333333;
	font-size: 16px;
	width:calc(100% - 120px);
	position: relative;
	padding-left:15px;
}

.list-text.sub .title:hover{
	color:#015bad;
}
.list-text.sub .time{
	width:100px;
	position: absolute;
	right:5px;
	top:10px;
	font-size: 14px!important;
	text-align: right;
}

.list-text2{
	padding:0;
	margin:0 0 5px 0;
}
.list-text2 li{
	position: relative;
	padding:5px 5px;
	line-height: 24px;
	list-style: none;
	cursor: pointer;
	transition: all 0.6s;
	border-bottom:1px solid #edf0f2;
}

.list-text2 li:hover{
	transform: scale(1.02);
}
.list-text2 li a{
	display: block;
	color:#333333;
}
.list-text2 li a:hover{
	display: block;
	color:#3a7bbd;
	-webkit-transition: 1s;
	transition: 1s;
}
.list-text2 li .title{
	font-size: 15px;
	position: relative;
	font-weight: bold;
}
.list-text2 li .title span{
	color:#ff7a18;
	padding-right:10px;
}

.list-text2 li .desc{
	font-size: 12px;
	color:#999999;
}
.list-text2 li .time{
	font-size: 12px;
	color:#ff7a18;
}

.card .caption{
	position: relative;
}
.card .caption h4{
    font-size: 15px;
	line-height: 24px;
	color:#333333;
	text-align: left;
	margin:15px 0 10px 0;
	font-weight: bold;
	position: relative;
}

.card .summary{
	color:#999999;
	text-align: left;
	font-size: 12px;
	line-height: 20px;
}
.card .card-time{
	text-align: center;
	width:60px;
	position: absolute;
	right:10px;
	top:-60px;
	z-index: 3;
	background: #0160b0;
	color:#ffffff;
	padding:3px 0 0 0;
}

.card .card-time .day{
	font-size: 22px;
	display: block;
	width:100%
}
.card .card-time .year{
	font-size: 14px;
}
.article-box{
	padding:30px;
	background: #ffffff;
}
.article .title{
	margin-bottom:30px;
	text-align: center;
}
.article .title h2{
	font-size: 26px;
	color:#333333;
	margin-bottom:15px;
}
.article .title p{
	font-size: 14px;
}
.article .publish-info{
	border-bottom:1px dashed #ebebeb;
	padding:8px;
	font-size: 14px;
	color:#666666;
}
.article .more-article{
	padding:20px 10px 10px;
	border-top:1px dashed #ebebeb;
}
.article .more-article a{
	font-size: 14px;
	color:#005ec7;
}
.article .more-article a:hover{
	text-decoration: underline;
}
.section2{
	padding:30px;
	background-color: #1074ca;
	background-image:url(../images/bg-home-s2.jpg) ;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position:center middle;
	background-attachment: fixed;
}

.section3{
	padding-bottom:30px;
}
.section3 .card{
	border:none;
	box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.1);
	padding:15px;
}


/* experiment-pic */

.experiment-pic {
	padding-bottom: 20px;
}

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

.experiment-pic-content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.experiment-pic-content h3 a:hover {
	color:#000000;
}

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

.experiment-pic-content p {

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

}

.experiment-pic-image {
	overflow: hidden;
	position: relative;
}

.experiment-pic-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%);
}

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

.experiment-pic-carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align:left;
	align-items: left;
	-webkit-box-pack:left;
	justify-content:left;
	margin-top: 20px;
	margin-bottom:20px;

}

.experiment-pic-carousel.owl-theme .owl-nav [class*=owl-] {
	width: 45px;
	height: 30px;
	border-radius: 5px;
	background:#006cc7;
	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;
}

.experiment-pic-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	background-color: #006cc7;
	opacity: 1;
}


.experiment-pic-carousel.owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
	margin-left: 10px;
}

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


.experiment-pic-carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: "\f104";
	font-family: "Font Awesome 5 Free";
	color:#fff;
	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;
}

.experiment-pic-carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: "\f105";
}

/* equipment */
.equipment-content h3 {
	margin: 0;
	padding-top: 5px;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	color:#000000;
	text-align: left;
}
.equipment-content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.equipment-content h3 a:hover {
	color:#000000;
}
.equipment-content p {
	margin: 0;
	color: #848484;
	font-size: 14px;
	line-height: 24px;
}
.equipment-image {
	overflow: hidden;
	position: relative;
}
.equipment-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%);
}
.equipment-single:hover .equipment-image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.equipment-carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align:center;
	align-items: center;
	-webkit-box-pack:center;
	justify-content:center;
}

.equipment-carousel.owl-theme .owl-nav {
	margin-top:0;
	margin-bottom:0;
	color:#666666;
}

.equipment-carousel.owl-theme .owl-nav [class*=owl-] {
	width: 45px;
	height: 30px;
	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;
}

.equipment-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	color: #006cc7;
	opacity: 50%;
}


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

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


.equipment-carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: "\f100";
	font-family: "Font Awesome 5 Free";
	color:#999999;
	font-size: 18px;
	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;
}

.equipment-carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: "\f101";
}

/* warning */
.warning-content h3 {
	margin: 0;
	padding-top: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 26px;
	color:#000000;
	text-align: left;
	height:50px;
}
.warning-content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.warning-content h3 a:hover {
	color:#000000;
}

.warning-image {
	overflow: hidden;
	position: relative;
}
.warning-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%);
}
.warning-single:hover .warning-image::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
.warning-carousel.owl-theme .owl-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-align:center;
	align-items: center;
	-webkit-box-pack:center;
	justify-content:center;
}

.warning-carousel.owl-theme .owl-nav {
	margin-top:5px;
	margin-bottom:0;
	color:#666666;
}

.warning-carousel.owl-theme .owl-nav [class*=owl-] {
	width: 45px;
	height: 30px;
	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;
}

.warning-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	color: #006cc7;
	opacity: 50%;
}


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

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


.warning-carousel.owl-theme .owl-nav [class*=owl-] span::before {
	content: "\f100";
	font-family: "Font Awesome 5 Free";
	color:#999999;
	font-size: 18px;
	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;
}

.warning-carousel.owl-theme .owl-nav [class*=owl-]:nth-child(2) span::before {
	content: "\f101";
}


.section4{
	background-image: url(../images/bg-home-s5.jpg);
	background-position: top center;
	background-size: 100%;
	background-color: #f2f7fc;
	background-repeat: no-repeat;
	padding:30px 0 50px 0;
}
.section4 .block-title-title{
	color: #ffffff;
}
.section4 .block-title-title:after{
	background: #ffffff;
}
.section4 .block-title-left .block-title-title{
	font-size: 22px;
}
.section4 .block-title-left .block-title-title:after{
	height:18px;
	width:4px;
	top:8px;
}
.section4 .more{
	color:#ffffff;
}
.section4 .card.a2{
	padding:0;
}
.section4 .card.a1{
	padding:0 15px;
}
.section4 .card{
	border:none;
	box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.1);
	padding:15px;
}
.section4 .list-text2 .title{
	font-weight: normal;
}
.section5{
	background-color:#f2f6fb;
	background-image:url("../images/bg-mid-1.jpg");
	background-repeat: repeat-x;
	background-position: bottom;
	background-attachment:fixed;

}
.section6{
	background: #f2f7fc;
	padding:20px 0;
}


.link {
}
.link ul {
	width: 100%;
	padding: 0px;
	margin: 0;
}
.link ul li {
	float: left;
	/*width:140px;*/
	list-style-type: none;
	margin-right:30px;
	font-size: 14px;
	padding:3px;
}

.link ul li a {
	color:#555555;
	position: relative;
	padding-left:12px;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.link ul li a:hover {
	color:#03437f;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.link ul li a:after{
	content: "";
	position: absolute;
	left:0;
	top:8px;
	width:4px;
	height:4px;
	background: #888888;
}
.link ul li a:hover::after{
	background: #3fa7ff;
}

.thumbnail .ripple{
	position: absolute;
	top:calc(50% - 25px);
	left:calc(50% - 25px);
}
.ripple {
	background-color: rgba(0,0,0,0.5);
	border-radius: 100%;
	color: #ffffff;
	position: relative;
	display: inline-block;
	line-height: 45px;
	font-size: 30px !important;
	vertical-align: middle;
	height: 50px;
	width: 50px;
	text-align: center;
}
.ripple:hover {
	color: #009cff;
}
.ripple i {
	margin-right: 0;
	margin-left: 5px;
	font-size: 24px;
}

.ripple::before,.ripple::after {
	-webkit-animation: ripple 1.8s infinite ;
	-moz-animation: ripple 1.8s infinite ;
	-o-animation: ripple 1.8s infinite ;
	-ms-transition:ripple 1.8s infinite ;
	animation: ripple 1.8s infinite ;
	background-color: #fff;
	border-radius: 100%;
	margin: -15px;
	bottom: 0px;
	content: "";
	display: block;
	left: 0px;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index:-1;
}
.ripple::before {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.ripple::after {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}

