/*imported styles*/
@import url("pagebar.css");

/* gengral style*/
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
body {
	background: #ffffff none repeat scroll 0 0;
	font-family:Microsoft YaHei;
	font-size: 16px;
}
h1,h2,h3,h4,h5,h6 {
	color: #222222;
	font-family: 'Poppins', sans-serif;
}

a {
	color: #292b2c;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all .5s ease;
}
a:hover {
	color: #b90509;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
}
ul,li,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}
label {
	color: #222222;
	font-weight: 500;
}
input:focus,
textarea:focus,
button:focus{
	outline: none;
	box-shadow: none;
}
iframe {
	border: 0;
	display: block;
}
video {
	width: 100%;
}

.btn-radius {
	border-radius: 40px;
}
@media (min-width:1200px){
	.container{max-width:1300px}
}
.btn-white {
	background-color: #fff;
	color: #b90509!important;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.btn-white i{
	color:#b90509;
}
.btn-white::before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	top: 0;
	bottom: 0;
	opacity: 0;
	color: #b90509 !important;
	background-color: rgba(255,255,255,1);
	z-index: -1;
	transition: all 0.5s ease-in-out;
}
.btn-white:hover::before {
	left: 0;
	opacity: 1;
	right: 0;
}
.btn-white:hover {
	background-color: transparent;
	color: #b90509 !important;
}

.text-white * {
	color: #fff;
}
.text-dark * {
	color: #333;
}
.text-default {
	color: #b90509 !important;
}

.scrollup {
	background-color: #171717;
	border-radius: 100%;
	bottom: 20px;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 40px;
	z-index: 99;
}
.scrollup:hover {
	background-color: #b90509;
	color:#fff;
}
.scrollup:focus {
	color:#fff;
}

.scrollup.scrollup_style1:hover {
	background-color: #333;
}
.background-bg {
	background-position: center center;
	background-size: cover;
}

.bg-size-auto {
	background-size: auto !important;
}
.bg-size-contain {
	background-size: contain !important;
}
.bg-norepeat {
	background-repeat: no-repeat !important;
}
.position-top-center {
	background-position: top center !important;
}
.position-center-bottom {
	background-position: center bottom !important;
}
.position-right-center {
	background-position: right center !important;
}
.position-right-bottom {
	background-position: right bottom !important;
}
.fixed-bg {
	background-attachment: fixed !important;
}

.box_shadow{
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/*设置box宽高为指定比例*/
.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: 80%;
}
.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;
}




/*header navbar*/

.header_wrap {
	transition: all 0.5s ease 0s;
	background:#b90509;
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.navbar-brand {
	padding: 13px 0;
	vertical-align: top;
}
.navbar-brand img {
	max-width: 450px;
}
.navbar-nav a,
.navbar-toggler {
	color: #ffffff;
}
.navbar {
	padding: 0;
	background:#b90509;
}

.navbar .navbar-nav li {
	position: relative;
	list-style: none;
	transition: all 0.3s ease 0s;

}
.navbar-nav .dropdown-menu {
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	min-width: 12rem;
}
.navbar-nav .dropdown-menu {
	background-color: rgba(255,255,255,1);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar-nav .dropdown-menu .dropdown-menu {
	background-color: rgba(255,255,255,1);
}

.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a{
	padding-left: 25px;
}
.navbar .navbar-nav .dropdown-menu li a:hover::before,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a::before{
	border: 0 none;
	content: "\e90f";
	font-family: "feather";
	height: auto;
	line-height: normal;
	vertical-align: middle;
	width: auto;
	transition: all 0.3s ease-in-out;
	font-weight: 100;
}


.dropdown-toggle::after {
	border: 0 none;
	content: "\e927";
	font-family: "feather";
	height: auto;
	line-height: normal;
	vertical-align: middle;
	width: auto;
	transition: all 0.3s ease-in-out;
	font-weight: 100;
}

.navbar .navbar-nav > li > .nav-link {
	font-weight: bold;
	padding: 20px 37px;
	font-size: 17px;
	white-space:nowrap;
}
.navbar .navbar-nav > li > .nav-link.active {
	color:#fff;
	background:#940004;
}
.nav-fixed .navbar .navbar-nav > li > .nav-link {
	padding: 15px;
}
.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a{
	background:#940004;

}

.navbar .navbar-nav .dropdown-item {
	padding: 15px 20px 10px 20px;
	color: #333;
	font-size: 14px;
	text-transform: capitalize;
	border-bottom: 1px solid #d8d8d8;
}
.navbar .navbar-nav li:last-child .dropdown-item {
	border-bottom: 0;
}
.navbar .navbar-nav .dropdown-item.dropdown-toggler {
	padding-right: 30px;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
	background-color: transparent;
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a {
	color: #b90509;
}

.nav-fixed .navbar-nav li > a,
.nav-fixed .navbar-toggler{
	color: #333333;
}
.header_wrap{
	position: relative;
	padding-right: 0 !important;

}
.header_wrap.fixed-top {
	position: relative;
	padding-right: 0 !important;

}
.header_wrap.transparent_header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1030;
}
.header_wrap.nav-fixed {
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 999;
	-webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-animation-fill-mode: none;
	-moz-animation-fill-mode: none;
	-o-animation-fill-mode: none;
	animation-fill-mode: none;
}

.header_wrap.fixed-top.nav-fixed.no-sticky,
.header_wrap.fixed-top.no-sticky {
	position: absolute;
}

.navbar-toggler {
	float: right;
	margin: 13px 0 0 5px;
	font-size: 28px;
	color: #ffffff;
	transition: all 0.5s ease 0s;
	border-radius: 0;
	height: 35px;
	width: 35px;
	padding: 0;
	line-height: 36px;
	transition: none;
}
.navbar-toggler[aria-expanded="true"] span::before {
	content: "\e9e6";
	font-size: 20px;
}
.navbar-toggler[aria-expanded="true"] {
	line-height: 32px;
	font-size: 20px;
}

.main_menu_uppercase .navbar-nav > li > .nav-link {
	text-transform: uppercase;
}



/*banner, slider style*/
.banner_section {
	position: relative;
}
.banner_section,
.banner_section .carousel-item,
.banner_section .banner_content_wrap,
.banner_section .banner_content_wrap .carousel-item {
	height: 500px;
}
.carousel-item img {
	width: 100%;
}
.carousel-control-next,
.carousel-control-prev{
	background-color: rgba(0,0,0,0.5);
	font-size: 18px;
	height: 50px;
	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: #b90509;
	color: #fff;
}

.carousel-indicators li{
	width:20px;

}
.carousel-indicators li.active{
	background-color:#b90509;
}



.news-slide{
}
.news-slide .carousel-item{
	position: relative;
}
.news-slide .carousel-item .time{
	position: absolute;
	bottom:10px;
	left:10px;
	text-align: center;
	padding:10px;
	width:100px;
	background:rgba(185,5,9,0.8);
	font-size: 14px;
	color:#ffffff;
	z-index: 100;
}
.news-slide .carousel-inner{
	padding-bottom:160px;
}
.news-slide .carousel-indicators{
	margin-bottom:0px;
	z-index: 11;
}
.news-slide .carousel-indicators li{
	background-color:rgba(0,0,0,0.2);
	width:20px;
}
.news-slide .carousel-indicators .active{
	background-color:#b90509;
}
.news-slide .carousel-caption{
	background-color:#ffffff;
	height:140px;
	right:0;
	bottom:-140px;
	left:0;
	padding:20px;
	color:#333333;
	text-align:left;
	z-index:10;
}
.news-slide .carousel-caption h5{
	font-size:18px;
	text-align:left;
	font-weight: bold;
	color:#333333;
}
.news-slide .carousel-caption p{
	margin-top:15px;
	font-size: 14px;
	line-height: 20px;
	color:#666666;
}



/*footer*/

.footer_dark {
	background-color: #b90509;
	position: relative;
	color:#ffffff;
}
.footer_dark:before{
	content: "";
	position: absolute;
	top:-10px;
	left:10px;
	height:10px;
	width:calc(100% - 20px);
	background:rgba(185,5,9,0.1);
}
.footer_top {
	padding: 20px 0 10px;
}
.footer_logo {
	margin-bottom: 20px;
	width:80%;
}
footer p {
	font-size: 14px;
}
footer .widget {

}
footer .widget_title {
	margin-bottom: 20px;
	font-size: 20px;
	color:#ffffff;
	position: relative;
}

footer .widget li{
	font-size: 14px;
	padding:3px 0;
}
.bottom_footer {
	padding: 10px 0;
	position: relative;
	border-top:1px solid rgba(225,225,225,0.3);
	color:rgba(225,225,225,0.6)
}
.bottom_footer a{
	color:rgba(225,225,225,0.9)
}


/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	color:#ebebeb;
	-ms-flex-pack:end!important;justify-content:flex-end!important
}
.breadcrumb li.active{
	color:#999999;
}
.breadcrumb li a{
	color:#333333;
}
.breadcrumb li a:hover{
	color:#b90509;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	color:#ebebeb;
}
.page-title + .breadcrumb {
	margin-top: 15px;
}
.page-title + span {
	margin-top: 15px;
	display: inline-block;
	width: 100%;
}
.breadcrumb-item a i {
	font-size: 26px;
	line-height: 1;
	vertical-align: middle;
	margin-right: 5px;
	margin-top: -5px;
	display: inline-block;
}


/*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.05);
}
.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;
}

/*
block-title styles
*/

.block-title {
	position: relative;
}
.block-title.border-bottom{
	border-bottom:1px solid #b90509!important;
}
.block-title-title {
	position: relative;
	color: #ffffff;
	font-weight:500;
	font-size: 24px;
	line-height: 48px;
	height:48px;
	padding-left:10px;
	margin: 0;
	background:url(../images/title-bg.png) no-repeat left;
}


.block-title.small{
	height:36px;
}
.block-title.small .block-title-title {
	position: relative;
	padding-left:48px;
	font-size: 18px;
	line-height: 18px;
}
.block-title.small .block-title-title .icon{
	top:-6px;
	width:36px;
	height:36px;
	line-height: 36px;
}

.block-title .more {
	position: absolute;
	right:0;
}


.more {
	position: absolute;
	color: #252930;
	font-size: 14px;
	font-weight: thin;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	display: inline-block;
}

.more::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #b90509;
	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;
}

.more:hover {
	color: #b90509;
}

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

/*list-text*/
.list-text li{
	position: relative;
	padding:20px 0;
	border-bottom:1px solid #d7d7d7;
}

.list-text li:hover{
	background:#faedec;
}

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


.list-text.hover-style2 li:hover{
	background:#ffffff;
}
.list-text li a{
	font-size: 16px;
}
.list-text li a:hover{
	color:#047cc4;
}
.list-text li .title{
	display: block;
	font-size: 16px;
}

.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{
	color:#333333;
	padding-right:15px;
	padding-top:6px;
	line-height: 20px;
	font-size: 14px;
	font-weight:100;
	width:100px;
	text-align: right;
	position: relative;
	z-index: 3;
}
.list-text .time-left .day{
	font-size: 20px;
}
.list-text .time-left2{
	padding-top:5px;
	color:#b90509;
	text-align: center;
	font-size: 22px;
	line-height: 18px;
	width:60px;
	height:50px;
	position: relative;
	z-index: 3;
}
.list-text .time-left2 .day{
	font-weight:bold;
}
.list-text .time-left2 .year{
	font-size:12px;
}
.list-text .time-left2.decorate{
	border-right:1px solid #666666;
}
.list-text .time-left3{
	padding-top:5px;
	color:#b90509;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
	width:120px;
	position: relative;
	z-index: 3;
}
.list-text .time-left3 .day{
	font-weight:bold;
}
.list-text .time-left3 .year{
	font-size:12px;
}

.list-text .media-body{
	padding-left:10px;
	position: relative;
	z-index: 3;
}

.list-text .media-body .title{
	color:#333333;
	font-size: 15px;
	line-height: 1.5em;
}
.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 .img{
	width:200px;
}
.list-media .title{
	font-size: 18px;
	line-height: 24px;
}
.list-media .summary{
	font-size:14px;
	color:#999999;
}
.list-media .time{
	font-size:14px;
}


.news-list ul li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.news-list ul li .title{
	font-weight: bold;
}
.news-list ul li:first-child {
	border-top: 1px solid transparent
}

.news-list ul li.cur {
	border-top: 1px solid transparent
}

.news-list ul li.cur+li {
	border-top: 1px solid transparent
}


.news-list  ul li.cur .title{
	color: #b90509;
}
.news-list  ul li.cur .media-body{
	border-left:1px solid #333333;
}

.news-list  ul li .desc {
	display: none;
	font-size: 14px;
	color: #333333;
	opacity: .7;
	line-height: 1.6em
}
.news-list ul li.cur .desc {
	display: block;
	position: relative;
	z-index: 3
}
.news-list  ul li:after {
	background:#faedec no-repeat center;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	z-index: 0;
}

.news-list  ul li.cur:after {
	width: 100%;
	transition: .5s;
	border-left:4px solid #b90509;
}

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

.sidebar {
	background-color:#f9f9f9;
	position: relative;
	z-index: 10;
	min-height: 800px;
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important
}

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

.side-nav .nav-item.active {
	width:100%;
	background:#f3e0e2;
	color:#b9040b;
	border-left:3px solid #b9040b;
}

.side-nav .nav-item:after,
.side-nav .nav-item.active:after,
.side-nav .nav-item:hover::after{
	content: "\e929";
	font-family: 'feather';
	position: absolute;
	right: 5px;
	top:12px;
}
.side-nav .nav-item.down:after,
.side-nav .nav-item.down.active:after,
.side-nav .nav-item.down:hover::after{
	content: "\e927";
	font-family: 'feather';
	position: absolute;
	right: 5px;
	top:12px;
}

.side-nav .nav-item:hover{
	width:100%;
	position: relative;
	background:#f3e0e2;
	color:#b9040b;
	border-left:3px solid #b9040b;
}
.side-nav .nav-item:hover .nav-link,
.side-nav .nav-item.active .nav-link{
	color:#b9040b;

}

.sidebar-title {
	width:100%;
	background:#b90409 ;
}
.sidebar-title:before{
	content: "";
	position: absolute;
	top:-10px;
	left:10px;
	height:10px;
	width:calc(100% - 20px);
	background:rgba(185,5,9,0.1);
}
.sidebar-title h3{
	margin:0;
	font-weight: bold;
	font-size: 28px;
	padding:25px 0;
	text-align: center;
	color:#ffffff;
}

.sidebar-title2{
	border-radius: 5px;
	padding:15px 20px;
	font-size: 24px;
	color:#ffffff;
	background:var(--thm-base);
}
.sidebar-title2 h3{
	font-size:20px;
	padding: 0;
	margin: 0;
}
.nav3 .nav_item{
	padding-left:53px;
}
.nav3 .nav_item.active{
	background-image:url(../images/next.png);
	background-repeat: no-repeat;
	background-position: 20px 10px;
}



.sub-bg{
	background-image:url("../images/bg-sub-main.jpg");
	background-repeat: repeat-x;
	background-position: top;
}

.section2{
	background-color:#ffffff;
	background-image:url("../images/bg-mid-1.jpg");
	background-repeat: repeat-x;
	background-position: bottom;
}
.section2 .card{
	border-radius: 0;
	border:none;
}
.section2 .block-title{
	position: relative;
}
.section2 .block-title-title{
	margin-left:-25px;
	padding-left:25px;
}

.section-sub-container{
	background-color:#ffffff;
	background-repeat: repeat-x;
	background-position: bottom;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-one {
	padding-top: 150px;
	padding-bottom: 120px;
}

.blog-one__top {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 55px;
}

.blog-one__single {
	background: #ffffff;
	margin-bottom:30px;
}

.blog-one__image {
	overflow: hidden;
	background-color: #b90509;
}

.blog-one__image>img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__image>img {
	opacity: 0.5;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.blog-one__date {
	display: inline-block;
	vertical-align: middle;
	color: #252930;
	line-height: 45px;
	padding-left: 20px;
	padding-right: 20px;
	background-color:rgba(255,255,255,0.5);
	position: absolute;
	top: 35px;
	left: 40px;
	text-transform: uppercase;
}

.blog-one__date i {
	color: #b90509;
	margin-right: 4px;
}

.blog-one__content {
	position: relative;
	height: 200px;
	overflow-y:hidden ;
	padding-top: 30px;
	padding-bottom: 25px;
	padding-left: 20px;
	padding-right: 20px;
	box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);
}

.blog-one__content::before {
	content: "";
	width: 2px;
	height: 40px;
	background-color:#b90509;
	position: absolute;
	top: -20px;
	right: 40px;
	z-index: 10;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__content::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.blog-one__meta {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin: 0;
	margin-bottom: 5px;
}

.blog-one__meta li {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	color:#b90509;
	text-transform: uppercase;
	font-size: 14px;
}

.blog-one__meta li a {
	color: inherit;
}

.blog-one__meta li+li:before {
	content: "|";
	margin-left: 14px;
	margin-right: 14px;
}

.blog-one__content h3 {
	margin: 0;
	font-size: 20px;
	line-height: 34px;
	color:#b90509;
	margin-bottom: 15px;
}

.blog-one__content h3 a {
	color: inherit;
	-webkit-transition: 500ms;
	transition: 500ms;
}

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

.blog-one__content p {
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	color: #848484;
	margin-bottom: 10px;
}

.blog-one__link {
	color: #252930;
	font-size: 14px;
	font-weight: thin;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
	display: inline-block;
}

.blog-one__link::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color:#b90509;
	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;
}

.blog-one__link:hover {
	color: #b90509;
}

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

/*testi-area*/
.testi-area {
	padding: 0 0 50px
}
.testi-area .block-title:before{
	content: "";
	position: absolute;
	top:-20px;
	left:0;
	width:100%;
	height:0px;
	background:transparent!important;
}
.testi-area .block-title{
	margin-bottom:30px;
}
.testi-area .block-title .block-title-title{
	position: relative;
	margin:0 auto;
	width:100px;

}
.testi-area .block-title .block-title-title:after{
	content: "";
	position: absolute;
	bottom:-8px;
	left:26px;
	height:2px;
	width:45px;
	background: #0160b0;

}
.testi-carousel {
	left:0;
}
.testi-single {
	position: relative;
}
.testi-single img{
	filter: brightness(50%);
}
.testi-single:hover img{
	filter: brightness(100%);
}
.testi-single .caption{
	cursor: pointer;
	color:#ffffff;
	position: relative;
	margin-top:-160px;
	margin-bottom:100px;
	z-index: 10;
	text-align: center;
}
.testi-single:hover .caption{
	display: none;
}
.testi-single .caption .title{
	color:#ffffff;
	font-size: 24px;
	font-weight: bold;
}
.testi-single .caption p{
	padding:0 20px;
	font-size: 16px;

}
.testi-carousel.owl-carousel{
	padding:0;
}
.testi-carousel.owl-carousel .owl-nav > div {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	border-radius: 4px;
	margin-left: 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border: 1px solid rgba(229, 240, 255, 0.5);
	background-color: #ebebeb;
	color: #ea551d;
}


.testi-carousel.owl-carousel .owl-nav .owl-next {
	color: #ea551d;
	left: 60px;
}

.testi-carousel.owl-carousel .owl-nav > div:hover {
	background-color: #ea551d;
	color: #fff
}

.testi-carousel-two .owl-dots {
	position: absolute;
	left: 0;
	bottom: -70px;
	text-align: center;
	right: 0
}

.testi-carousel-two .owl-dots .owl-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0 4px;
	display: inline-block;
	text-align: center;
	border: 2px solid #ea551d;
}

.testi-carousel-two .owl-dots .owl-dot.active {
	background-color: #ea551d
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {

}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.testi-area {
		padding: 90px 0 140px;
	}

}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.testi-area {
		padding: 80px 0 130px;
	}

}

@media only screen and (min-width: 360px) and (max-width: 479px) {

	.testi-area {
		padding: 80px 0 130px;
	}
	.testi-single {
		margin: 20px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 359px) {

	.testi-area {
		padding: 80px 0 130px;
	}
	.testi-single {
		margin: 20px;
	}
}
