@charset "utf-8";

@keyframes ripple {
	0% {
		transform: scale(1)
	}

	75% {
		transform: scale(1.75);
		opacity: 1
	}

	100% {
		transform: scale(2);
		opacity: 0
	}
}

@keyframes shine {
	100% {
		left: 125%
	}
}

@keyframes fadeHeaderInDown {
	0% {
		opacity: 0;
		transform: translate3d(0,-100%,0)
	}

	100% {
		opacity: 1;
		transform: translate3d(0,0,0)
	}
}

@keyframes scale {
	50% {
		transform: scale(1.2)
	}
}

@keyframes slideTopDown {
	0% {
		transform: translateY(0)
	}

	100% {
		transform: translateY(-6px)
	}
}

.pro-tit p{
	text-align:center;
}
.product_show_nav{
	box-shadow: 3px 3px 3px 3px #fafafa;
}


html {
	overflow: hidden
}

html.overflow {
	overflow-x: hidden;
	overflow-y: visible
}

button:focus,*:focus {
	outline: 0
}

body {
	font-family: '微软雅黑',sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	color: #333;
	background: #fff;
	border-color: #dfdfdf;
	transition: transform ease-in .4s;
	overflow-x: hidden
}

button {
	background: transparent;
	border: 0;
	padding: 0
}

label {
	line-height: normal
}
/********************product***********************************************/

.product_banner{
	height:450px;
	width:100%;
	background:url(../images/product.jpg) center no-repeat;
	background-size:100% 100%;
	position:relative;
}

.text {
    position: absolute;
    width: 84%;
    color: #fff;
    text-align: center;
    top: 55%;
    left: 50%;
    line-height: 1.6;
    transform: translate(-50%, -50%);
    z-index: 4;
	
}
.ad-tit{
	color:#FFF;
    font-weight: normal;
    line-height: 1.6;
	font-size:30px;
}
.ad-sum {
    font-size: 16px;
}
.ad-sum{
	color:#FFF;
    font-weight: bold;
    line-height: 1.6;
}
.ad-line {
    height: 2px;
    width: 3%;
    background: #fff;
	margin: 0.8% auto;
}
.product_nav ul{
	background:#eef2f5;
}
.product_nav ul li{
	position: static;
    display: inline-block;
    color: #fff;
    width: auto;
    vertical-align: top;
}
.product_nav ul li a {
    position: relative;
    font-size: 16px;
    height: 80px;
    line-height: 80px;
    padding: 0px 30px;
    color: #222;
    display: block;
    transition: 0.3s ease 0s;
}
.product_nav ul li a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    display: block;
    background: #ccc;
    top: 50%;
    margin-top: -7px;
    right: 0px;
}
.product_nav ul li a:hover {
    color: #b60005;
}
.product_nav ul li a:before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0px;
    width: 0%;
    height: 3px;
    background-color: none;
    transition: all .3s;
}
.product_nav ul li a:hover:before {
    width: 80%;
    left: 10%;
    background-color: #b60005;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product_list{
	width:95%;
	margin:4rem auto;
}
.product_list ul li{
	width: calc(100% / 4);
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
	
}
.porTbox {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding-bottom: 75%;
}
.proImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
}
.showBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(182,0,5,.8);
    transition: all 0.5s ease;
}
.showBoxLink {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 60%;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0;
}
.showBoxLink::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}
.showBoxLink::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: #fff;
    transition: all .5s ease;
}
.porBbox {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 20px 20px 10px;
    border: 1px solid #f2f2f2;
}
.proTitle {
    font-size: 1rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 10px;
}
.proSummry {
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    margin: 10px 0;
    text-overflow: ellipsis;
    display: none;
}
.lookDetail {
    position: relative;
    display: block;
    color: #777;
    height: 38px;
    line-height: 38px;
    border-top: 1px solid #e5e5e5;
}
.product_list ul li:hover .showBox {
    opacity: 1;
}
.product_list ul li:hover .showBoxLink::before {
    width: 1rem;
}
.product_list ul li:hover .showBoxLink::after {
    width: 1rem;
}
.product_list ul li .porTbox a:hover{
	color:#FFF;
}
.arrowsR {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
    width: 30px;
}
.lookDetail .barr{
	position: absolute;
}
.harr {
    opacity: 0;
}
.lookDetail:hover .barr {
    opacity: 0;
}
.lookDetail:hover .harr {
    opacity: 1;
}
.e_pagebox  {
    margin: 0;
    width: auto;
    height: auto;
    border: none;
    overflow: hidden;
    text-align: center;
}
.p_page {clear:both;}
.p_page .fy{
    display: inline-block;
    padding: 5px 15px;
}
.p_page .active{
    padding: 5px 15px;
	color: #fff;
    border-color: #b60005;
    cursor: pointer;
    text-decoration: none;
    background-color: #b60005;
}
.p_page .pre1 {
    color: rgba(255,255,255,1)!important;
    background-color: #c8c8c8!important;
    cursor: not-allowed!important;
    border: none!important;
}
.p_page .pageNum:hover {
    color: #fff;
    border-color: #b60005;
    cursor: pointer;
    text-decoration: none;
    background-color: #b60005;
}
.p_page .next:hover {
    background: #b60005;
    border-color: #b60005;
    color: #fff;
    cursor: pointer;
}
/********************product end***********************************************/


/********************product show***********************************************/
.product-info {
    width: 45%;
    float:right;
}
.product-info h1::before {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 1px;
    left: 0;
    background: #dce3ef;
    width: 200%;
}
.product-info h1 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
	font-weight:500;
    position: relative;
    display: table;
    border-bottom: 3px solid #dce3ef;
}
.product-info .product-info-txt {
    margin-top: 2rem;
	font-size:16px;
	color:#333;
}
.product-info .product-info-online, .case-box .product-info-online {
    margin-top: 2rem;
    overflow: hidden;
}
.product-info .product-info-online a, .case-box .product-info-online a {
    text-align: center;
    float: left;
    vertical-align: middle;
    width: 50%;
    height: 50px;
    line-height: 50px;
}
.product-info .product-info-online a.swt, .case-box .product-info-online a.swt {
    background: #d70c25;
    color: #fff;
    border: 1px solid #d70c25;
    font-size: 1rem;
}
.product-info .product-info-online a.tel, .case-box .product-info-online a.tel {
    border: 1px solid #d70c25;
    color: #d70c25;
    font-size: 1.15rem;
}
.product-info .product-info-online a i, .case-box .product-info-online a i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.product_show_nav{
	margin:30px 0;
	background: #ecf1f5;
    overflow: hidden;
    padding: 1rem 0;
}
.product_show_nav li{
	float: left;
    padding: 0 1rem;
    border-right: 1px solid #b1b4b6;
    cursor: pointer;
}
ul, ol, li {
    list-style: none;
}
.product_lista .scroll {
    padding: 0 0 3rem 0;
    overflow: hidden;
}
.product_lista .scroll .tit {
    font-size: 2rem;
    text-align: center;
}
.product_lista .scroll .tit hr {
    display: table;
    margin: 1rem auto 1.5rem;
    background: #c2c8d0;
    height: 3px;
    width: 80px;
}
.containera {
    width:1200px!important;
    margin: 0 auto;
	max-width:1200px!important;
}
.product_show_table table {
    border-right: 1px solid #c6ccd4;
    border-bottom: 1px solid #c6ccd4;
    text-align: center;
    vertical-align: middle;
}
.product_show_table tr td:first-child {
	width:20%;
    font-size: 16px;
    font-weight: bold;
}
.product_show_table tr td:first-child {
	width:20%;
    font-size: 16px;
}
.product_show_table tr td:nth-child(odd){
	width:20%;
    font-size: 16px;
}
.product_show_table tr:nth-child(odd) td {
    background: #f1f5f8;
}
.scroll_3{
	width:80%;
	margin:0 auto;
}
.scroll_3 ul li{
	width:30%;
	margin-left:2%;
	margin-bottom:2%;
	display:inline-block;
}
.scroll_3 .tit {
	padding-top:15px;
    font-size: 2rem;
    text-align: center;
}
.scroll_3 .tit hr {
    display: table;
    margin: 1rem auto 1.5rem;
    background: #c2c8d0;
    height: 3px;
    width: 80px;
}
.product_tjtitle{
	height:70px;
	line-height:70px;
	border-bottom:#d70c25 1px solid;
	font-size: 22px;
    font-family: 微软雅黑, SimSun;
    color: rgb(0, 0, 0);
	margin-bottom:30px;
}
.pro-container{
	margin:0;
	padding:0;
}

.pro-container li.col-lg-4 {
    width: calc((100% - 5px * 3) / 4);
	padding:10px;
	height:auto;
	float:left;
	margin-bottom:15px;
}
.pro-container li .pro-img {
    list-style-type: none;
    display: block;
    overflow: hidden;
    position: relative;
}

.pro-container li .pro-tit {
    /* height: 100px; */
    width: 80%;
    margin: 0 auto;
}
.pro-container li .pro-tit .hr-line {
    margin: 16px 0px 0px 0px;
    border-top: 0px;
}
.pro-container .pro-name {
    margin-bottom: 16px;
	line-height:20px;
}
.pro-container .pro-buybtn{
	border:#d70c25 1px solid;
	height:40px;
	line-height:40px;
	text-align:center;
	margin: 0 auto 50px auto;
    text-align: center;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pro-container li:hover {
    box-shadow: 0px 0px 10px rgb(214 213 213);
    top: -10px;
    box-sizing: border-box;
}
.pro-container li:hover .pro-buybtn{
	background:#d70c25;
	color:#FFF;
}
/********************product show end***********************************************/

/********************jssl***********************************************/
.jssl_nav{
	background-color: rgba(0, 0, 0, 0.3);
	height:50px;
	line-height:50px;
	position:relative;
	top:-50px;
}
.jssl_nav ul{
	padding:0px;
	width:1200px;
	margin:0 auto;
}
.jssl_nav li{
	display:inline-block;
	padding:0 30px;
	border-right: #888888 1px solid;
}
.jssl_nav li a{
	color:#fff;
}
.w1200{
	max-width:85%;
	margin:0 auto;
}
.jssl_a{
	text-align:center;
}
.jssl_atitle{
	font-size:2.2rem;
	font-weight:bolder;
	line-height:3rem;
}
.sxy_in_news_tj_right img{
	max-width:none;
}
.fwln_left img{
	max-width:none;
}
/********************jssl end***********************************************/

.menu-open {
	background-color: #000ab
}

.align-item-center {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column
}

.p-relative {
	position: relative
}

.custom-container {
	/* padding-right: 80px; */
	padding-left: 80px
}

.before-none:before,.after-none:after,.none {
	display: none
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%
}

.overlay-bg {
	background: #000;
	opacity: .5
}

.overlay-2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%
}

.image-fit {
	width: 100%;
	object-fit: cover;
	object-position: center
}

.transform-center {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0%,-50%);
	z-index: 1
}[class^="flaticon-"]:before,[class*=" flaticon-"]:before {
	font-size: inherit;
	margin: 0
}

.animate-img {
	position: relative;
	overflow: hidden
}

.animate-img:hover img {
	transform: scale(1.01);
	transition: .5s
}

.loader {
	overflow: hidden
}

.preloader {
	background: #E60013;
	height: 100vh;
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 99;
	overflow: hidden
}

.preloader img {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	margin: 0 auto
}

.section-header {
	max-width: 80%;
	padding-bottom: 30px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 10
}

.section-header .section-heading {
	position: relative
}

.section-header .section-heading:after {
	content: "";
	height: 2px;
	width: 80px;
	background-color: #E60013;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	margin: 0 auto
}

.section-header .section-heading h5 {
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size:35px;
	color:#E60013;
}

.section-header .section-heading h3 {
	padding-bottom: 20px;
	font-weight: 600;
	font-family: Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', Arial, sans-serif;
	color:#333;
}

.section-header .section-description {
	margin-bottom: 20px;
	position: relative
}

.section-header-right {
	max-width: 550px;
	padding-bottom: 30px;
	text-align: right
}

.section-header-right .section-heading {
	position: relative
}

.section-header-right .section-heading:after {
	content: "";
	height: 5px;
	width: 80px;
	background-color: #E60013;
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	margin: 0 0 0 auto
}

.section-header-right .section-heading h5 {
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase
}

.section-header-right .section-heading h3 {
	padding-bottom: 20px;
	font-weight: 600
}

.section-header-right .section-description {
	margin-bottom: 20px;
	position: relative
}

.custom-tooltip:after,.custom-tooltip:before {
	content: attr(data-tip);
	color: #fff;
	background-color: #000;
	font-size: 12px;
	line-height: 20px;
	border-radius: 3px;
	padding: 0 5px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	top: -30px
}

.custom-tooltip:after {
	content: '';
	height: 15px;
	width: 15px;
	border-radius: 0;
	transform: translateX(-50%) rotate(45deg);
	top: -22px;
	z-index: -1
}

.custom-tooltip:hover:before,.custom-tooltip:hover:after {
	opacity: 1
}

.property-tag-1:after {
	position: absolute;
	content: '';
	display: block;
	left: 100%;
	top: 0;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 13px solid;
	border-left-color: #030e27;
	border-right-color: #030e27
}

.property-tag-1 {
	float: left
}

.property-tag-2 {
	float: right
}

.property-tag-1,.property-tag-2 {
	display: inline-block;
	padding: 8px 15px;
	position: relative;
	line-height: 10px;
	font-size: 16px;
	position: relative
}

.property-tag-2:after {
	position: absolute;
	content: '';
	display: block;
	right: 100%;
	top: 0;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-right: 13px solid;
	border-left-color: #E60013;
	border-right-color: #E60013
}

.swiper-button-next:after,.swiper-button-prev:after {
	display: none
}

.swiper-button-next span,.swiper-button-prev span {
	font-size: 22px;
	background: transparent;
	border: 1px solid transparent;
	color: #E60013;
	padding: 0 10px;
	position: relative
}

.swiper-button-prev span:after,.swiper-button-next span:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 10%;
	height: 100%;
	z-index: -1;
	background-color: transparent;
	transition: .5s all
}

.swiper-button-prev span:after {
	background-color: #030e27;
	left: auto;
	right: 0
}

.slider-btn {
	position: absolute;
	top: -70px;
	left: 15px;
	right: 15px
}

.swiper-button-next span {
	border-color: #E60013;
	color: #E60013
}

.swiper-button-prev:hover span:after,.swiper-button-next:hover span:after {
	width: 100%
}

.swiper-button-prev:hover span,.swiper-button-next:hover span {
	color: #fff
}

.swiper-pagination {
	transform: translate(0%,50%);
	position: absolute;
	left: 0;
	bottom: -5%;
	right: 0;
	display: none
}

.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 12px;
	height: 6px;
	display: inline-block;
	border-radius: 10px;
	background: #E60013;
	margin-right: 10px;
	transition: .6s;
	border: 2px solid #E60013;
	position: relative;
	top: 5px
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 24px;
	height: 6px;
	border-radius: 50px;
	opacity: 1;
	background: #E60013
}

.swiper-pagination-bullets .swiper-pagination-bullet:focus {
	outline: 0
}

.swiper-slide .our_articles .post,.swiper-slide .property-grid-box {
	margin: 2px
}

.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin-top: 20px
}

.slick-dots li {
	padding: 0;
	line-height: 0
}

.slick-dots li button {
	font-size: 0;
	width: 12px;
	height: 6px;
	border-radius: 10px;
	background: #E60013;
	margin: 0 5px;
	transition: .6s all;
	border: 2px solid #E60013
}

.slick-dots li.slick-active button {
	width: 24px;
	height: 6px;
	border-radius: 50px
}

.page-item:first-child .page-link,.page-item:last-child .page-link,.page-item .page-link {
	border-radius: 0
}

.page-link:focus {
	box-shadow: none;
	z-index: 1
}

.page-item .page-link {
	padding: 8px 20px;
	font-size: 16px;
	line-height: 1.5;
	border: 2px solid #eee;
	color: #111
}

.page-item:hover .page-link,.page-item.active .page-link {
	background-color: #E60013;
	border-color: #E60013;
	color: #fff
}

.arrow-shape-1,.arrow-shape-2 {
	position: relative;
	transition: 1s all
}

.arrow-shape-1:after {
	content: '';
	border-width: 40px;
	border-color: #fff #D46240 #D46240 #fff;
	border-style: solid;
	position: absolute;
	left: 0;
	top: 0;
	transition: 1s all
}

.arrow-shape-2:after {
	content: '';
	border-width: 40px;
	border-color: #fff #fff #D46240 #D46240;
	border-style: solid;
	position: absolute;
	right: 0;
	top: 0;
	transition: 1s all
}

h1,h2,h3,h4,h5,h6 {
	margin: 0 0 20px;
	font-family: 'Barlow Condensed',sans-serif;
	font-weight: 600;
	color: #111
}

h1 {
	font-size: 90px;
	line-height: normal
}

h2 {
	font-size: 35px
}

h3 {
	font-size: 30px
}

h4 {
	font-size: 26px
}

h5 {
	font-size: 18px
}

h6 {
	font-size: 16px
}

p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
	font-family: 'Rubik',sans-serif
}

a {
	color:#333;
	text-decoration: none;
	transition: .5s
}

a:focus,a:hover {
	color: #E60013;
	text-decoration: none;
	transition: .5s
}

dl,ol,ul {
	margin-top: 0;
	margin-bottom: 0
}

ul li,ol li {
	margin: 0;
	position: relative
}

ul.custom {
	list-style: none;
	padding: 0
}

blockquote {
	background-color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	padding: 30px
}

blockquote span {
	width: 50px;
	height: 50px;
	border: 2px solid #E60013;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-size: 16px;
	margin-right: 15px
}

blockquote p {
	font-size: 16px;
	font-style: italic;
	margin: 0;
	font-weight: 500;
	word-break: break-word;
	margin-bottom: 0
}

blockquote h6 {
	color: #000;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px
}

iframe {
	border: 0;
	width: 100%
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	transition: .5s
}

table th,table td {
	border: 1px solid #dfdfdf;
	padding: 15px
}

table {
	border: 1px solid #dfdfdf;
	padding: 15px;
	width: 100%
}

.fs-12 {
	font-size: 12px
}

.fs-14 {
	font-size: 16px
}

.fs-16 {
	font-size: 16px
}

.fs-18 {
	font-size: 18px
}

.fs-20 {
	font-size: 20px
}

.fw-100 {
	font-weight: 100
}

.fw-400 {
	font-weight: 400
}

.fw-500 {
	font-weight: 500
}

.fw-600 {
	font-weight: 600
}

.fw-700 {
	font-weight: 900
}

.no-margin {
	margin: 0
}

.no-padding {
	padding: 0
}

.full-width {
	width: 100%
}

.full-height {
	height: 100%
}

.section-padding {
	padding: 80px 0
}

.section-padding-top {
	padding-top: 80px
}

.section-padding-bottom {
	padding-bottom: 80px
}

.padding-10 {
	padding: 10px
}

.padding-15 {
	padding: 15px
}

.padding-20 {
	padding: 20px
}

.mb-xl-20 {
	margin-bottom: 20px
}

.mb-xl-30 {
	margin-bottom: 30px
}

.mb-xl-40 {
	margin-bottom: 40px
}

.pb-xl-20 {
	padding-bottom: 20px
}

.form-group {
	margin-bottom: 20px
}

.form-control-custom::placeholder {
	font-size: 16px
}

.form-control-custom {
	height: 50px;
	padding: .375rem 1.2rem;
	border-radius: 0;
	border: 2px solid #f0f0ff;
	width: 100%;
	background: 0
}

.form-control-custom:focus {
	border: 2px solid #f0f0ff;
	border-bottom: 2px solid #E60013;
	box-shadow: none
}

.custom-select {
	background-image: none
}

.custom-select:focus {
	box-shadow: none
}

label.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0
}

label.custom-checkbox {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	cursor: pointer;
	user-select: none;
	line-height: normal;
	font-size: 16px
}

label.custom-checkbox:last-child {
	margin-bottom: 10px
}

label.custom-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #ccc;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 0
}

label.custom-checkbox:hover input ~ .checkmark {
	background-color: #fff;
	border: 1px solid #E60013
}

label.custom-checkbox input:checked ~ .checkmark {
	background-color: #E60013;
	border: 1px solid #E60013
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none
}

label.custom-checkbox input:checked ~ .checkmark:after {
	display: block
}

label.custom-checkbox .checkmark:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg)
}

.btn-height {
	height: 50px
}

.btn-first {
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	overflow: hidden;
	text-shadow: none;
	cursor: pointer;
	border: 2px solid transparent;
	padding: 0 25px;
	line-height: 44px;
	border-radius: 0;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	z-index: 1;
	user-select: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.btn-submit {
	background-color: transparent;
	color: #111;
	border-color: #E60013;
	transition: .5s all
}

.btn-submit:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 10%;
	height: 100%;
	z-index: -1;
	background-color: #E60013;
	transition: .5s all
}

.btn-submit:focus:before,.btn-submit:hover:before {
	width: 100%
}

.btn-submit:focus,.btn-submit:hover {
	color: #fff
}

.btn-transparent {
	background-color: #fff;
	color: #111;
	border: 2px solid #fff;
	transition: .5s all
}

.btn-transparent:focus,.btn-transparent:hover {
	background-color: transparent;
	color: #fff;
	transition: .5s all
}

.btn-border {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	transition: .5s all
}

.btn-border:focus,.btn-border:hover {
	color: #111;
	background-color: #fff
}

.small-btn {
	padding: 0 10px;
	position: relative;
	z-index: 10;
	font-size: 22px;
	border: .1px solid #E60013;
	color: #fff
}

.small-btn:hover {
	color: #fff
}

.small-btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 10%;
	height: 100%;
	z-index: -1;
	background-color: #E60013;
	transition: .5s all
}

.small-btn:hover:after {
	width: 100%
}

.bg-custom-black {
	background-color: #030e27
}

.bg-custom-white {
	background-color: #fff
}

.bg-light-white {
	background-color: #f4f4f4
}

.bg-theme {
	background-color: #030e27
}

.bg-custom-blue {
	background-color: #E60013
}

.text-custom-black {
	color: #000
}

.text-light-white {
	color: #7c8a97
}

.text-dark-grey {
	color: #030e27
}

.text-theme {
	color: #111
}

.text-custom-blue {
	color: #E60013
}

.text-custom-white {
	color: #fff
}

.text-custom-yellow {
	color: #ff9600
}

.border-red {
	border: 1px solid #f00;
	background-color: #f00
}

.border-black {
	border: 1px solid #000;
	background-color: #000
}

.border-orange {
	border: 1px solid #E60013;
	background-color: #E60013
}

.border-brown {
	border: 1px solid #A04000;
	background-color: #A04000
}

.border-yellow {
	border: 1px solid #ff9600;
	background-color: #ff9600
}

.border-blue {
	border: 1px solid #134EEC;
	background-color: #134EEC
}

.border-green {
	border: 1px solid #1FE51F;
	background-color: #1FE51F
}

.border-pink {
	border: 1px solid #EC13E9;
	background-color: #EC13E9
}

.cluster div {
	background: #E60013;
	border-radius: 100%;
	height: 50px;
	line-height: 38px;
	box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center
}

.map-popup-wrap {
	display: block;
	width: 300px!important;
	position: relative
}

.map-popup-wrap:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	margin-top: -1px;
	z-index: 20
}

.map-popup-wrap:before {
	border-color: transparent;
	border-top-color: #fff;
	border-width: 15px;
	margin-left: -15px
}

.map-popup {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 9px 16px rgba(58,87,135,0.15)
}

.map-popup-category,.infoBox-close {
	background: #E60013
}

.infoBox-close {
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	top: 20px;
	right: 20px;
	color: #fff;
	border-radius: 100%;
	z-index: 20;
	box-shadow: 0 0 0 5px rgba(255,255,255,0.4);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center
}

.map-popup-category {
	position: absolute;
	top: 20px;
	left: 20px;
	font-weight: 500;
	color: #fff;
	z-index: 20;
	padding: 10px 12px;
	border-radius: 4px;
	box-shadow: 0 0 0 3px rgba(255,255,255,0.2)
}

.listing-img-content {
	overflow: hidden
}

.fl-wrap {
	float: left;
	width: 100%;
	position: relative
}

.listing-img-content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #292929;
	opacity: .3
}

.map-popup img {
	width: 100%;
	height: auto;
	transform: translateZ(0);
	transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms
}

.listing-content {
	background: #fff;
	padding: 20px;
	padding-bottom: 0;
	z-index: 20
}

.listing-title h4 {
	font-size: 18px
}

.listing-title h4 span {
	position: relative
}

.map-popup .property-address {
	position: absolute;
	top: 180px;
	padding: 0 10px;
	z-index: 10
}

.map-popup .property-address a {
	color: #fff;
	font-size: 12px;
	line-height: 1.8
}

.map-popup .property-address a i {
	margin-right: 5px
}

.map-popup .property-address:after {
	position: absolute;
	content: '';
	display: block;
	left: 100%;
	top: 0;
	border-top: 21px solid transparent;
	border-left: 21px solid;
	border-left-color: #E60013
}

.map-popup .price {
	display: flex;
	align-items: center
}

.map-popup .price span {
	font-size: 80%;
	margin-left: 4px
}

.map-popup .property-feature {
	columns: 2;
	padding-bottom: 10px
}

.map-popup .property-feature li {
	padding: 0 0 10px 0
}

.map-popup .property-feature li i {
	font-size: 16px;
	margin-right: 5px;
	color: #030e27
}

.map-popup .property-feature li span {
	font-size: 16px;
	color: #111;
	font-weight: 400
}

.infoBox-close>.fa-times {
	font-size: 18px;
	font-style: normal
}

.infoBox-close>.fa-times:before {
	content: 'x'
}

.modal.show .modal-dialog {
	max-width: 400px
}

.modal-body {
	padding: 0
}

.login-register .nav-tabs {
	justify-content: center;
	border: 0
}

.login-register .nav-tabs .nav-item {
	width: 50%;
	text-align: center;
	border-right: 2px solid #ccc
}

.login-register .nav-tabs .nav-item:last-child {
	border-right: 0
}

.login-register .nav-tabs .nav-link:focus,.login-register .nav-tabs .nav-link:hover,.login-register .nav-tabs .nav-link {
	border-radius: 0;
	border: 0;
	font-size: 16px;
	font-weight: 600;
	color: #111;
	border-bottom: 2px solid #ccc;
	padding: 10px 0
}

.login-register .nav-tabs .nav-link.active {
	border-bottom: 2px solid transparent;
	color: #E60013
}

.login-register .social-links ul {
	display: flex;
	justify-content: center
}

.login-register .social-links ul li a {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #E60013;
	border-radius: 50%;
	margin: 0 5px;
	border: 1px solid #E60013
}

.login-register .social-links ul li a:hover {
	background-color: #E60013;
	color: #fff
}

.login-register .decleration {
	max-width: 250px;
	margin: 0 auto;
	text-align: center
}

.custom-accordion .card {
	background: #fff;
	border-color: #fff;
	border-radius: 0
}

.custom-accordion .card .card-header {
	padding: 0;
	background: #ededed;
	border-color: #ededed;
	border-radius: 0
}

.custom-accordion .card .card-header .collapsebtn {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	align-items: center;
	padding: 10px 15px;
	width: 100%;
	background: #E60013;
	color: #fff;
	cursor: pointer
}

.custom-accordion .card .card-header .collapsebtn.collapsed {
	background: #ededed;
	border-color: #ededed;
	color: #111
}

.custom-accordion .card .card-header .collapsebtn:before {
	content: '-';
	background: #fff;
	color: #E60013;
	width: 20px;
	height: 20px;
	margin-right: 15px;
	font-size: 20px;
	display: flex;
	align-items: center;
	line-height: 16px;
	justify-content: center
}

.custom-accordion .card .card-header .collapsebtn.collapsed:before {
	content: '+';
	background: #111;
	color: #fff
}

.custom-accordion .card .card-body {
	padding: 15px 0
}

.main-map-box {
	height: 800px;
	position: relative
}

.main-map-box #map-main {
	height: 100%
}

.map-search-box {
	width: 350px;
	transition: .5s all;
	left: -350px
}

.map-search-box.active {
	left: 0
}

.map-search-box .float-btn {
	position: absolute;
	top: 70px;
	right: -50px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.05)
}

.map-search-box .float-btn .float-btn-inner i {
	font-size: 30px;
	padding: 0 10px
}

.map-search-box .float-btn .float-btn-inner img {
	width: 50px;
	height: 50px;
	padding: 10px
}

.topbar {
	padding-bottom: 10px
}

.topbar .right-side,.topbar .left-side {
	padding: 10px 0 0
}

.topbar .left-side ul {
	display: flex;
	align-self: flex-start
}

.topbar .left-side li {
	margin-right: 20px
}

.topbar .left-side li a {
	color: #fff
}

.topbar .left-side li a i {
	margin-right: 5px;
	color: #fff
}

.topbar .right-side ul {
	display: flex;
	align-self: flex-end;
	justify-content: flex-end
}

.topbar .right-side li {
	margin-left: 20px
}

.topbar .right-side li.language>select {
	background: transparent;
	color: #fff;
	font-size: 16px;
	border: 0;
	-webkit-appearance: none;
	line-height: 1
}

.topbar .right-side li.language>select>option {
	color: #111
}

.menu-style {
	transition: 1s all
}

.menu-style.sticky {
	animation-name: fadeHeaderInDown;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 22;
	background: #fff;
	animation-duration: 1s;
	animation-fill-mode: both;
	box-shadow: 0 0 8px rgba(0,0,0,0.1)
}

.topbar.fixed-top,.menu-style.fixed-header {
	position: fixed;
	top: 41px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	background: #fff
}

.topbar.fixed-top {
	top: 0;
	background-color: #111
}

.menu-open .menu-style,.menu-open .menu-style.fixed-header {
	background-color: #000ab
}

.menu-style .header {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.menu-style .header>.logo {
	width: 25%;
	
}

.menu-style .header>.logo img {
	

}



.menu-style .header .right-side {
	display: flex;
	position: relative;
    left: 110px;
}

.menu-style .header .right-side-2 .cta-btn {
	background-color: #E60013;
	position: relative
}

.menu-style .header .right-side-2 .cta-btn .cta-text {
	padding: 25px 0 25px 15px
}

.menu-style .header .right-side-2 .cta-btn .cta-text:before {
	content: '';
	display: block;
	right: 100%;
	position: absolute;
	bottom: 0;
	top: 0;
	border-top: 0 solid transparent;
	border-bottom: 0 solid transparent;
	border-right: 0 solid;
	border-left-color: #E60013;
	border-right-color: #E60013
}

.menu-style .header .right-side-2 .cta-btn .cta-text:after {
	content: '';
	display: block;
	background-color: #E60013;
	width: 1000%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0
}

.menu-style .header .right-side-2 .cta-btn .cta-text .addlisting-btn span {
	margin-left: 10px
}

.menu-style .header .right-side .hamburger-menu {
	display: none;
	align-items: center;
	cursor: pointer
}

.menu-style .header .right-side .hamburger-menu .menu-btn {
	transition: .3s
}

.menu-style .header .right-side .hamburger-menu .menu-btn span {
	background: #111;
	height: 2px;
	width: 25px;
	margin-bottom: 5px;
	display: block;
	transform: .3s
}

.menu-style .header .right-side .hamburger-menu .menu-btn span:last-child {
	margin-bottom: 0
}

.menu-style .header .right-side .hamburger-menu .menu-btn.active {
	position: relative;
	top: -4px;
	transition: .3s
}

.menu-style .header .right-side .hamburger-menu .menu-btn.active span:first-child {
	transform: rotate(45deg);
	transition: .3s;
	position: relative;
	top: 7.4px;
	background-color: #fff
}

.menu-style .header .right-side .hamburger-menu .menu-btn.active span:nth-child(2) {
	display: none
}

.menu-style .header .right-side .hamburger-menu .menu-btn.active span:last-child {
	transform: rotate(-45deg);
	transition: .3s;
	background-color: #fff
}

.menu-style .header .right-side .navigation .logo {
	display: none;
	margin: 10px 15px;
	width: 120px
}

.menu-style .header .right-side .navigation .social-media {
	display: none;
	position: fixed;
	left: -320px;
	right: 0;
	width: 320px;
	bottom: 0;
	transition: .5s all;
	background: #eee
}

.menu-style .header .right-side .navigation .social-media ul {
	display: flex
}

.menu-style .header .right-side .navigation .social-media ul li:first-child {
	border-left: 0
}

.menu-style .header .right-side .navigation .social-media ul li {
	width: 25%;
	float: left;
	position: relative;
	text-align: center;
	padding: 25px 0
}

.menu-style .header .right-side .navigation .social-media ul li a {
	display: flex;
	padding: 0;
	width: 25px;
	height: 25px;
	text-align: center;
	margin: 0 auto;
	background: #E60013;
	border-radius: 50%;
	align-items: center;
	justify-content: center
}

.menu-style .header .right-side .navigation .social-media ul li a:hover {
	color: #fff
}

.main-menu {
	display: flex
}

.main-menu>li.menu-item {
	padding: 10px 0
}

.main-menu>li.menu-item>a {
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	padding: 18px 20px;
	font-size:17px;
	color:#333
}

.main-menu>li.menu-item>a:after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #E60013;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%
}

.main-menu>li.menu-item:hover>a:after,.main-menu>li.menu-item.active>a:after {
	width: 70%;
	transition: .3s
}

.main-menu>li.menu-item.active>a {
	color: #E60013
}


.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 100%;
    left: -25%;
    right: 0;
    transform: translateY(-10px);
    border-bottom: solid 2px #E60013;
    box-shadow: 0 2px 2px 1px rgb(0 0 0 / 15%);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    width: 150%;
    text-align: center;
}

.menu-item-has-children:hover>.sub-menu {
	border-top: 1px solid #eee;
	opacity: 1;
	visibility: visible;
	z-index: 999;
	transform: translateY(0px);
	transition: .3s
}

.menu-item-has-children.nav-postion:hover>.sub-menu {
	top: 0;
	transform: translateY(-100%)
}

.menu-item-has-children>.sub-menu>li.menu-item {
	padding: 0 10px;
}

.menu-item-has-children.nav-postion>.sub-menu>li.menu-item-has-children>.sub-menu {
	top: inherit
}

.menu-item-has-children>.sub-menu>li.menu-item>a {
	display: block;
	padding: 10px 0px;
	font-size: 15px;
	height:47px;
	font-weight: 500;
	border-bottom: 1px solid #eee;
	transition: .5s;
	white-space: nowrap;
}

.menu-item-has-children>.sub-menu>li.menu-item:last-child>a {
	border: 0
}
.menu-item-has-children>.sub-menu>li.menu-item:hover{border-bottom: solid 2px #E60013;}
.menu-item-has-children>.sub-menu>li.menu-item:hover>a {
	transition: .5s
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a>.arrow {
	position: absolute;
	right: 10px;
	transform: rotate(-90deg)
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a>.arrow:after {
	display: inline-block;
	margin-left: 0;
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
	left: 100%;
	top: -3%
}

.menu-style.sticky .header>.logo {

}

.menu-style.sticky .header>.logo img {
	
}

.menu-style.sticky .header>.logo:after {
	height: 25px;
	bottom: -25px
}

.menu-style.sticky .main-menu>li.menu-item {
	padding: 10px 0;
}

.menu-style.sticky .header .right-side-2 .cta-btn .cta-text {
	padding: 20px 0 20px 15px
}

.simple-banner {
	position: relative;
	height: 700px;
	z-index: 1
}

.simple-banner .slide-item {
	height: 700px;
	position: relative;
	overflow: hidden
}

/* .simple-banner .slide-item:before { */
	/* position: absolute; */
	/* content: ""; */
	/* width: 100%; */
	/* height: 100%; */
	/* top: 0; */
	/* left: 0; */
	/* background-color: rgba(0,0,0,0.5); */
	/* z-index: 1 */
/* } */

.simple-banner .slider-btn {
	position: initial;
	top: 0;
	right: 0;
	left: 0
}

.simple-banner .slider-btn .swiper-button-next {
	right: 45px
}

.simple-banner .slider-btn .swiper-button-prev {
	left: 45px
}

.simple-banner .slider-btn .swiper-button-next span,.simple-banner .slider-btn .swiper-button-prev span {
	font-size: 35px;
	padding: 0 25px;
	color: #fff;
	border: 1px solid transparent
}

.simple-banner .slider-btn .swiper-button-prev span:after {
	background-color: transparent
}

.simple-banner .slide-item img {
	animation: scale 20s linear infinite
}

.simple-banner .slide-item .content-wrapper {
	transition: all 1s linear;
	transition-delay: 1s
}
.simple-banner .slide-item .content-wrapper h2{
	font-size:40px;
}
.simple-banner .slide-item .content-wrapper p{
	font-size:18px;
}

.simple-banner .slide-item .content-wrapper p,.simple-banner .slide-item .content-wrapper a,.simple-banner .slide-item .content-wrapper h1 {
	transition: all .8s cubic-bezier(0.215,0.61,0.355,1) 1.1s;
	transform: translate3d(-20%,0,0);
	opacity: 0
}

.simple-banner .slide-item.swiper-slide-active .content-wrapper a,.simple-banner .slide-item.swiper-slide-active .content-wrapper p,.simple-banner .slide-item.swiper-slide-active .content-wrapper h1 {
	transform: translate3d(0,0,0);
	opacity: 1
}

.simple-banner .slider-search .search-title {
	background-color: #E60013;
	padding: 15px 30px;
	display: table;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1
}

.simple-banner .slider-search .search-title:before {
	border-right: 25px solid transparent;
	content: "";
	left: 20px;
	position: absolute;
	bottom: -30px;
	transform: rotate(20deg);
	border-top: 35px solid #E60013
}

.simple-banner .slider-search .search-form {
	margin-top: 30px;
	background-color: rgba(255,255,255,.2);
	padding: 30px;
	padding-bottom: 10px;
	box-shadow: 0 1px 20px rgba(0,0,0,0.1)
}

.simple-banner .slider-search .search-form .form-group button {
	height: 50px
}

.location-box {
	position: relative
}

.location-box:before {
	content: "\f05b";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0px,-50%);
	z-index: 0;
	pointer-events: none;
	color: #E60013
}

.video-banner .jarallax {
	
}
.menu-style{
	background:#FFF;
}
.range-slider {
	display: flex
}
.nydaohang01 li:hover {
    background: #E60013;
}
.range-slider input {
	border: 0;
	width: 40px;
	padding: 0;
	margin: -6px 0 0 15px;
	font-size: 16px
}

.banner-style-2 .banner-form form .form-group .ui-widget.ui-widget-content {
	margin-bottom: 20px
}

.ui-widget.ui-widget-content {
	border: 0 solid #c5c5c5;
	background-color: #ddd;
	height: .3em;
	margin: .85em 0
}

.ui-widget-header,.ui-slider-vertical .ui-slider-range-min,.ui-slider-horizontal .ui-slider-range-min {
	background: #E60013
}

.ui-slider-vertical .ui-slider-handle,.ui-slider-horizontal .ui-slider-handle {
	background: #E60013;
	font-weight: normal;
	color: #454545;
	border-radius: 1.2em;
	border: .4em solid rgba(0,0,0,0);
	cursor: pointer;
	width: 1em;
	height: 1em;
	top: -4px
}

.ui-slider-vertical .ui-slider-handle.ui-state-active,.ui-slider-horizontal .ui-slider-handle.ui-state-active {
	cursor: pointer;
	width: 1.2em;
	height: 1.2em;
	top: -6px
}

.ui-slider-vertical .ui-slider-handle.ui-state-active,.ui-slider-vertical .ui-slider-handle {
	top: auto
}

.about-left-side {
	margin-left: 35px
}

.about-left-side .section-header {
	padding-bottom: 0;
	margin: 0 auto 0 0;
	text-align: left
}

.about-left-side .section-header .section-heading:after {
	margin: 0 auto 0 0
}

.about-right-side:before {
	content: '';
	background: #E60013;
	display: block;
	height: 50%;
	z-index: -1;
	position: absolute;
	width: calc(50%+35px);
	right: 35px;
	left: 0
}

.about-right-side>img {
	padding: 0;
	padding-top: 35px;
	padding-left: 35px
}

.about-right-side .about-meta {
	position: absolute;
	bottom: 59px;
	right: -26px;
	max-width: 380px;
	background-image: -webkit-linear-gradient(top,#E60013,#fd7537);
	padding: 30px 25px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center
}

.about-right-side .about-meta .meta-icon {
	margin-right: 15px;
	width: 47px
}

.about-right-side .about-meta:before {
	content: '';
	border-width: 20px;
	border-color: #fd7435 transparent transparent #fd7334;
	border-style: solid;
	position: absolute;
	bottom: -40px;
	right: 0;
	z-index: -1
}

.about-left-side .company-progress .progress-item {
	margin-bottom: 20px
}

.about-left-side .company-progress .progress-item label {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.about-left-side .company-progress .progress-item .progress {
	border-radius: 0;
	transform: skew(-30deg);
	transform-origin: right bottom;
	margin: 0 0 0 10px;
	position: relative;
	left: -10px
}

.about-left-side .company-progress .progress-item .progress .progress-bar {
	background-color: #E60013;
	position: relative;
	transform: skew(-30deg);
	transform-origin: right bottom;
	margin-left: -10px
}

.about-left-side .company-progress .progress-item:nth-child(1) .progress .progress-bar {
	width: 70%
}

.about-left-side .company-progress .progress-item:nth-child(2) .progress .progress-bar {
	width: 80%
}

.about-left-side .company-progress .progress-item:nth-child(3) .progress .progress-bar {
	width: 75%
}

.our-services .service-item,.categories-slider-box .categories-box {
	height: 350px;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	transition: .3s
}

.our-services .service-item .text-wrapper,.categories-slider-box .categories-box .text-wrapper {
	width: 100%;
	background: 0;
	background: linear-gradient(to bottom,transparent,#000);
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 1;
	padding: 100px 20px 60px 20px
}

.our-services .service-item .text-wrapper h5:before,.categories-slider-box .categories-box .text-wrapper h5:before {
	content: '';
	background-color: #E60013;
	width: 60px;
	height: 2px;
	display: block;
	margin-bottom: 5px
}

.our-services .service-item .text-wrapper h5,.categories-slider-box .categories-box .text-wrapper h5 {
	position: relative;
	text-transform: uppercase;
	transform: translateY(20px) translateZ(0);
	transition: all .3s cubic-bezier(.77,0,.175,1)
}

.our-services .service-item .text-wrapper p,.categories-slider-box .categories-box .text-wrapper p {
	opacity: 0;
	transform: translateY(20px) translateZ(0);
	transition: all .3s cubic-bezier(.77,0,.175,1)
}

.our-services .service-item:hover .text-wrapper h5,.categories-slider-box .categories-box:hover .text-wrapper h5 {
	transform: translateY(-5px) translateZ(0)
}

.our-services .service-item:hover .text-wrapper p,.categories-slider-box .categories-box:hover .text-wrapper p {
	opacity: .8;
	transition-delay: .2s;
	transform: translateY(0) translateZ(0)
}

.categories-tabs {
	margin-top: -40px
}

.categories-tabs .nav {
	border: 0;
	box-shadow: 0 6px 19px rgba(0,0,0,.08)
}

.categories-tabs .nav .nav-item {
	width: 25%
}

.categories-tabs .nav .nav-item .nav-link {
	margin: 0 auto;
	border: 0;
	padding: 40px 20px;
	background: #fff;
	border-radius: 0;
	text-align: center;
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.categories-tabs .nav .nav-item .nav-link span {
	display: block;
	font-size: 60px;
	line-height: 1;
	width: 60px;
	margin: 0 auto 10px
}

.categories-tabs .nav .nav-item .nav-link.active {
	color: #E60013
}

.property-grid-box {
	position: relative
}

.property-grid-box:hover {
	box-shadow: 0 1px 20px rgba(0,0,0,0.1)
}

.property-grid-box .property-grid-wrapper {
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	transition: .3s;
	border-radius: 3px
}

.property-grid-box .property-grid-wrapper .property-img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.property-grid-box .property-grid-wrapper .property-img .property-type {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0
}

.property-grid-box .property-grid-wrapper .property-img .property-address {
	position: absolute;
	bottom: 0;
	padding: 0 10px;
	z-index: 10
}

.property-grid-box .property-grid-wrapper .property-img .property-address a {
	color: #fff
}

.property-grid-box .property-grid-wrapper .property-img .property-address a i {
	margin-right: 5px
}

.property-grid-box .property-grid-wrapper .property-img .property-save-btn {
	opacity: 0;
	visibility: hidden;
	z-index: 99999
}

.property-grid-box:hover .property-grid-wrapper .property-img .property-save-btn {
	opacity: 1;
	visibility: visible;
	transition: .3s all
}

.property-grid-box .property-grid-wrapper .property-img .property-save-btn ul {
	display: flex;
	align-items: center;
	justify-content: center
}

.property-grid-box .property-grid-wrapper .property-img .property-save-btn ul li {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: rgba(0,0,0,0.57);
	border-radius: 50%;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 30px;
	margin: 0 2px
}

.property-grid-box .property-grid-wrapper .property-img .property-save-btn ul li a i {
	color: #ccc;
	font-size: 16px;
	line-height: 36px
}

.property-grid-box .property-grid-wrapper .property-img .property-address:after {
	position: absolute;
	content: '';
	display: block;
	left: 100%;
	top: 0;
	border-top: 21px solid transparent;
	border-left: 21px solid;
	border-left-color: #E60013
}

.property-grid-box .property-grid-wrapper .property-img>a {
	display: block
}

.property-grid-box .property-grid-wrapper .property-img>a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	z-index: 9;
	background: linear-gradient(to top,rgba(0,0,0,0.45) 0,rgba(0,0,0,0.45) 5%,rgba(22,22,23,0) 40%,rgba(0,0,0,0) 100%);
	transition: .7s
}

.property-grid-box .property-grid-wrapper .property-grid-caption {
	background-color: #fff;
	border-radius: 3px;
	padding-bottom: 0
}

.property-grid-box .property-grid-wrapper .property-grid-caption h5 {
	font-size: 20px
}

.property-grid-box .property-grid-wrapper .property-grid-caption .price {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 0;
	font-weight: 500
}

.property-grid-box .property-grid-wrapper .property-grid-caption .price i {
	margin-right: 5px
}

.property-grid-box .property-grid-wrapper .property-grid-caption .price span {
	font-size: 80%;
	margin-left: 4px
}

.property-grid-box .property-grid-wrapper .property-grid-caption .property-feature {
	columns: 2;
	padding-bottom: 10px
}

.property-grid-box .property-grid-wrapper .property-grid-caption .property-feature li {
	padding: 0 0 10px 0
}

.property-grid-box .property-grid-wrapper .property-grid-caption .property-feature li i {
	font-size: 18px;
	margin-right: 5px;
	color: #030e27
}

.property-grid-box .property-grid-wrapper .property-grid-caption .property-feature li span {
	font-size: 16px;
	color: #111;
	font-weight: 400
}

.property-grid-box .property-grid-wrapper .property-grid-footer {
	padding: 20px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-list-footer .link-btn span,.property-grid-box .property-grid-wrapper .property-grid-footer>a span {
	transition: .5s all
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-list-footer>.link-btn:hover span,.property-grid-box .property-grid-wrapper .property-grid-footer>a:hover span {
	padding-left: 8px;
	transition: .5s all
}

.ratings span {
	cursor: pointer
}

.ratings .rating-text {
	display: block;
	font-weight: 500;
	text-align: center
}

.browse-listing-gallery .browse-gallery>.row>div {
	padding: 7.5px
}

.browse-listing-gallery .browse-gallery .gallery-img {
	position: relative;
	transition: all .4s ease;
	box-shadow: 0 4px 16px -2px rgba(0,0,0,.1),0 0 0 1px rgba(0,0,0,.02)
}

.browse-listing-gallery .browse-gallery .gallery-img .img-overlay {
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .3;
	top: 0;
	left: 0;
	transition: all .4s ease;
	cursor: pointer;
	overflow: hidden;
	position: absolute
}

.browse-listing-gallery .browse-gallery .gallery-img:hover .btn-border {
	background-color: #fff;
	color: #111;
	transition: .5s all
}

.browse-listing-gallery .browse-gallery .gallery-img:hover .img-overlay {
	opacity: .15
}

.browse-listing-gallery .browse-gallery .gallery-img:hover .img-overlay:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
	animation: shine .75s
}

.our-services .filter-gallery>ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center
}

.custom-tabs>.nav>.nav-item>.nav-link,.our-services .filter-gallery>ul>li>a {
	padding: 8px 40px;
	position: relative;
	font-size: 16px;
	overflow: hidden;
	display: block;
	z-index: 10;
	text-align: center;
	background-color: transparent;
	border: 1px solid #E60013;
	transition: .5s all;
	margin: 0 5px 10px;
	border-radius: 0
}

.custom-tabs>.nav>.nav-item>.nav-link:before,.our-services .filter-gallery>ul>li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 10%;
	height: 100%;
	z-index: -1;
	background-color: #E60013;
	transition: .5s all
}

.custom-tabs>.nav>.nav-item:hover>.nav-link,.custom-tabs>.nav>.nav-item>.nav-link.active,.our-services .filter-gallery>ul>li.active>a,.our-services .filter-gallery>ul>li:hover>a {
	color: #fff;
	background: #E60013;
	transition: .5s all
}

.custom-tabs>.nav>.nav-item:hover>.nav-link:before,.custom-tabs>.nav>.nav-item>.nav-link.active:before,.our-services .filter-gallery>ul>li.active>a:before,.our-services .filter-gallery>ul>li:hover>a:before {
	width: 100%
}

.our-services .service-item .text-wrapper {
	padding-bottom: 20px
}

.our-category {
	background-image: url("../images/bg1.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center
}

.video_wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
	background-color: #000;
	height: 400px
}

.videoIframe {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: 0
}

.videoPoster img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background-position: center;
	overflow: hidden;
	opacity: 1;
	transition: opacity 100ms,height 0s;
	transition-delay: 0s,0s
}

.video-wrapper .video_wrapper .videoPoster {
	background-image: url("../../../../../../via.placeholder.com/750x400")
}

.videoPoster:hover {
	cursor: pointer
}

.videoPoster .video-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center
}

.videoWrapperActive .videoPoster {
	opacity: 0;
	height: 0;
	transition-delay: 0s,800ms
}

.video-btn-wrapper {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	font-size: 25px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: height .25s ease,width .25s ease;
	box-shadow: 0 16px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22)
}

.video-btn-wrapper>a>i {
	font-weight: 600
}

.video-btn-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 1px solid #fff;
	animation: ripple 2s linear infinite
}

.video-btn-wrapper .video-btn {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: inherit;
	font-size: 30px
}

.custom-tabs>.nav {
	border: 0;
	justify-content: space-between;
	position: relative
}

.custom-tabs>.nav:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	width: 100%;
	height: 1px;
	background-color: #E60013
}

.custom-tabs>.nav>.nav-item>.nav-link {
	background-color: #f4f4f4;
	margin: 0
}

.bx-wrapper {
	box-shadow: 0 0 5px rgba(0,0,0,0.05)
}

.our-history {
	background-image: url("../images/h3-bg-section-01.jpg");
	background-repeat: no-repeat;
	background-size: cover
}

.our-history .tab-inner .content-box .list {
	margin: 10px 0 15px
}

.our-history .tab-inner .content-box .list ul {
	columns: 2
}

.our-history .tab-inner .content-box .list ul li {
	margin-bottom: 15px
}

.our-history .tab-inner .content-box .list ul li i {
	margin-right: 10px
}

.full-services-sec .left-side .service-text {
	position: absolute;
	bottom: 0;
	overflow: hidden;
	width: 400px;
	height: 265px
}

.full-services-sec .left-side .service-text .text-wrapper {
	padding: 40px
}

.full-services-sec .left-side .service-text .text-wrapper .btns {
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.full-services-sec .left-side .service-text-2 {
	position: absolute;
	top: 0;
	padding: 40px;
	overflow: hidden;
	max-width: 215px;
	left: 0;
	right: 0
}

.full-services-sec .left-side .service-text-2 h2 {
	font-size: 55px;
	line-height: 1
}

.full-services-sec .left-side .service-text-2 h5 {
	font-size: 30px;
	font-weight: 400
}

.full-services-sec .left-side .video-play-btn {
	position: absolute;
	bottom: 0;
	max-width: 500px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.full-services-sec .left-side .video-play-btn a {
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	border: 2px solid #030e27;
	margin-left: 15px;
	color: #030e27;
	font-size: 25px
}

.full-services-sec .right-side {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #E60013;
	height: 100%;
	align-self: center
}

.full-services-sec .right-side .text-wrapper h2 {
	line-height: 1.8
}

.full-services-sec .right-side .text-wrapper .right-side-box {
	margin-top: 20px;
	margin-bottom: 40px;
	text-align: left;
	transition: .3s all
}

.full-services-sec .right-side .text-wrapper .right-side-box:hover .icon {
	animation: slideTopDown 1s infinite alternate;
	transition: .3s all
}

.full-services-sec .right-side .text-wrapper .right-side-box .icon {
	color: #fff;
	margin-bottom: 10px;
	font-size: 45px;
	width: 45px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: .3s all
}

.our-team {
	background-image: url("../images/homepage-1/agent-bg-1920x780.jpg");
	position: relative;
	z-index: 9;
	background-position: center;
	background-size: cover;
	background-attachment: fixed
}

.our-team:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0);
	z-index: -10;
	opacity: .5
}

.our-team .team-block .inner-box {
	position: relative;
	background-color: #fff;
	transition: all 500ms ease
}

.our-team .team-block .image .overlay-box {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0
}

.our-team .team-block .image .overlay-box:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	top: 100%;
	transition: all 900ms ease;
	background-image: linear-gradient(to bottom,rgba(255,255,255,0) 0,#E60013 100%)
}

.our-team .team-block .inner-box:hover .overlay-box:before {
	opacity: 1;
	top: 0
}

.our-team .team-social-box {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%)
}

.our-team .team-social-box li {
	position: relative;
	left: -70px;
	margin-bottom: 10px;
	transition: all 900ms ease
}

.our-team .team-social-box li a {
	position: relative;
	width: 36px;
	height: 36px;
	z-index: 1;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	background-color: #fff
}

.our-team .team-social-box li .social-name {
	position: relative;
	opacity: 0;
	visibility: hidden;
	margin-left: -32px;
	text-transform: capitalize;
	display: inline-block;
	border-radius: 0 50px 50px 0;
	background-color: #fff;
	transition: all .3s ease;
	padding: 4px 16px 4px 15px;
	top: -1px
}

.our-team .team-social-box li:last-child {
	margin-bottom: 0
}

.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li,.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(2),.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(3),.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(4) {
	left: 0
}

.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(2) {
	transition-delay: 500ms
}

.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(3) {
	transition-delay: 750ms
}

.our-team .team-block .inner-box:hover .image .overlay-box .team-social-box li:nth-child(4) {
	transition-delay: 1000ms
}

.our-team .team-social-box li:hover .social-name {
	opacity: 1;
	margin-left: -9px;
	visibility: visible
}

.our-team .team-social-box li.youtube a {
	color: #f00
}

.our-team .team-social-box li.linkedin a {
	color: #0077b5
}

.our-team .team-social-box li.facebook a {
	color: #3b5998
}

.our-team .team-social-box li.twitter a {
	color: #1da1f2
}

.our-team .team-social-box li.youtube .social-name {
	background-color: #f00
}

.our-team .team-social-box li.linkedin .social-name {
	background-color: #0077b5
}

.our-team .team-social-box li.facebook .social-name {
	background-color: #3b5998
}

.our-team .team-social-box li.twitter .social-name {
	background-color: #1da1f2
}

.our-team .team-block .lower-content {
	border: 1px solid #E60013;
	background: #E60013;
	position: relative;
	width: 106%
}

.our-team .team-block .lower-content:before {
	content: '';
	border-width: 10px;
	border-color: #E6001300 #E6001300 #E60013 #E60013;
	border-style: solid;
	position: absolute;
	right: -2px;
	top: -20px;
	z-index: -1
}

.our-team .team-block .lower-content h4 {
	margin-bottom: 5px;
	margin-top: -5px
}

.our-team .team-block .lower-content h4 a {
	color: #030e27
}

.our-team .team-block .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 38px;
	margin: 0 auto;
	text-align: center;
	border-radius: 50%;
	margin-top: -10px;
	top: -10px;
	display: inline-block;
	background-color: #030e27;
	border: 1px solid #030e27;
	transition: all 500ms ease;
	cursor: pointer
}

.our-team .team-block .inner-box:hover .icon-box {
	color: #E60013;
	border-color: #fff;
	background-color: #fff;
	transform: rotate(360deg)
}

.our_articles .post {
	position: relative
}

.our_articles .post .post-wrapper {
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	transition: .3s;
	border-radius: 3px;
	position: relative
}

.our_articles .post:hover .post-wrapper {
	box-shadow: 0 10px 20px rgba(0,0,0,0.1)
}

.our_articles .post .post-wrapper .blog-img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.our_articles .post .post-wrapper .post-date {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 1
}

.our_articles .post .post-wrapper .blog-img .post-video {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0%,-50%);
	justify-content: center;
	display: flex
}

.our_articles .post .post-wrapper .blog-img .post-video .video-btn-wrapper {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	font-size: 25px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: height .25s ease,width .25s ease;
	box-shadow: 0 16px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22)
}

.our_articles .post .post-wrapper .blog-img .post-video .video-btn-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	animation: ripple 2s linear infinite
}

.our_articles .post .post-wrapper .blog-img .post-video .video-btn-wrapper .video-btn {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: inherit;
	font-size: 30px
}

.our_articles .post .post-wrapper .post-date>a {
	display: inline-block;
	padding: 8px 15px;
	line-height: 10px;
	font-size: 16px;
	position: relative;
	background-color: #E60013;
	color: #fff;
	float: right
}

.our_articles .post .post-wrapper .blog-meta .cat-box {
	position: relative;
	margin-top: -37px;
	background: #E60013;
	margin-bottom: 15px;
	padding: 5px 10px;
	width: fit-content;
	z-index: 1
}

.our_articles .post .post-wrapper .blog-meta .cat-box .cats a {
	color: #fff;
	font-size: 16px;
	position: relative
}

.our_articles .post .post-wrapper .blog-meta .cat-box .cats a:after {
	content: '/';
	margin: 0 5px;
	position: relative;
	top: 1px
}

.our_articles .post .post-wrapper .blog-meta .cat-box .cats a:last-child:after {
	display: none
}

.our_articles .post .post-wrapper .blog-meta .post-title {
	font-size: 20px
}

.our_articles .post .post-wrapper .blog-footer-meta {
	border-top: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.our_articles .post .post-wrapper .blog-footer-meta .post-author {
	display: flex;
	align-items: center
}

.our_articles .post .post-wrapper .blog-footer-meta .post-author .author-img {
	margin-right: 15px
}

.our_articles .post .post-wrapper .blog-footer-meta .post-link>a {
	text-decoration: underline;
	text-transform: uppercase
}

.client-tesimonial.arrow-shape-1:after {
	display: none
}

.client-tesimonial .arrow-shape-2:after {
	border-color: #fff #fff #D46240 #D46240
}

.testimonials-box {
	height: 100%;
	background: #f3f3f3
}

.testimonials-box,.clients-box {
	padding-top: 70px;
}

.faqs-box .section-header,.testimonials-box .section-header {
	text-align: left;
	margin: 0
}

.testimonials-box .section-header .section-heading:after {
	margin: 0 auto 0 0;
	background-color: #333
}

.testimonials-box .testimonials-wrapper .testimonials-author {
	width: 120px;
	height: 120px;
	box-shadow: 0 0 0 4px #111 inset;
	border-radius: 50%;
	padding: 4px;
	margin: 0 auto
}

.testimonials-box .testimonials-wrapper .testimonial-nav .slick-track {
	padding: 20px 0
}

.testimonials-box .testimonials-wrapper .testimonial-nav .slick-current {
	transform: scale(1.35);
	transition: all 260ms
}

.testimonials-box .testimonials-wrapper .testimonial-nav .slick-current .testimonials-author {
	box-shadow: 0 0 0 4px #fff inset;
	transform: scale3d(1,1,1);
	transition: all 260ms
}

.testimonials-box .testimonials-wrapper .testimonials-inner {
	position: relative;
	padding: 0 0 0 100px
}

.testimonials-box .testimonials-wrapper .testimonials-inner:before {
	display: block;
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	color: #e8e8e8;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f10d";
	line-height: 1;
	font-size: 76px
}

.testimonials-box .testimonials-wrapper .testimonials-inner .testimonial-content {
	max-width: 550px
}

.testimonials-box .testimonials-wrapper .testimonials-inner .testimonial-content strong,.testimonials-box .testimonials-wrapper .testimonials-inner .testimonial-content h4 {
	font-weight: 600
}

.clients-box .section-header-right {
	margin: 0 0 0 auto
}

.clients-box .clients-wrapper {
	position: relative;
	overflow: hidden
}

.clients-box .clients-wrapper .client-box {
	float: left;
	border-bottom: 1px solid #eee;
	border-left: 1px solid #eee;
	margin: 0 0 -1px -1px;
	position: relative;
	padding: 0;
	width: 33.3%
}

.clients-box .clients-wrapper .client-box .client-item {
	display: block;
	margin: 15% auto;
	position: relative;
	opacity: 1;
	transition: all 350ms ease;
	width: 125px;
	height: 125px
}

.clients-box .clients-wrapper .client-box .client-item:hover {
	opacity: 1
}

.partner-box .partner-logo {
	width: 120px;
	height: 120px;
	margin: 0 auto
}

.partner-box .partner-logo:hover img {
	filter: grayscale()
}

.faqs-box .section-header .section-heading:after {
	margin: 0 auto 0 0
}

.schdule-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #030e27;
	padding: 40px 20px;
	margin-bottom: 60px
}

.schdule-box .right-side {
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.schdule-box .right-side a:before {
	display: none
}

.schdule-box .right-side a {
	animation: blinkingText 3s infinite
}

@keyframes blinkingText {
	0% {
		color: #fff;
		background-color: #E60013
	}

	50% {
		color: #fff;
		background-color: transparent
	}

	100% {
		color: #fff;
		background-color: #E60013
	}
}

.instagram-sec>.row {
	margin: 0 -5px
}

.instagram-sec>.row>div {
	padding: 5px
}

.instagram-sec .insta-img {
	width: 100%;
	height: 155px
}

.download-app {
	background-image: url("../images/homepage-1/free-consultation-bg.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
	background-position: center
}

.download-app:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .3;
	z-index: 1
}

.download-app .app-img-btm,.download-app .app-img {
	z-index: 10;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center
}

.download-app .app-img img {
	margin: 0 8px 80px
}

.bg-call-to-action {
	background-image: url("../images/homepage-1/free-consultation-bg.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
	background-position: center
}

.consult-form .nice-select span {
	color: #fff
}

.consult-form .nice-select.open span {
	color: #111
}

.consult-form input.form-control-custom::placeholder,.consult-form input.form-control-custom {
	color: #fff;
	background: transparent
}

.consult-form .form-control-custom:focus {
	background: transparent
}

.footer .footer-box .newsletter button,.consult-form button {
	color: #fff
}

.footer .footer-box .footer-heading {
	position: relative;
	margin-bottom: 20px
}
.footer .footer-box .footer-heading h4{
	font-weight:500;
	font-size:20px;
}

.footer .footer-box .footer-heading:after {
	content: "";
	height: 1px;
	width: 80px;

	display: block;
	margin-top: 20px
}

.footer .footer-box .links li {
	font-size: 16px;
	margin-bottom: 15px;

}


.footer .footer-box .popular_post li:last-child,.footer .footer-box .links li:last-child {
	margin-bottom: 0
}

.footer .footer-box .insta-feed {
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	margin: 0
}

.footer .footer-box .popular_post li,.footer .footer-box .newsletter .form-group {
	margin-bottom: 15px
}

.footer .footer-box .social-media ul {
	margin-top: 15px;
	display: flex
}

.footer .footer-box .social-media ul li a {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #E60013;
	margin: 0 5px 0 0;
	border: 1px solid #E60013
}

.footer .footer-box .social-media ul li a:hover {
	background-color: #E60013;
	color: #fff
}

.footer .footer-box .social-media ul li:hover a {
	transform: rotate(360deg)
}

.footer .footer-box .insta-feed .insta-item {
	flex: 0 0 33.33%;
	max-width: 33.33%;
	padding: 2px
}

.footer .footer-box .popular_post li .post .post-wrapper {
	width: 100%;
	display: flex
}

.footer .footer-box .popular_post li .post .post-wrapper .popular_post_img {
	position: relative;
	overflow: hidden;
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px
}

.footer .footer-box .popular_post li .post .post-wrapper .popular_post_img img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover
}

.footer .footer-box .popular_post li .post .post-wrapper .popular_post_title {
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding: 2px 15px;
	padding-right: 0;
	width: 100%
}

.footer .footer-box .popular_post li .post .post-wrapper .popular_post_title h6 {
	margin-bottom: 10px;
	line-height: 1.3
}

.footer .footer-box .popular_post li .post .post-wrapper .popular_post_title h6 a {
	font-weight: 500
}

.copyright {
	padding: 20px 0;
	background: #030e27;
	border-top: 1px solid #f0f0ff7a
}

.copyright .payment-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.copyright p {
	text-align: right
}

#back-top {
	text-align: center;
	display: none
}

#back-top a {
	display: block;
	border-radius: 0;
	line-height: 25px;
	border: #E60013 solid 1px;
	color: #fff;
	background: #E60013;
	transition-duration: .3s;
	font-size: 15px;
	box-shadow: rgba(0,0,0,0.05) 0 0 10px;
	position: fixed;
	z-index: 100;
	bottom: 20px;
	right: 20px;
	padding: 0 10px 7px
}

#back-top a span {
	font-size: 16px;
	line-height: 1
}

.subheader {
	background: url("../images/aboutus.jpg");
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	height:500px;
	padding:180px 0;
}

.subheader:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.subheader .breadcrumb-wrapper .page-title h1,.subheader .breadcrumb-wrapper .custom li a {
	color: #fff
}

.breadcrumb-wrapper .page-title {
	position: relative;
	padding: 10px 0;
	padding-left: 25px;
	margin-bottom: 20px
}

.breadcrumb-wrapper .page-title:after {
	content: "";
	height: calc(100% - 6px);
	width: 5px;
	background-color: #E60013;
	position: absolute;
	top: 3px;
	left: 0
}

.breadcrumb-wrapper .page-title h1 {
	text-transform: capitalize;
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	position: relative;
	margin: 0
}

.breadcrumb-wrapper .breadcrumb {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin: 0
}

.breadcrumb-wrapper .breadcrumb li {
	font-size: 24px;
	color: #111;
	text-transform: capitalize;
	font-weight: bold
}

.breadcrumb-wrapper .breadcrumb li a:after {
	content: '-';
	color: #E60013;
	font-size: 16px;
	margin: 0 5px
}

.breadcrumb-wrapper .breadcrumb li.active {
	color: #E60013
}

.sidebar_wrap .sidebar .sidebar_widgets {
	padding: 20px;
	background: #fff;
	border: #efefef solid 1px;
	border-radius: 3px
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
	margin: -20px -20px 20px;
	padding: 20px;
	position: relative
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title h5 {
	font-size: 20px
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title:after {
	content: "";
	height: calc(100% - 0);
	width: 5px;
	background-color: #E60013;
	position: absolute;
	top: 0;
	left: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li {
	position: relative;
	margin-bottom: 10px
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li:last-child {
	margin-bottom: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .categories li a {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper {
	width: 100%;
	display: flex;
	box-shadow: none
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post:hover .post-wrapper {
	box-shadow: none
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_img {
	position: relative;
	overflow: hidden;
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title {
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding: 5px 15px;
	width: 100%
}

.sidebar_wrap .sidebar .sidebar_widgets .popular_post li .post .post-wrapper .popular_post_title h6 {
	margin-bottom: 10px;
	line-height: 1.3;
	font-size: 16px
}

.sidebar_wrap .sidebar .sidebar_widgets .tags a {
	display: inline-block;
	padding: 5px 15px;
	border: #ccc solid 1px;
	margin: 0 5px 10px 0;
	background: #fff;
	font-weight: 500;
	color: #111
}

.sidebar_wrap .sidebar .sidebar_widgets .tags a:hover {
	border-color: #E60013;
	color: #E60013
}

.blog-details .post .post-wrapper .blog-img,.blog-details .post .post-wrapper .blog-img .swiper-slide {
	position: relative;
	width: 100%;
	height: 450px
}

.blog-details .post .post-wrapper .blog-meta .blog-title {
	position: relative;
	padding: 10px 0;
	padding-left: 25px;
	margin-bottom: 20px
}

.blog-details .post .post-wrapper .blog-meta .blog-title:after {
	content: "";
	height: calc(100% - 6px);
	width: 5px;
	background-color: #E60013;
	position: absolute;
	top: 3px;
	left: 0
}

.blog-details .post .post-wrapper .blog-meta .blog-title h2 {
	font-size: 30px;
	text-transform: capitalize;
	margin: 0
}

.blog-details .post .post-wrapper .blog-img .post-date {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	z-index: 1
}

.blog-details .post .post-wrapper .blog-img .post-date>a {
	display: inline-block;
	padding: 15px;
	line-height: 10px;
	font-size: 16px;
	position: relative;
	background-color: #E60013;
	color: #fff;
	float: right
}

.blog-details .post .post-wrapper .blog-img .post-date>a:after {
	position: absolute;
	content: '';
	display: block;
	right: 100%;
	top: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid;
	border-left-color: #E60013;
	border-right-color: #E60013
}

.blog-details .post .post-wrapper .blog-img .post-video {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0%,-50%);
	justify-content: center;
	display: flex
}

.blog-details .post .post-wrapper .blog-img .post-video .video-btn-wrapper {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	font-size: 25px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: height .25s ease,width .25s ease;
	box-shadow: 0 16px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.22)
}

.blog-details .post .post-wrapper .blog-img .post-video .video-btn-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.5);
	animation: ripple 2s linear infinite
}

.blog-details .post .post-wrapper .blog-img .post-video .video-btn-wrapper .video-btn {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: inherit;
	font-size: 30px
}

.blog-details .post .post-wrapper .blog-meta .quote-box blockquote {
	background-image: url("../images/default_pattern.png");
	padding-left: 45px;
	position: relative
}

.blog-details .post .post-wrapper .blog-meta .quote-box blockquote .quote-icon {
	background: linear-gradient(to top right,transparent 0,transparent 50%,#fd7435 51%,#fd7435 100%);
	width: 75px;
	height: 75px;
	text-align: right;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	padding: 2px 10px
}

.blog-details .post .post-wrapper .post-meta,.blog-details .post .post-wrapper .post-meta .post-author {
	display: flex;
	align-items: center;
	margin-right: 15px;
	flex-wrap: wrap;
	width: auto;
	border: 0;
	padding: 0;
	background: 0
}

.blog-details .post .post-wrapper .post-meta .post-author:before {
	display: none
}

.blog-details .post .post-wrapper .post-meta {
	margin-right: 0;
	justify-content: space-between
}

.blog-details .post .post-wrapper .post-meta .post-author .author-img {
	margin-right: 15px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px
}

.blog-details .post .post-wrapper .post-meta .post-content span:last-child {
	margin-right: 0
}

.blog-details .post .post-wrapper .post-meta .post-content span {
	margin-right: 20px
}

.blog-details .post .post-wrapper .blog-content .description {
	margin-bottom: 20px
}

.blog-details .post .post-wrapper .blog-content .blog-video .video_wrapper {
	height: 450px
}

.blog-details .post-details-tags-social {
	padding-top: 5px
}

.blog-details .post-details-tags-social .tags-box {
	display: flex;
	align-items: flex-start
}

.blog-details .post-details-tags-social .tags {
	margin-left: 15px
}

.blog-details .post-details-tags-social .tags a {
	display: inline-block;
	padding: 5px 15px;
	border: #ccc solid 1px;
	margin: 0 5px 10px 0;
	background: #fff;
	font-weight: 500;
	color: #111
}

.blog-details .post-details-tags-social .tags a:hover {
	border-color: #E60013;
	color: #E60013
}

.blog-details .social-media-box>ul {
	margin-bottom: 15px;
	display: flex;
	justify-content: flex-end
}

.blog-details .social-media-box>ul>li {
	padding-left: 0;
	margin: 0;
	margin-left: 10px
}

.blog-details .social-media-box>ul>li>a {
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 0;
	box-shadow: 4px 3px 10px 0 rgba(0,0,0,0.08);
	padding: 10px 16px
}

.blog-details .social-media-box>ul>li>a.fb {
	color: #4661c5
}

.blog-details .social-media-box>ul>li>a.fb:hover {
	color: #fff;
	background: #4661c5
}

.blog-details .social-media-box>ul>li>a.tw {
	color: #45a4e6
}

.blog-details .social-media-box>ul>li>a.tw:hover {
	color: #fff;
	background: #45a4e6
}

.blog-details .social-media-box>ul>li>a.ln {
	color: #007bb5
}

.blog-details .social-media-box>ul>li>a.ln:hover {
	color: #fff;
	background: #007bb5
}

.blog-details .social-media-box>ul>li>a.gg {
	color: #d6463a
}

.blog-details .social-media-box>ul>li>a.gg:hover {
	color: #fff;
	background: #d6463a
}

.blog-details .social-media-box>ul>li>a:hover {
	background-color: #73be20;
	border-color: #73be20
}

.blog-details .post-author {
	border: 0 solid rgba(0,0,0,.1);
	display: flex;
	align-items: center;
	position: relative;
	padding: 15px;
	padding-left: 30px;
	width: 100%;
	background-image: url("../images/default_pattern.png")
}

.blog-details .post .post-wrapper .blog-meta .quote-box blockquote:before,.blog-details .post-author:before {
	content: '';
	height: 100%;
	width: 15px;
	background-color: #fd7435;
	display: block;
	position: absolute;
	z-index: 1;
	left: 0
}

.blog-details .post-author .author-img {
	position: relative;
	overflow: hidden;
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
	margin-right: 15px
}

.blog-details .post-author .author-caption {
	flex: 0 0 calc(100% - 165px);
	max-width: calc(100% - 165px);
	width: 100%
}

.blog-details .post-author .author-caption h5 {
	margin-bottom: 10px
}

.blog-details .post-author .author-caption .social-media-box,.blog-details .post-author .author-caption .social-media-box ul {
	justify-content: flex-start
}

.blog-details .post-author .author-caption .social-media-box ul li {
	margin-left: 0;
	margin-right: 10px
}

.pagination-btn nav ul {
	justify-content: space-between
}

.comment-box .children,.comment-box .comments {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom: 35px;
	list-style: inherit
}

.comment-box .children {
	padding-left: 95px
}

.comment-box .comments li.comment {
	list-style: outside none none;
	padding-left: 0;
	margin-bottom: 20px
}

.comment-box .comments li article {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 20px
}

.comment-box .comments li article .comment-avatar {
	margin-right: 20px;
	float: left;
	overflow: hidden;
	height: 80px;
	border-radius: 50px
}

.comment-box .comments li article .comment-content {
	float: right;
	width: calc(100% - 110px)
}

.comment-box .comments li article .comment-content .comment-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap
}

.comment-box .comments li article .comment-content .comment-meta .comment-meta-reply .comment-reply-link {
	font-size: 20px;
	padding: 0 15px
}

.comment-box .comments li article .comment-content .comment-meta .comment-meta-header .post-date .date {
	display: inline-block;
	padding: 8px 15px;
	position: relative;
	line-height: 10px;
	font-size: 16px;
	position: relative;
	color: #fff
}

.center-hypen {
	position: relative
}

.center-hypen:after {
	content: '-';
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 25px;
	color: #111
}

.sidebar_wrap .sidebar .listing-categories li:after {
	content: "\f162";
	font-family: "Flaticon";
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #E60013;
	font-size: 16px
}

.sidebar_wrap .sidebar .listing-categories li {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px
}

.sidebar_wrap .sidebar .listing-categories li:hover a {
	padding-left: 15px;
	transition: .3s all
}

.sidebar_wrap .sidebar .listing-categories li:last-child {
	margin-bottom: 0;
	border-bottom: 0 solid #ccc;
	padding-bottom: 0
}

.sidebar_wrap .sidebar .property-filter .range-slider {
	align-items: center;
	justify-content: space-between
}

.sidebar_wrap .sidebar .property-filter .range-slider input {
	margin-left: 0
}

.sidebar_wrap .sidebar .property-filter .more-filter button {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.sidebar_wrap .sidebar .property-filter .more-filter button:after {
	position: relative;
	content: '-';
	background: #fff;
	border: 1px solid #eee;
	color: #111;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px
}

.sidebar_wrap .sidebar .property-filter .more-filter button.collapsed:after {
	content: '+'
}

.sidebar_wrap .sidebar .property-filter .more-filter form {
	margin-top: 20px
}

.listing-top-heading {
	border-bottom: 2px solid #E60013;
	background: #fff;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.listing-top-heading h6 {
	padding: 20px 0
}

.listing-top-heading .sort-by {
	display: flex;
	align-items: center
}

.listing-top-heading .sort-by span {
	white-space: nowrap;
	margin-right: 15px
}

.listing-top-heading .sort-by .custom-select {
	margin-bottom: 0;
	background: #fff
}

.listing-top-heading .listing-view .nav-tabs {
	display: flex;
	width: 80px;
	border: 0
}

.listing-top-heading .listing-view .nav-tabs .nav-item {
	margin-left: 15px
}

.listing-top-heading .listing-view .nav-tabs .nav-item .nav-link {
	font-size: 25px;
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	color: #111
}

.listing-top-heading .listing-view .nav-tabs .nav-item .nav-link.active {
	color: #E60013
}

.img-overlay-new:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	z-index: 9;
	background: linear-gradient(to top,rgba(0,0,0,0.45) 0,rgba(0,0,0,0.45) 5%,rgba(22,22,23,0) 40%,rgba(0,0,0,0) 100%);
	transition: .7s
}

.property-list-view .property-list-wrapper {
	display: flex;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	transition: .3s
}

.property-list-view:hover {
	box-shadow: 0 1px 20px rgba(0,0,0,0.1)
}

.property-list-view .property-list-wrapper .property-list-img {
	flex: 0 0 280px;
	max-width: 280px
}

.property-list-view .property-list-wrapper .property-list-img .property-type {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0
}

.property-list-view .property-list-wrapper .property-list-img .property-save-btn {
	opacity: 0;
	visibility: hidden;
	z-index: 99999
}

.property-list-view .property-list-wrapper .property-list-img .property-save-btn ul {
	display: flex;
	align-items: center;
	justify-content: center
}

.property-list-view .property-list-wrapper .property-list-img .property-save-btn ul li {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: rgba(0,0,0,0.57);
	border-radius: 50%;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 30px;
	margin: 0 2px
}

.property-list-view .property-list-wrapper .property-list-img .property-save-btn ul li a i {
	color: #ccc;
	font-size: 16px;
	line-height: 36px
}

.property-list-view .property-list-wrapper .property-list-img:hover .property-save-btn {
	opacity: 1;
	visibility: visible;
	transition: .3s all
}

.property-list-view .property-list-wrapper .property-list-img .ratings {
	position: absolute;
	bottom: 0;
	background: #fff;
	z-index: 100;
	padding: 2px 20px;
	padding-right: 5px
}

.property-list-view .property-list-wrapper .property-list-img .ratings:after {
	position: absolute;
	content: '';
	display: block;
	left: 100%;
	top: 0;
	border-top: 32px solid transparent;
	border-left: 32px solid;
	border-left-color: #fff
}

.property-list-view .property-list-wrapper .property-list-content {
	flex: 0 0 calc(100% - 280px);
	max-width: calc(100% - 280px);
	width: 100%;
	background-color: #fff
}

.property-list-view .property-list-wrapper .property-list-content .content-box h4 {
	font-size: 22px
}

.property-list-view .property-list-wrapper .property-list-content .content-box .desc {
	border-top: 2px solid #eee;
	border-bottom: 2px solid #eee;
	padding: 20px 0
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature {
	display: flex;
	padding-bottom: 10px;
	overflow-y: auto
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature.active {
	cursor: grab
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature li {
	padding: 0 30px 0 0;
	position: relative;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	white-space: nowrap
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature li:after {
	content: '';
	background: #eee;
	height: 100%;
	width: 2px;
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 15px
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature::-webkit-scrollbar,.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature li:last-child:after {
	display: none
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-feature li i {
	font-size: 18px;
	margin-right: 10px;
	color: #030e27
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-list-footer {
	padding-top: 0;
	background: #fff;
	border-top: 0 solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.property-list-view .property-list-wrapper .property-list-content .content-box .property-list-footer .price {
	font-size: 24px
}

.property-list-view .property-list-wrapper.full-width-layout .property-list-img {
	flex: 0 0 50%;
	max-width: 50%
}

.property-list-view .property-list-wrapper.full-width-layout .property-list-content {
	flex: 0 0 50%;
	max-width: 50%
}

.property-list-view .property-list-wrapper.full-width-layout .property-list-content .content-box h4 {
	font-size: 26px
}

.listing-detail-heading {
	position: relative;
	position: relative;
	padding: 20px 0;
	padding-left: 25px;
	background-color: #fff
}

.listing-detail-heading:after {
	content: "";
	height: calc(100% - 0);
	width: 5px;
	background-color: #E60013;
	position: absolute;
	top: 0;
	left: 0
}

.listing-detail .image-sec-table {
	background-color: #fff
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-for .slide-item {
	position: relative;
	overflow: hidden;
	height: 450px
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-for .slide-item a:before {
	position: absolute;
	top: 50%;
	opacity: 0;
	color: #fff;
	font-size: 26px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f002";
	pointer-events: none;
	z-index: 9000;
	transition: .4s;
	transform: translate(0px,-50%);
	left: 0;
	right: 0;
	text-align: center
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-for .slide-item a:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #E6001385;
	content: '';
	transition: .4s
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-for .slide-item:hover a:before,.listing-detail .image-sec-table .images-wrapper .detail-page-slider-for .slide-item:hover a:after {
	opacity: 1
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav .slide-item {
	border: 2px solid #f4f4f4;
	margin: 0 10px;
	height: 90px
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav .slide-item.slick-current {
	border: 2px solid #E60013
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button {
	font-size: 0;
	position: absolute;
	top: 0;
	text-align: center;
	z-index: 10;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s all
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button.slick-prev {
	left: 0;
	width: 100%;
	text-align: left;
	width: 30px;
	background: #fff
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button.slick-next {
	right: 0;
	width: 100%;
	text-align: right;
	width: 30px;
	background: #fff
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button.slick-next:before,.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button.slick-prev:before {
	content: "\f165";
	font-family: Flaticon;
	font-size: 35px;
	z-index: 1000;
	line-height: 1;
	color: #E60013;
	transition: .5s all
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button.slick-next:before {
	content: "\f163";
	font-family: Flaticon
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button:hover {
	background: #E60013;
	transition: .5s all
}

.listing-detail .image-sec-table .images-wrapper .detail-page-slider-nav button:hover:before {
	color: #fff;
	transition: .5s all
}

.listing-detail .property-details-box .price-box {
	font-size: 22px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.listing-detail .property-details-box .details {
	border-top: 2px solid #eee;
	border-bottom: 2px solid #eee;
	padding: 20px 0;
	padding-bottom: 15px;
	margin-bottom: 20px
}

.listing-detail .property-details-box .details .text,.listing-detail .property-details-box .details-2 .text {
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px
}

.listing-detail .property-details-box .details .text span {
	margin-left: 15px
}

.listing-detail .description-box .head {
	border-bottom: 2px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 20px
}

.listing-detail .description-box .desc {
	margin-bottom: 20px
}

.listing-detail .description-box .content-box .listing-infor {
	columns: 3;
	margin-bottom: 10px
}

.listing-detail .description-box .content-box .listing-infor li {
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px
}

.listing-detail .description-box .content-box .listing-infor li:after {
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #E60013;
	font-size: 16px
}

.listing-detail .description-box .content-box .location #locmap {
	height: 350px
}

.listing-detail .description-box .content-box .contact-form form textarea {
	height: 190px
}

.listing-detail .description-box .content-box .contact-form .form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.listing-slider-classic-sec .listing-slider-classic .swiper-wrapper .swiper-slide {
	height: 500px;
	width: auto
}

.listing-slider-classic-sec .listing-slider-classic .swiper-wrapper .swiper-slide iframe {
	width: 800px;
	height: 100%
}

.property-basic-info {
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
	padding: 20px 0
}

.property-basic-info .property-basic-info-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%
}

.property-basic-info .property-basic-info-wrapper .property-price {
	position: relative;
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	width: 15%;
	padding: 5px 15px 0 0;
	font-size: 26px;
	font-weight: 600;
	color: #E60013
}

.property-basic-info .property-basic-info-wrapper .property-details {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	width: 16%;
	border-left: 1px solid #e1e1e1;
	padding: 0 15px
}

.property-basic-info .property-basic-info-wrapper .property-details .property-icon {
	width: 32px
}

.property-basic-info .property-basic-info-wrapper .property-details .property-content {
	width: calc(100% - 42px);
	padding-left: 10px;
	font-size: 13px;
	line-height: 1.5em
}

.property-basic-info .property-basic-info-wrapper .property-details .property-content .property-label {
	display: block;
	font-weight: 300
}

.property-basic-info .property-basic-info-wrapper .property-cta {
	width: 21%
}

.listing-header {
	border-bottom: 1px solid #ccc
}

.listing-header .header-middle-sec,.listing-header .header-top-sec {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap
}

.listing-header .header-middle-sec .left-side ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap
}

.listing-header .header-middle-sec .left-side ul li {
	position: relative;
	padding-right: 30px;
	margin-bottom: 20px
}

.listing-header .header-middle-sec .left-side ul li:after {
	content: '';
	position: absolute;
	height: 100%;
	background-color: #ccc;
	width: 1px;
	display: inline-block;
	margin-left: 15px
}

.listing-meta .content-box {
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc
}

.listing-meta .content-box .meta-content .listing-property-details>ul {
	columns: 2;
	margin: 0 -15px 10px
}

.listing-meta .content-box .meta-content .listing-property-details>ul>li {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 10px;
	padding: 0 15px;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.listing-meta .content-box .meta-content .listing-property-details>ul>li .left-side .icon img {
	width: 15px;
	height: 15px;
	margin-right: 8px
}

.listing-meta .content-box .meta-content .listing-property-details>ul>li .left-side .icon i {
	font-size: 16px;
	margin-right: 8px
}

.listing-meta .content-box .meta-content .listing-property-details iframe {
	height: 450px
}

.listing-meta .content-box .meta-content .listing-property-details table th,.listing-meta .content-box .meta-content .listing-property-details table td {
	white-space: nowrap;
	padding: 10px
}

.listing-meta .content-box .meta-content .listing-property-details .custom-accordion .card .card-header ul {
	display: flex;
	position: absolute;
	right: 15px
}

.listing-meta .content-box .meta-content .listing-property-details .custom-accordion .card .card-header .collapsebtn.collapsed ul li span {
	color: #111
}

.listing-meta .content-box .meta-content .listing-property-details .custom-accordion .card .card-header ul li {
	margin-left: 10px
}

.listing-meta .content-box .meta-content .listing-property-details .floorplan-img {
	height: 310px;
	display: block;
	width: 310px;
	margin: 0 auto
}

.listing-meta .content-box .meta-content .listing-property-details .tag-box {
	margin-bottom: 10px
}

.listing-meta .content-box .meta-content .listing-property-details .tag-box .tags {
	margin-left: 15px
}

.listing-meta .content-box .meta-content .listing-property-details .tag-box .tags a {
	display: inline-block;
	padding: 5px 15px;
	border: #ccc solid 1px;
	margin: 0 5px 10px 0;
	background: #fff;
	font-weight: 500;
	color: #111
}

.listing-meta .content-box .meta-content .listing-property-details .tag-box .tags a:hover {
	border-color: #E60013;
	color: #E60013
}

.property-tag-2:hover {
	color: #fff
}

.broker-contact {
	margin-bottom: 15px
}

.broker-contact li {
	margin-bottom: 5px
}

.broker-contact li a {
	margin-left: 10px;
	transition: .3s all
}

.broker-contact li:hover a {
	padding-left: 15px;
	transition: .3s all
}

.broker-social ul {
	display: flex;
	justify-content: flex-start
}

.broker-social ul li a {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #E60013;
	border-radius: 50%;
	margin-right: 10px;
	border: 1px solid #E60013
}

.broker-social ul li a:hover {
	background-color: #E60013;
	color: #fff
}

.satisfy-clients {
	background-image: url("../images/aboutszbj.jpg");
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transition: border .3s ease-in,box-shadow .3s ease-in,background .3s,opacity .3s ease-in
}

.satisfy-clients:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #030e27;
	opacity: .5
}

.satisfy-clients .counter-box {
	display: flex;
	align-items: center;
	max-width: 100%
}

.satisfy-clients .counter-box .counter-icon {
	margin-right: 20px;
	font-size: 65px;
	line-height: 1;
	color: #fff
}

.satisfy-clients .counter-box .counter {
	text-transform: capitalize;
	white-space: nowrap
}

.satisfy-clients .counter-box .counter span.count {
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	display: block
}

.faq-box .faq-wrapper .title-img {
	width: 100%;
	height: 145px
}

#page-404,.coming-soon {
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	z-index: 1
}

#page-404 {
	background-image: url("../images/404.jpg")
}

.coming-soon {
	background-image: url("../images/coming-soonbg.jpg")
}

.coming-soon:before,#page-404:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
	left: 0;
	background-image: linear-gradient(to right,#00073,#fff80)
}

#page-404 section {
	display: flex;
	justify-content: center;
	height: 100vh;
	text-align: center;
	align-items: center;
	width: 100%
}

#page-404 .caption h5 {
	margin: 50px 0;
	font-weight: 400
}

.coming-soon .content-wrapper h1 a,#page-404 .caption h5 a {
	text-decoration: underline;
	text-underline-position: under
}

.coming-soon {
	padding: 30px 0;
	min-height: 100vh
}

.coming-soon .content-wrapper {
	padding: 100px 0
}

.coming-soon .content-wrapper .section-header {
	margin: 0;
	text-align: left
}

.coming-soon .content-wrapper .section-header h1 {
	word-break: break-word;
	font-size: 50px
}

.coming-soon .content-wrapper .counter {
	display: flex;
	margin: 30px 0
}

.coming-soon .content-wrapper .counter .counter-box {
	margin-right: 20px;
	text-align: center
}

.coming-soon .content-wrapper .counter .counter-box .inner-box {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.2);
	color: #fff;
	border-radius: 0;
	margin-bottom: 10px
}

.coming-soon .content-wrapper .newsletter-form {
	max-width: 550px
}

.coming-soon .content-wrapper .newsletter-form input::placeholder,.coming-soon .content-wrapper .newsletter-form input {
	background: transparent;
	color: #fff
}

.coming-soon .content-wrapper .newsletter-form .input-group-append {
	margin-left: 10px
}

.coming-soon .content-wrapper .social-media-icons ul {
	display: flex;
	padding: 0;
	list-style: none
}

.coming-soon .content-wrapper .social-media-icons ul li a {
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.2);
	margin-right: 5px;
	color: #fff;
	border-radius: 0
}

.coming-soon .content-wrapper .social-media-icons ul li:hover a {
	background: #E60013
}

.contact-us {
	background-image: url("../images/map-bg.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right
}

.contact-us .contact-us-form {
	background-color: #E60013;
	padding: 65px 50px;
	margin-bottom: -50px;
	margin-left: -30px
}

.contact-us .contact-us-form .form-control::placeholder {
	color: #fff
}

.contact-us .contact-us-form h4 {
	font-size: 35px;
	font-weight: 700
}

.contact-us .contact-info {
	background-color: #fff;
	padding: 40px 50px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1)
}

.contact-us .contact-info h5 {
	margin-bottom: 10px
}

.contact-map,.contact-map iframe {
	width: 100%;
	height: 380px;
	border: 0
}

.gallery .grid .grid-item {
	position: relative;
	overflow: hidden
}

.gallery .grid .grid-item a:before {
	position: absolute;
	top: 50%;
	opacity: 0;
	color: #fff;
	font-size: 26px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f002";
	pointer-events: none;
	z-index: 9000;
	transition: .4s;
	transform: translate(0px,-50%);
	left: 0;
	right: 0;
	text-align: center
}

.gallery .grid .grid-item a:after {
	position: absolute;
	top: 0;
	left: 15px;
	width: 92.3%;
	height: 100%;
	opacity: 0;
	background: #E60013;
	content: '';
	transition: .4s
}

.gallery .grid .grid-item:hover a:before,.gallery .grid .grid-item:hover a:after {
	opacity: 1
}

.service-detail-infro {
	margin-bottom: 30px
}

.service-detail-infro {
	columns: 2
}

.service-detail-infro li {
	font-weight: 400;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px
}

.service-detail-infro li:after {
	content: "\f162";
	font-family: "Flaticon";
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #E60013;
	font-size: 16px
}

.service-detail-slide .slide-item {
	height: 450px
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul {
	padding: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li {
	list-style: none
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label {
	color: #555;
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 15px
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li:last-child label {
	margin-bottom: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label input {
	position: absolute;
	z-index: -1;
	opacity: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label input:checked ~ .input-chechbox {
	background-color: #E60013;
	border: 1px solid #E60013
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label input:checked ~ .input-chechbox:before {
	display: block
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label .input-chechbox:before {
	content: "\f00c";
	font-size: 10px;
	color: #fff;
	line-height: 18px;
	display: none;
	text-align: center;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories ul li label .input-chechbox {
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	border-radius: 3px
}

.sidebar_wrap .sidebar .sidebar_widgets.widget-brand .shop-categories ul li label .input-chechbox {
	border: 1px solid #E60013;
	background: #f9f9f9
}

.sidebar_wrap .sidebar .sidebar_widgets.widget-color .shop-categories ul li label .input-chechbox {
	width: 50px
}

.sidebar_wrap .sidebar .sidebar_widgets.widget-color .shop-categories .color-right {
	padding-left: 25px
}

.sidebar_wrap .sidebar .sidebar_widgets .sidebar-banner {
	text-align: center
}

.sidebar_wrap .sidebar .widget-size .shop-categories ul li {
	display: inline-block;
	list-style: none
}

.sidebar_wrap .sidebar .widget-size .shop-categories ul li label {
	line-height: 40px;
	text-align: center;
	margin-bottom: 0
}

.sidebar_wrap .sidebar .widget-size .shop-categories ul li label .input-chechbox {
	width: 42px;
	height: 42px;
	border-radius: 3px;
	border: 1px solid #f0f0f0;
	background-color: #f0f0f0
}

.sidebar_wrap .sidebar .widget-size .shop-categories ul li label .input-chechbox:before {
	content: none
}

.sidebar_wrap .sidebar .widget-size .shop-categories ul li label input:checked ~ .input-chechbox {
	border: 1px solid #E60013;
	background-color: #E60013;
	color: #fff
}

.sidebar_wrap .sidebar .widget-color .shop-categories {
	display: flex;
	align-items: center
}

.sidebar_wrap .sidebar .widget-color .shop-categories ul li label {
	margin-bottom: 15px
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories .range-slider {
	font-size: 16px;
	position: relative;
	align-items: center
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories .range-slider input {
	margin: 0
}

.sidebar_wrap .sidebar .sidebar_widgets .shop-categories .range-slider input:last-child {
	margin-left: 16px
}

.shop-categories .ui-widget.ui-widget-content {
	margin: 1.85em 0
}

.shop-top-filter {
	margin-bottom: 25px
}

.shop-top-filter select {
	padding: 16px;
	border-radius: 3px;
	font-size: 16px;
	width: 100%;
	border: 1px solid #ddd
}

.shop-top-filter .shop-view p {
	margin-bottom: 0;
	text-align: right
}

.shop-section .shop-wrapper {
	max-width: 100%;
	background-color: #fff;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent
}

.shop-section .shop-wrapper:hover .product-item-img .product-img-inner .hover-icons {
	opacity: 1
}

.shop-section .shop-wrapper .product-item-img .product-img-inner {
	position: relative
}

.shop-section .shop-wrapper .product-item-img .product-img-inner .hover-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-transform: uppercase;
	opacity: 0;
	width: 100%;
	transition: .4s ease
}

.shop-section .shop-wrapper .product-item-img .product-img-inner .hover-icons a {
	background-color: rgba(255,255,255,0.8);
	padding: 8px 12px;
	margin: 0 5px
}

.shop-wrapper .product-item-img .product-img-inner .hover-icons a i {
	font-size: 16px;
	vertical-align: middle
}

.shop-section .shop-wrapper .product-img-inner {
	padding: 15px;
	text-align: center
}

.shop-section .shop-wrapper .product-item-info {
	padding: 0 15px 15px 15px;
	text-align: center
}

.shop-wrapper .product-item-info .product-name {
	margin-bottom: 3px;
	overflow: hidden
}

.product-item-info .product-name a {
	font-size: 16px;
	font-weight: 500
}

.product-item-info .price {
	display: inline-block
}

.product-item-info .price ins {
	color: #E60013;
	font-size: 16px;
	margin-right: 5px;
	text-decoration: none
}

.product-item-info .price del {
	color: #909296;
	font-size: 16px;
	text-decoration: line-through
}

.product-item-info .product-rating {
	display: block;
	color: #f29f29;
	font-size: 13px;
	margin-bottom: 6px
}

.product-item-info .btn-add-to-cart {
	border-radius: 3px;
	font-size: 13px;
	text-align: center;
	display: block;
	font-weight: 500;
	color: #E60013;
	text-transform: uppercase;
	border: 1px solid #E60013;
	padding: 8px
}

.product-item-info .btn-add-to-cart:hover {
	background-color: #E60013;
	color: #fff
}

.product-detail .property-details-wrap .new-price del {
	text-decoration: line-through;
	font-weight: 400;
	font-size: 17px;
	margin-left: 5px
}

.product-detail .listing-detail-heading {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	padding-right: 25px
}

.product-detail .listing-detail-heading .product-availability {
	color: #E60013;
	font-size: 16px
}

.product-availability .in-stock {
	color: #000;
	font-weight: 500
}

.product-detail .details .product-info {
	font-size: 16px;
	font-weight: 500
}

.product-detail .property-details-box .details {
	border-bottom: 0
}

.product-detail .details .product-info-2 .quantity {
	border: 1px solid #e6e6e6;
	max-width: 142px;
	display: inline-block;
	border-radius: 3px
}

.product-detail .details .product-info-2 .btn-submit {
	margin-left: 10px
}

.product-detail .details .product-info-2 .quantity .add {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	color: #666;
	line-height: 40px;
	float: left;
	font-size: 16px
}

.product-detail .details .product-info-2 .quantity .plus-btn {
	float: right
}

.product-detail .details .product-info-2 .quantity input {
	padding: 9px 10px;
	border: 0;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #E60013;
	margin-left: 4px
}

.product-detail .details .product-info-2 .quantity-title {
	margin-bottom: 10px;
	font-size: 19px
}

.product-detail .details .product-info-2 .btn-margin {
	margin-left: 10px
}

.product-detail .details .product-timer {
	position: relative;
	overflow: hidden;
	display: inline-block;
	border-radius: 3px;
	margin-top: 15px;
	padding: 5px 16px;
	background-color: #f5f5f5
}

.product-detail .details .product-timer li {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	list-style-type: none;
	padding: 0 16px 0 0
}

.product-detail .details .product-timer li:last-child {
	padding-right: 0
}

.product-detail .details .product-timer li span {
	display: block;
	color: #E60013;
	font-size: 17px;
	text-align: center
}

.product-detail .details .product-variant-parent {
	display: inline-block;
	float: left;
	width: 100%;
	margin: 15px 0
}

.product-detail .details .product-variant {
	width: auto;
	float: left;
	background: #f5f5f5;
	padding: 15px;
	border-radius: 3px
}

.product-detail .details .product-variant p {
	display: table;
	margin: 0 0 8px
}

.product-detail .details .product-variant p label {
	display: table-cell;
	width: 130px;
	font-weight: 600;
	font-size: 16px;
	color: #000
}

.product-detail .details .product-variant p .stock-green {
	color: #19be05
}

.product-detail .listing-detail-heading .social-media ul {
	display: flex;
	list-style: none;
	padding: 0
}

.product-detail .listing-detail-heading .social-media ul li a {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #E60013;
	margin: 0 5px 0 0;
	border: 1px solid #E60013
}

.product-detail .listing-detail-heading .social-media ul li a:hover {
	background-color: #E60013;
	color: #fff
}

.container{
	max-width:85%;
}

/******首页太阳集团tyc8722****/
.syabout{
	background:url(../images/aboutbg2.png);
	padding:100px 0;
}

.syaboutleft{
	padding-right:50px;
}
.syaboutleft h2{
	color:#E60013;
	margin-bottom:15px;
}
.syaboutleft h4{
	font-family: Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', Arial, sans-serif;
	color:#333;
	margin-bottom:2em;
}
.syaboutleft p{
	font-size:16px;
	line-height:30px;
	text-indent:2em;
	margin-bottom:10px;
}
.sychakan{
	margin-top:4em;
}
.sychakan .btn-first{
	    padding: 0 36px;
}

.syshuzib{
	background:#E60013;
	color:#fff;
	padding: 22px 0;
    text-align: center;
	position: relative;
    top: -60px;
}
.syshuzib .col-lg-3{
	border-right:1px solid #fff;
}
.syshuzib  .num{
	font-size:30px;
	font-weight:600;
}
.syshuzib .numwz{
	font-size:16px;
}


/********首页产品********/
.syproduct{
	padding:100px 0 50px;
	background:url(../images/jh_in_cpbg.jpg);
}
.productlist{
	margin-left: 0rem;
    margin-right: 0rem;
	background:#fff;
    position: relative;
	-webkit-box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
    transition: all .36s ease;
   
}
.productlist:hover{
	background:rgba(230,0,19,1);
}
.productlist .col-lg-7{
	padding:0px;
}
.index_2_2_mid_mid_right_jj{
	padding-left: 1.5rem;
    padding-right: 1.5rem;
	margin-top:20%;
}
.index_2_2_mid_mid_right_1 daxie{
	font-family: Arial, Helvetica, sans-serif;
    color: #525b5a;
    font-size: 0.875rem;
}
.productlist:hover .index_2_2_mid_mid_right_1 {
	color:#fff;
}
.index_2_2_mid_mid_right_2{
	height: 3.5rem;
    font-size: 1.5rem;
    color: #030303;
    font-weight: bold;
    position: relative;
}
.productlist:hover .index_2_2_mid_mid_right_2{
	color:#fff
}
.index_2_2_mid_mid_right_2 {
	height: 3.5rem;
	font-size: 1.5rem;
	color: #030303;
	font-weight: bold;
	position: relative;
}
.index_2_2_mid_mid_right_2:before{
	content: "";
    position: absolute;
    z-index: 1;
    background: #E60013;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0%;
    width: 3rem;
    bottom: 0px;
    height: 3px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.productlist:hover .index_2_2_mid_mid_right_2:before{
	 background: #fff;
}
.index_2_2_mid_mid_right_3{
	line-height: 1.5rem;
    height: 6rem;
    overflow: hidden;
    color: #525b5a;
    font-family: "SourceHanSansCN";
    margin: 1rem 0 1.5rem 0;
}
.productlist:hover .index_2_2_mid_mid_right_3 {
		color: #fff;
	}

.index_2_2_mid_mid_right_4 span{
	display: inline-block;
    border: 1px #b0b0b0 solid;
    width: 2.25rem;
    height: 2.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/img11.png);
}
.productlist:hover  .index_2_2_mid_mid_right_4 span{
	border-color: #fff;
	background-image: url(../images/img12.png);
}
.index_2_2 .swiper-wrapper{
	height:42vh;
}
.index_2_2 .swiper-slide{
	padding: 0px calc((100vw - 900px) * 0.0127604166666667)!important;
    width: 900px!important;
}
.index_2_2 .swiper-pagination{
	display:block;
}
.swiper-pagination-index_2_2 {
	position: static;
	margin-bottom: 2.875rem;
	margin-top: 2.5rem;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 24px;
    height: 6px;
    border-radius: 50px;
    opacity: 1;
    background: #E60013;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0 4px;
}
.swiper-pagination-bullets .swiper-pagination-bullet{
	width: 12px;
    height: 6px;
    display: inline-block;
    border-radius: 10px;
    background: #E60013;
    margin-right: 10px;
    transition: .6s;
    border: 2px solid #E60013;
    position: relative;
    top: 5px;
}
.swiper-pagination-clickable .swiper-pagination-bullet{
	cursor: pointer;
}




/******业务领域******/
@keyframes scaleDraw {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/ 0%{transform: scale(1);  /*开始为原始大小*/}25%{transform: scale(1.1); /*放大1.1倍*/}50%{transform: scale(1);}75%{transform: scale(1.1);}}
.slideshow-image{height: 100%; width: 100%; -webkit-animation-name: scaleDraw; /*关键帧名称*/ -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/-webkit-animation-iteration-count: infinite;  /*动画播放的次数*/-webkit-animation-duration: 20s; /*动画所花费的时间*/}

.slideshow-image{
	height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
 
}
.qiyunshangushi{
	overflow:hidden;
}
.qiyunshangushi .qiyunshangushi_01{
	
	position: relative;
}
.syqiyunshanhjtp{
	height: 90vh;
}
.qiyunshangushi_02{
	flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.qiyunshangushi_03{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}
.qiyunshangushi_04{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.4);
    content: "";
    z-index: 2;
}
.qiyunshangushi .qyscontainer{
	position: relative;

   top:10%;
    z-index: 2;
}
.qiyunshangushi .main-slider-inner{
	position: relative;
    display: block;
}
.qiyunshangushi .main-slider__content{
	 position: relative;
    display: block;
	width:50%;
}
.qiyunshangushi .main-slider-tagline{
	position: relative;
    display: inline-block;
    color: #ffffff;
    font-size:35px;
	
    line-height: 80px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: all 1000ms ease;
    transform: translateY(80px);
}
.qiyunshangushi .main-slider__title{
	color: #ffffff;
    font-size: 18px;
    line-height: 1em;
    font-family: '微软雅黑';
    margin-top: 22px;
    margin-bottom: 34px;
    opacity: 1;
    transition: all 1500ms ease;
    transform: translateY(80px);
}
.qiyunshangushi .main-slider__text{
	 color: #ffffff;
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    opacity: 1;
    transition: all 1500ms ease;
    transform: translateY(80px);
}

.syqiyunshanhj{
	position: relative;
    z-index: 9;
    bottom:0;
    left: 0;
    right: 0;
	transition: all 1000ms ease;
    transform: translateY(80px);
}

.syqiyunshanhj li{
	width:20%;
	float:left;
	text-align:center;
	
}
.syqiyunshanhj li img{

	max-width:100%;
}
.syqiyunshanhj li:hover{
	background: rgba(230,0,19,0.2);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	color:#fff
}

.qiyunshangushi .nav-item a{
	color:#fff;

	font-size:18px;
}
.qiyunshangushi .nav-link.active, .qiyunshangushi .show>.nav-link,.qiyunshangushi .nav-link:hover,.qiyunshangushi .nav-link:active{
		background: rgba(230,0,19,0.2);
}
.syqiyunshanhjtp .qyschakan{
	margin-top:8em;
}
.syqiyunshanhjtp .thm-btn{
	 background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 51px;
}
.syqiyunshanhjtp .thm-btn:hover{
	    background-color: #fff;
    color: #fff;
	border-color: #E60013;
}

.qyschakan:hover .thm-btn {
	background:#E60013 !important;
    text-decoration: none;
    transition: .5s;
}




/*******底部******/
.dbright {
	    border-left: 1px solid #f0f0ff7a;
		padding-left:25px;
}

.copyright a{
	color:#fff;
}
.syshipin{
	text-align:center;
}

.syshipin h1{
	font-size:50px;
	margin-bottom:10px;
	font-weight:500;
}
.syshipin p:after{
	content: '';
    display: block;
    width: 10%;
    height:1px;
    background-color: #fff;
    position: absolute;

    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
	margin-top:15px;
}
.syshipin p{
	font-size:22px;
	color:#fff;
	margin-bottom:40px;
}
.syshipin h2{
	font-size:25px;
	color:#fff;
	font-weight:500;
}
.video-banner{
	position:relative;
	text-align:center;
	background:#000;
}
.video-banner{
	max-height:700px;
}
.video-banner video{
	max-height:700px;
}
.video-banner .jarallax:before {
    position: absolute;
    content: "";
    width: 100%;
	height:100%;
    max-height: 700px;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.footer-box img{
	width:150px;
}
@media only screen and (max-width: 1024px){
	.video-banner video{
	max-height:100%;
	width:100%;
}
.video-banner .jarallax:before {
    position: absolute;
    content: "";
    width: 100%;
	height:100%;
    max-height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.video-banner{
	max-height:100%;
}
}

/***内页导航****/
.nydaohang{
	    width: 100%;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    position: absolute;
    top: auto;
    left: auto;
    z-index: 99;
    bottom: 0px;
    right: auto;
	background:rgba(0, 0, 0, 0.3);
}
.dn{display:none;}
.nydaohang ul li{
	list-style:none;
	float:left;
	width:180px;
	    border-right: #888888 1px solid;
		text-aligN:center;
		padding:13px 0;
}
.nydaohang a {
	color:#fff;
	font-size:16px;
}
.nydaohang01 .active{
	background:#E60013;
}

.about-desc p{
	text-indent:2em;
	color:#444;
	font-size:16px;
}
.qiyewenhuaright{
	overflow:hidden;
}
.qiyewenhuaright img{
	 max-width: 100%;
    transition: all 1.5s;
    -moz-transition: all 1.5s;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
	
}
.qiyewenhuaright img:hover{
	
	
	-moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

@media only screen and (max-width: 1024px){
	
	.container {
		max-width: 98%;
	}
	.syaboutleft p {
		font-size: 14px;
		line-height: 30px;
		text-indent: 0px;;
		margin-bottom: 10px;
	}
	.simple-banner{
		height:auto !important;
	}
	.simple-banner .slide-item{
		height:auto !important;
	}
	.syaboutleft {
		padding-right: 0px;
	}
	.syabout{
		padding-top:30px;
	}
	.syaboutleft h2{
		font-size:24px;
	}
	.syaboutleft h4 {
		margin-bottom: 1em;
		font-size:18px;
	}
	.sychakan {
		margin-top: 1em;
		text-align:center;
		margin-bottom:15px;
	}
	.section-header .section-heading h5 {
		font-weight: 600;
		margin-bottom: 20px;
		text-transform: uppercase;
		font-size: 24px;
		color: #E60013;
	}
	.section-header .section-heading h3 {
		padding-bottom: 10px;
		font-weight: 600;
		font-family: Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '微软雅黑', Arial, sans-serif;
		color: #333;
		font-size:18px;
	}
	.syproduct {
		padding: 30px 0 20px;
	}
	p {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 10px;
		font-family: 'Rubik',sans-serif;
	}
}

















