@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root{
	--primary-font:'Roboto', sans-serif;
	--black:#111;
	--dark-gray:#333333;
	--gray:#666;
	--orange:#f89c1c;
	--blue:#194578;
	--white:#fff;
	--gray-bg:#f7f7f7;
 }
body {
    width: 100%;
    height: 100%;
    font-family:var(--primary-font);
    color:var(--dark-gray);
    font-size:16px;
    background-color:#fff;
    -webkit-transition:all 0.3s ease-in-out 0s;
    -moz-transition:all 0.3s ease-in-out 0s;
    transition:all 0.3s ease-in-out 0s;
    line-height:28px;
}
html {
    width: 100%;
    height: 100%;
}
a {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
}
a:focus {
    outline: medium none;
}
button:focus {
    outline: 0px dotted;
    outline:0px auto -webkit-focus-ring-color;
}
b{
	font-family:var(--primary-font);
	font-weight:bold;
	color:var(--black);
	}
p{
	color:var(--dark-gray);
	line-height:30px;
	font-size: 16px;
	}
h1{
	color: #111;
	font-size:36px;
	line-height:40px;
	font-weight:bold;
	font-family: var(--primary-font);
	margin-top: 0;
	margin-bottom:20px;
	width:100%;
	}
h2{
	color: #111;
	line-height:34px;
	font-size:28px;
	font-weight: normal;
	font-family:var(--primary-font);
	margin-top: 0;
	margin-bottom:30px;
	width:100%;
	}
h3{
	color: #1c1b17;
	line-height:22px;
	font-size:20px;
	font-family:var(--primary-font);
	margin-top: 0;
	width:100%;
	font-weight: bold;
	}
h4{
	color: #111;
	line-height:22px;
	font-size:18px;
	font-family:var(--primary-font);
	margin: 0;
	width:100%;
	}
.row-box{
	width:100%;
	clear:both;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.bor-re{
	border-radius:4px;
}
/*---- header ----*/
section, footer{
	width:100%;
	clear:both;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	}
.padding{
	padding:50px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.p-top{
	padding-top:70px;
	}
.navbar{
	padding:0;
}
.navbar .container{
	position:relative;
}
.navbar-toggler span {
    width: 25px;
    height: 3px;
    background:#333;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 4px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform: rotate(-45deg) translate(5px,-5px);
	-ms-transform: rotate(-45deg) translate(5px,-5px);
	transform: rotate(-45deg) translate(5px,-5px);
}
.navbar-light .navbar-brand{
	position: relative;
	z-index: 1;
	-webkit-transition:all 0.3s ease-in-out 0s;
    -moz-transition:all 0.3s ease-in-out 0s;
    transition:all 0.3s ease-in-out 0s;
}
.navbar-light .navbar-nav .nav-link{
	font-size:14px;
	color:#fff;
	padding:1.5rem 0.7rem;
	position: relative;
	letter-spacing:1px;
}
.navbar-light .navbar-nav .active .nav-link, .navbar-light .navbar-nav .nav-link:hover{
	color:var(--orange);
}
.drop-btn .dropdown-toggle, .drop-btn a:not([href]):not([tabindex]).dropdown-toggle{
	color: #fff;
	cursor: pointer;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 6px 15px;
}
.drop-btn .dropdown-toggle:hover, .drop-btn a:not([href]):not([tabindex]).dropdown-toggle:hover{
	background-color:#fff;
	color:#222;
}
.drop-btn .dropdown-toggle::after{
	content: none;
}
.login-tab .dropdown-toggle::after{
	content: none;
}
.login-tab .dropdown-toggle img{
	width:100%;
}
.login-tab .dropdown-toggle, .login-tab a:not([href]):not([tabindex]).dropdown-toggle{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: block;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
}
.login-tab .dropdown-menu{
	left: auto;
    right: 0;
	border:0;
	margin-top: 10px;
	border-radius:5px;
}
.login-tab .dropdown-menu::before{
	left: auto;
	right:9px;
	top: -8px;
	border-bottom: 8px solid #fff
}
.p-n{
	padding:.36rem 1.5rem;
	font-weight: normal;
	font-size: 17px;
	font-family:var(--primary-font);
	width: 100%;
	display: block;
}

.dropdown-toggle .fa-caret-down {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 12px;
    position: relative;
    top: 2px;
    color:#f88816;
    left: 2px;
}
.dropdown-menu{
	min-width: 16rem;
	margin-top:0;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
	border-top-left-radius:0;
    border-top-right-radius:0;
	border-top:2px solid #00aeff;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 42px;
    top:-10px;
    border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 8px solid #00aeff;
    width: 0;
    height: 0;
    z-index: 99;
}
.dropdown-item .menu-img{
	position:absolute;
	right:10px;
	z-index:1;
	top:0;
	display:none;
	opacity:0;
	-webkit-transition:all 0.3s ease-in-out 0s;
    -moz-transition:all 0.3s ease-in-out 0s;
    transition:all 0.3s ease-in-out 0s;
}
.dropdown-menu .dropdown-item {
    padding:.36rem 1.5rem;
    font-weight: normal;
    font-size: 14px;
    border: 0;
	color: #212529;
}
.dropdown-menu li.dropdown-submenu .dropdown-toggle{
	position:relative;
}
.dropdown-menu li.dropdown-submenu .dropdown-toggle::after {
    position: absolute;
    content: "›";
    right: 17px;
    top:4px;
    font-size:19px;
    color: #dad6d6;
}
.dropdown-menu li:hover::after{
	color:#fcb800;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left:0px;
	border-top: 1px solid #d9d9d9;
	border-radius: .25rem;
	height: 100%;
}
.dropdown-submenu .drop-img{
	position:absolute;
	bottom:0;
}
.dropdown-submenu .dropdown-menu .img-item img{
	width:100%;
}
.dropdown-submenu .dropdown-menu::before {
    content: none;
}
.dropdown-submenu .dropdown-menu .dropdown-item{
	color: #212529;
	font-size:13px;
}
.dropdown-submenu .dropdown-toggle::after{
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
}
.navbar ul.dropdown-menu li:hover > a{background:#fcb800; color:#fff;}
.navbar ul.dropdown-menu li:last-child > a{background:#fcb800; color:#fff;}
.dropdown-item:hover{background:var(--blue); color:#fff;}
@media only screen and (min-width: 767px) {
.navbar ul li:hover> ul{display:block}
.navbar ul ul{position:absolute;top:100%;left:0;min-width:250px;display:none;margin:0;}
.navbar ul ul li:hover> ul{display:block}
.navbar ul ul ul{position:absolute;top:0;left:100%;min-width:250px;display:none}
.navbar ul ul ul li:hover ul{display:block}
.navbar ul ul ul ul{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}
}
.drop-btn .dropdown-menu{
	left:auto;
	right:0;
}
.inner-menu .navbar {
    background-color: #2f2f2f;
}
.top-none .navbar-brand img {
    width:140px;
}
.top-none .navbar{
	background-color:var(--blue);
}
.top-none .navbar-light .navbar-nav .nav-link {
    padding: 1rem 1rem;
}
/*---- slider ----*/
.m-top{
	margin-top:66px;
}
#banner{
	background-color:#000;
}
#banner .carousel-inner{
	position: relative;
}
#banner .container{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
}
#banner .carousel-caption {
	right: 0;
	left: 0;
	color: #fff;
	padding: 25px;
	max-width: 60%;
	bottom: auto;
	margin: 0 auto;
}
#banner .carousel-caption h1{
	color:#fff;
	margin:20px 0;
}
#banner .carousel-caption p{
	color:#fff;
	font-size:18px;
}
#banner .carousel-item img.main-img{
	opacity:0.6;
	width: 100%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none;
	background-color:#000;
	padding:7px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	text-align: center;
}
.carousel-control-next, .carousel-control-prev{
	width:60px;
}
.carousel-control-next .fa, .carousel-control-prev .fa{
	font-size:25px;
}
.top-shad{
	position: relative;
}
.top-shad::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height:120px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 65%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 65%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 65%);
}
/*---- slider close ----*/

/*---- carousel-close ----*/
.cd-top {
    bottom:4px;
    color: #333;
    display:inline-block;
    font-size: 12px;
    line-height: 0;
    padding: 8px;
    position:fixed;
    right:4px;
	animation: bounce 3000ms infinite;
    width:40px;
	height:40px;
    border-radius: 50px;
    margin: 0 auto;
    text-align: center;
    z-index: 9999;
	visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  background-color:transparent;
}
@-webkit-keyframes bounce {
 0%,
 100%,
 20%,
 50%,
 80% {
  -webkit-transform:translateY(0)
 }
 40% {
  -webkit-transform:translateY(-30px)
 }
 60% {
  -webkit-transform:translateY(-15px)
 }
}
@-moz-keyframes bounce {
 0%,
 100%,
 20%,
 50%,
 80% {
  -moz-transform:translateY(0)
 }
 40% {
  -moz-transform:translateY(-30px)
 }
 60% {
  -moz-transform:translateY(-15px)
 }
}
@-o-keyframes bounce {
 0%,
 100%,
 20%,
 50%,
 80% {
  -o-transform:translateY(0)
 }
 40% {
  -o-transform:translateY(-30px)
 }
 60% {
  -o-transform:translateY(-15px)
 }
}
@keyframes bounce {
 0%,
 100%,
 20%,
 50%,
 80% {
  transform:translateY(0)
 }
 40% {
  transform:translateY(-30px)
 }
 60% {
  transform:translateY(-15px)
 }
}
.cd-top  i.fa{
	font-size:18px;
	color:#046425;
}
.cd-top img{
	vertical-align: inherit;
	}
.cd-top:hover{
	color:#ff5736;
	}
.cd-top:focus{
	color:#ff5736;
	}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity:1 
}
.img-zoom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.img-zoom:hover, .ex-pro-box:hover .img-zoom, .ex-pro:hover .img-zoom {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.btn{
	font-size:16px;
	font-family:var(--primary-font);
	padding:0.6rem 1.4rem;
    line-height: 23px;
}

#pills-tab .btn-primary, .maga-search .nav-pills .nav-link {
	position:relative;
	background-color: #ffffff;
	border-radius:0;
	color: #333;
	cursor: pointer;
	margin-left:5px;
	margin-right:5px;
	margin-bottom: 0;
	font-size: 16px;
	text-align: center;
	line-height: 35px;
	width: 85px;
	border-color: #fff;
	padding: .3rem 1rem;
	-webkit-transition: all .0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}
#pills-tab .btn-primary.active, .maga-search .nav-pills .nav-link.active{
	background-color:var(--orange);
	border-color:var(--orange);
	color: #ffffff;
}
#pills-tab .btn-primary.active::before {
    background-color:var(--orange);;
    content: none;
    height: 15px;
    margin-left: 5px;
    position: absolute;
    top: 35px;
    width: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-orange{
	background-color:var(--orange);
	border-color:var(--orange);
	color:#fff;
}
.btn:hover{
	background-color:transparent;
	border-color:#333;
	color:#333;
}
.btn-orange:hover{
	background-color:transparent;
	border-color:var(--orange);
	color:var(--orange);
}
.btn-white{
	background-color:#fff;
	color:#222;
}
.btn-white:hover{
	background-color:transparent;
	border-color:#fff;
	color:#fff;
}
.floating-form .form-control{
	border-top:0;
	border-left:0;
	border-right:0;
	border-bottom:1px solid #c4c4c4;
	border-radius:0;
	position:relative;
	z-index:2;
	background-color:transparent;
	margin-top: 20px;
	color: #000;
}
.floating-form .form-group{
	position:relative;
}
.floating-form .form-control:focus {
    color: #222;
    background-color: #fff;
    border-color: #db3539;
    outline: 0;
    box-shadow: none;
}
.floating-form .col-form-label {
    color: #999;
    position: absolute;
	top:0;
	left: 13px;
	z-index:1;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.floating-form .label-top{
	color:#555;
	top: -22px;
	font-size:12px;
}
.owl-carousel .owl-controls{
	position: absolute;
	width: 100%;
	top:45%;
}
.owl-carousel .owl-nav{
	width: 100%;
	clear: both;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.owl-carousel .owl-prev, .owl-carousel .owl-next{
	display:inline-block;
	color: #979797;
	font-size: 24px;
}
.owl-carousel .owl-next{
	margin-left: auto;
	margin-right:-20px;
}
.owl-carousel .owl-prev{
	margin-left:-20px;
}
.maga-search{
	position: absolute;
	bottom:50px;
	z-index:10;
	width: 100%;
	left: 0;
	right: 0;
}
.maga-search .nav-pills li.nav-item a.nav-link {
    background-color: #ffffff;
    border-radius:0px;
    color: #333;
    font-size: 16px;
    text-align: center;
    line-height: 35px;
	width: 85px;
	padding: .3rem 1rem;
	-webkit-transition: all .0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
}
.maga-search .nav-pills li.nav-item a.nav-link:first-child {
    margin-right: 15px;
}
.maga-search .nav-pills li.nav-item a.nav-link.active {
    background-color:var(--orange);
    border-color:var(--orange);
    color: #ffffff;

}
.search-box{
	background-color:rgba(17, 17, 17, 0.8);
	padding:15px;
	border-radius: 4px;
	max-width: 990px;
	margin:0 auto;
}
.search-box .s-item{
	display:inline-block;
	margin-left:15px;
	width: 16%;
}
.search-box .adv-item{
	width: 11%;
    padding-right: 10px;
}
.search-box .s-item:first-child{
	width:34.6%;
	margin-left:0;
}
.search-box .btn-orange{
	width:100%;
}
.form-control {
    height: calc(1.8em + .75rem + 2px);
    color: #222;
    border: 1px solid #b0b0b0;
    border-radius: .15rem;
	font-size: 15px;
}
.search-icon input{
	background-color: transparent;
	background-image: url('../images/pin.png');
	background-repeat: no-repeat;
	background-position: left 15px center;
	height: calc(2em + .75rem + 2px);
	padding-left: 34px;
	color: var(--white);
}
.filter .dropdown-menu {
    white-space: nowrap;
    min-width: 16rem;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
	border:1px solid #dce0e0;
	border-radius:6px;
	margin: 10px 0;
}
.filter .dropdown-menu::before{
	content:none;

}
.filter .btn-br{
   background-color:transparent;
   color:var(--white);
}
.drop-pad{
	padding:10px 15px;
}
.filter .dropdown-menu .form-check {
    padding: 6px 0;
}
.date-picker label, .min-max label{
	font-size:14px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	line-height: 16px;
	display: inline-block;
	color: #555;
	font-size: 14px;
	padding-right: 20px;
}

	[type="radio"]:checked + label:before,
	[type="radio"]:not(:checked) + label:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 18px;
		height: 18px;
		border: 1px solid #cecdcd;
		border-radius: 100%;
		background: #fff;
	}

	[type="radio"]:checked + label:after,
	[type="radio"]:not(:checked) + label:after {
		content: '';
		width: 10px;
		height: 10px;
		background:var(--blue);
		position: absolute;
		top:4px;
		left:4px;
		border-radius: 100%;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}

	[type="radio"]:not(:checked) + label:after {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	[type="radio"]:checked + label:after {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
[type="radio"]:checked + label:before{
	border-color:var(--blue);
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"]:checked + label,
    [type="checkbox"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        display: inline-block;
        color: #555;
		font-size: 14px;
		padding-right: 20px;
		padding-right: 20px;
		line-height: 22px;
		margin-bottom: 5px;
		margin-top: 5px;
    }

        [type="checkbox"]:checked + label:before,
        [type="checkbox"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width:21px;
            height:21px;
            border: 1px solid #ddd;
            border-radius:2px;
            background: #fff;
			 -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="checkbox"]:checked + label:after,
        [type="checkbox"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            content: "\f00c";
			color:var(--blue);
			font: normal normal normal 14px/1 FontAwesome;
			font-size: 14px;
		    font-size: inherit;
		    text-rendering: auto;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="checkbox"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }
		[type="checkbox"]:checked + label:before{
	border-color:var(--blue);
}
[type="checkbox"]:checked, [type="checkbox"]:not(:checked){
	position: absolute;
    left: -9999px;
}
.cat-drop [type="checkbox"]:checked + label, .cat-drop [type="checkbox"]:not(:checked) + label{
	line-height: 18px;
}
.btn-br{
	border:1px solid #b0b0b0;
	background-color:#fff;
	border-radius: .15rem;
	font-family: var(--primary-font);
	font-size:15px;
	padding: 0.6rem 1.2rem;
}
.filter .dropdown-toggle{
	width:100%;
	text-align: left;
}
.filter .dropdown-toggle::after{
	position: absolute;
	right: 12px;
	top: 19px;
}
.filter .btn-link{
	color:var(--white);
	margin-top:8px;
	display: block;
	position:relative;
}
.filter .select-box{
  color: var(--white);
  background:url(../images/down-arrow-w.png) right 10px center no-repeat;
}
.filter .select-box option{
	color: var(--dark-gray);
}
.filter .btn-link.collapsed::before, .filter .btn-link::before {
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
    content: "\f142";
	right: 0;
	position: absolute;
	top: 8px;
}
.filter .btn-link::before{
	content: "\f00d";
}
.filter .btn-link:hover{
	color:var(--orange);
	text-decoration:none;
}
.filter .form-control{
    background-color: transparent;
	color:var(--white);
	border-color: var(--white);
}
.filter .form-control::placeholder{
	color: var(--white);
}
.filter .search-icon input{
	background-image: url(../images/pin-w.png);
}
.select-box {
    background: url(../images/down-arrow.png) right 10px center no-repeat;
    width: 100%;
	padding-right: 26px;
	background-size: 11px;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #b6b6b6;
    font-family: 'arial';
    font-size: 15px;
    color: #222222;
}
.filter .form-group{
	margin-bottom:0;
}
.adv-search .row{
	margin-right: -7px;
    margin-left: -7px;
}
.adv-search .row .col{
	padding-right: 7px;
    padding-left: 7px;
}
.price-range-block {
   padding:14px 21px;
}
.sliderText{
    width:40%;
    margin-bottom:30px;
    border-bottom: 2px solid red;
    padding: 10px 0 10px 0px;
    font-weight:bold;
}
.ui-slider-horizontal {
    height: .6em;
}
.ui-slider-horizontal {
    margin-bottom: 15px;
    width:100%;
}
.ui-widget-header {
    background:#00AEFF;
}
.ui-widget.ui-widget-content{
	border:0;
	background-color: #e6e6e6;
}
.price-range-search {
    width:40.5%; 
    background-color: #f9f9f9; 
    border: 1px solid #6e6666;
    min-width: 40%;
    display: inline-block;
    height: 32px;
    border-radius: 5px;
    float: left;
    margin-bottom:20px;
    font-size:16px;
}
.price-range-field{
	width: 50%;
	min-width: 16%;
	background-color: #fff;
	border: 1px solid #c4c4c4;
	color: black;
	font: normal 14px Arial, Helvetica, sans-serif;
	border-radius: 2px;
	height: 35px;
	padding:5px 10px 5px 26px;
	background-image:url('../images/rupee.png');
	background-repeat:no-repeat;
	background-position:left 8px center;
	background-size: 15px;
}

.search-results-block{
    position: relative;
    display: block;
    clear: both;
}


.gray-bg{
	background-color:#f7f7f7;
}
.option-set {
    display: inline-block;
    padding: 0;
    margin-left: auto;
    list-style-type: none;
}
.option-set li {
    display: inline-block;
    letter-spacing: 0.1px;
}
.option-set li a {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding:4px 18px;
    font-size: 16px;
    text-align: center;
    color: #111;
    position: relative;
    display: block;
    border-radius: 50px;
}
.option-set li a.selected,
.option-set li a:hover {
    color: #00aeff;
}
.option-isotop h2{
	width:auto;
	margin-right:auto;
	margin-bottom: 0;
}
.property-box {
    background: #fff;
    position: relative;
    box-shadow:1px 2px 4px 0px rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0px;
}
.img-over {
    width: 100%;
    position: relative;
}
.img-over:before{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	z-index:2;
	width: 100%;
    height: 70px;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
	background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
}
.property-box img {
    border-radius: 5px 5px 0px 0px;
    min-width: 100%;
}
.top-btn {
    position: absolute;
    top:15px;
    left:15px;
	right:15px;
	display: -ms-flexbox;
    display: flex;
}
.top-btn h3 {
    margin: 0;
    background: #f26c61;
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 40px;
    margin-right: 5px;
}
.rupee {
    position: absolute;
    bottom:10px;
    left:15px;
	z-index: 2;
}
.rupee h4 {
	margin: 0;
	color: #fff;
	font-size:17px;
	display: inline-block;
}
.rupee h4 span{
	padding-right:5px;
}
.heart-icon {
    position: absolute;
    bottom:10px;
    right:15px;
	z-index: 2;
}
.heart-icon.active .fa-heart-o::before {
    content: "\f004";
}
.heart-icon i {
    color: #fff;
    font-size:18px;
    font-weight: normal;
}
.pro-details {
    background: #fff;
    padding:15px;
}
.pro-details h3 {
	font-size:18px;
	color: #2f476d;
	width: 100%;
	margin: 0;
	font-weight: bold;
	line-height: 20px;
}
.pro-details h3 a{
	color: #2f476d;
	width: 100%;
    display: block;
	-webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.pro-details h3 a:hover{
	color: #00aeff;
}
.pro-label{
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 3px;
	padding:2px 10px;
	color:var(--black);
	font-size: 11px;
	text-transform: uppercase;
	line-height: 18px;
	text-align: center;
	font-weight: bold;
}
.red-l{
	background-color:  rgba(255, 150, 0, 0.7);
	color: #fff;
}
.blue-l{
	background-color: rgba(0, 174, 255, 0.7);
}
.yellow-l{
	background-color: rgba(255, 150, 0, 0.7);
	color:#fff;
}
p.address{
	font-family: var(--primary-font);
	font-size:14px;
	color:#666666;
	margin-bottom: 6px;
    margin-top: 4px;
	-webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
p.address i{
	color:#858585;
	font-size:14px;
	margin-right: 6px;
}
.p-type{
	color:#444;
	font-size:15px;
	width: 100%;
	display: block;
}
.sqft{
	color:var(--black);
	font-size:16px;
	width: 100%;
	display: block;
}
.area{
    width: 100%;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 5px;
}
.cola{
	width:50%;
	padding:0 5px;
}
.area .cola + .cola{
   border-left:1px solid #ddd;
}
.m0-auto{
	margin:20px auto 0 auto;
}
.ex-pro-box{
	position:relative;
	margin: 8px 0;
}
.img-box{
	border-radius:4px;
	overflow:hidden;
	position:relative;
	background-color:#000000;
}
.ex-pro-box .img-box img{
	opacity:0.9;
}
.img-box:before{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	width: 100%;
    height:80%;
	z-index:1;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 65%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 65%);
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 65%);
}
.ex-top{
	position:absolute;
	top:20px;
    padding: 0 20px;
	z-index:2;
}
.ex-top-l{
	margin-right:auto;
}
.ex-top-r{
	margin-left:auto;
}
.ex-top-r .pro-label{
	margin-left:10px;
	display: inline-block;
}
.ex-bottom{
	position:absolute;
	bottom:20px;
    padding: 0 20px;
	z-index:2;
}
.ex-logo{
	background-color:#fff;
	padding:5px;
	border-radius:4px;
}
.ex-pro-box h2{
	color:#fff;
	margin:0;
	font-size:20px;
	line-height: 30px;
}
.ex-pro-box p{
	color:#fff;
	margin:0;
}
.ex-pro-box p.address i {
    color: #fff;
}
.ex-bottom-r{
	margin-left:auto;
	align-self: end;
	text-align: right;
}
.ex-pro-box .rupee{
	position: relative;
	bottom: 0;
	left: 0;
	margin-top: 8px;
}
.ex-pro-box .rupee h4{
	font-size:22px;
	font-family:var(--primary-font);
	font-weight: bold;
}
.ex-pro{
	position:relative;
	margin-bottom: 24px;
}
.ex-pro .top-btn {
    top: 20px;
    left: 20px;
    right: 20px;
}
.ex-pro-left{
	position:absolute;
	bottom: 20px;
    left: 20px;
	z-index: 1;
}
.ex-pro-left p {
    color: #fff;
    margin: 0;
}
.ex-pro-left h2 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}
.ex-pro-left p {
    color: #fff;
    margin: 0;
}
.ex-pro-left p.address i {
    color: #fff;
}
.ex-pro-left .rupee{
	position: relative;
	bottom: 10px;
	left: -20px;
	background-color:rgba(255,255,255,0.8);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.ex-pro-left .rupee h4 {
    color: #000;
    font-size: 18px;
    display: inline-block;
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}
.icon-round{
	background-color:var(--blue);
	display: inline-block;
	border-radius: 50%;
	margin-bottom:25px;
}
.br-box{
	border:1px solid #ddd;
	border-radius:20px;
	padding:30px;
}
.bg-img{
	background-image:url('../images/bg.png');
	background-position:bottom -169px center;
	background-size:100%;
	background-repeat: no-repeat;
}
.blog-box{
	border:1px solid #ebebeb;
	background-color:#fff;
	border-radius: 4px;
}
.blog-box:hover{
	box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.09);
}
.blog-img{
	border-top-left-radius: 4px;
    border-top-right-radius: 4px;
	overflow: hidden;
	position: relative;
	background-color: #ddd;
}
.blog-bottom{
	padding:15px;
	overflow: hidden;
    text-overflow: ellipsis;
}
.blog-detail ul.share{
	display:inline-block;
}
.blog-detail .share li a{
	vertical-align: bottom;
}
.bl-ty{
	font-size:14px;
	color:#00aeff;
	margin-right:auto;
	line-height: 15px;
}
.b-date{
	font-size:14px;
	color:#666666;
	margin-left:auto;
	line-height: 15px;
}
.blog-bottom p{
	line-height: 23px;
	margin-top: 12px;
	margin-bottom: 0;
}
.follo-icon{
	justify-content: center;
}
footer{
	background-color:#2f2f2f;
	padding-top: 50px;
	background-image:url(../images/bg-x.png);
	background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 100%;
}
footer p{
	font-size:14px;
	color:#fff;
}
footer a{
	color:#fff;
}
footer a:hover{
	color:var(--orange);
}
footer .media-body p{
	margin-bottom:5px;
}
footer ul{
	list-style-type:none;
	padding:0;
	margin:0;
	display: flex;
    flex-wrap: wrap;
}
footer h6{
	color:#fff;
	font-family:var(--primary-font);
}
footer ul li a{
	color:#fff;
	font-size:14px;
	font-family: var(--primary-font);
}
footer ul li a:hover{
	color:#a6a6a6;
}
.icon-text .icon{
	width:30px;
	display:inline-block;
	margin-right:6px;
}
.f-con-info .fa{
	color: #fff;
	font-size: 16px;
	width: 15px;
	text-align: center;
}
.f-con-info .fa.fa-envelope{
	color:#fff;
	font-size:14px;
}
.sub-box .form-control{
	border-color:#979797;
	background-color:transparent;
	color:#fff;
}
.btn-subscribe{
	background-color:#00aeff;
	color:#fff;
	padding: 5px 15px;
	border: 0;
}
.btn-subscribe .fa{
	font-size:18px;
}
.btn-subscribe:hover{
	background-color:#fff;
}
.follo-icon a{
	display: inline-block;
	color: #fff;
	margin:0 10px;
	font-size:20px;
}
.follo-icon a:hover{
	color:var(--orange);
}
.footer-bottom{
	padding-top:15px;
	margin-top:36px;
	border-top:1px solid #6f6f6f;
}
.footer-bottom .right{
	margin-left:auto;
}
footer b{
	color:#fff;
}
footer ul li{
	width:50%;
}
.list-banner{
	background-image:url('../images/inner-banner.jpg');
	background-repeat:no-repeat;
	background-position: center;
	background-size:cover;
	position:relative;
	padding-top:215px;
	z-index: 1;
}
.list-banner::after{
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top:0;
	left:0;
	width:100%;
	content:'';
	width:100%;
	height:100%;
	z-index:-1;
}
.list-banner img{
	opacity:0.6;
}
.list-banner .maga-search{
	position: relative;
	margin-top: 80px;
}
.list-banner h1{
	color:#fff;
	text-align:center;
}
.list-banner p{
	color: #fff;
	text-align: center;
	width: 95%;
	margin: 0 auto;
}
.pro-list h2{
	width: auto;
	margin-right: auto;
	display: inline-block;
}
.sort{
	display:inline-block;
	margin-left:auto;
}
.sort p{
	display: inline-block;
	color:#666666;
}
.sort .select-box{
	width: auto;
	display: inline-block;
	border: 0px solid #b6b6b6;
}
.sort .select-box:focus{
	box-shadow: none;
}
.pagination{
	margin:24px auto 0 auto;
	font-size: 14px;
    color: #666;
}
.pagination{
	align-self: center;
}
.pagination .white{
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 3px 13px;
	border-radius: 4px;
}
.pagination .page-link{
	border:0;
	border-radius: 4px;
	padding: .5rem 1rem;
	color:#00aeff;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.09);
}
.pagination .page-item.active .page-link {
    background-color: #00aeff;
    border-color: #00aeff;
}
.pagination .page-item{
	margin:4px;
}
.pagination .page-link .fa{
	line-height:20px;
}
.inn-top{
	position:relative;
	background-color:var(--blue);
	width:100%;
	height:92px;
}
.breadcrumb{
	background-color: transparent;
	padding: 0;
}
ul.share{
	list-style-type:none;
	padding:0;
	margin-left: auto;
}
.share li{
	display:inline-block;
	vertical-align: top;
	margin-left: 3px;
}
.share #st-1 .st-btn[data-network="facebook"] {
    background-color: transparent;
}
.share #st-1 .st-btn{
	border: solid 1px #333;
}
.share li a{
	color: #333;
	border: 1px solid #333;
	background-color: transparent;
	font-size: 14px;
	width: 33px;
	height:26px;
	text-align: center;
	display: inline-block;
	padding: 5px;
	border-radius: 2px;
}
.share li a:hover{
	color: #fff;
	background-color:#333;
}
.tit-2 h2{
	width:auto;
	margin-bottom:18px;
	line-height: 25px;
}
.rup-2{
	font-size:30px;
	position:relative;
	bottom: auto;
    left: auto;
	margin-left: auto;
}
.rup-2 h4 {
    margin: 0;
    color: #222;
    font-size:30px;
    display: inline-block;
}
.tit-3 .pro-label{
	margin-right:8px;
}
.tit-3 .sqft{
	margin-left:auto;
	font-size:18px;
	line-height: 24px;
}
.breadcrumb{
	font-size:14px;
}
.breadcrumb a{
	color:#00aeff;
}
.thum-slide{
	margin:30px 0;
}
.thum-slide .carousel-control-next, .thum-slide .carousel-control-prev {
    bottom: 130px;
}
.thum-slide .carousel-inner img{
	border-radius:5px;
}
.thum-slide .carousel-indicators{
	position:relative;
	margin-top:15px;
	margin-right: 0;
    margin-left: 0;
}
.thum-slide .carousel-indicators li{
	width:10%;
	height: auto;
	text-indent: 0;
	margin-right:8px;
    margin-left:8px;
	opacity:1;
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
	border: 0;
}
.thum-slide .carousel-indicators li img{
	width:100%;
}
.thum-slide .carousel-indicators li.active{
	opacity:0.5;
}
.white-bg{
	background-color:#fff;
	padding:30px 35px;
	border-radius:5px;
	margin-bottom:30px;
}
.sub-tit{
	margin-bottom:25px;
}
.sub-tit h3{
	width:auto;
}
.sub-tit h4{
	width:auto;
	margin-left:auto;
}
.over-list{
	padding:0;
	list-style-type:none;
	margin-bottom: 0;
	gap: 15px;
}
.over-list li b{
	color:#333;
}
.over-list li p{
	color:#444;
	margin-bottom:0;
}
.over-list li{
	display:inline-block;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	max-width: 100%;
	text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
}
.list-icon{
	list-style-type:none;
	padding:0;
} 
.list-icon li{
	width:25%;
	background-image:url('../images/check.png');
	background-repeat:no-repeat;
	background-position: left center;
	padding-left: 25px;
	margin-bottom: 10px;
	color:#444444;
}
.accordion > .card:first-of-type, .accordion > .card, .accordion > .card:last-of-type{
	border: 1px solid #bebebe;
	border-radius:5px;
	margin-bottom:24px;
}
.accordion > .card:last-of-type {
    margin-bottom:0px;
}
.card-header a{
	padding: .75rem 1.25rem;
	position:relative;
	cursor:pointer;
}
.card-header a::before {
    content: "\f106";
	font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
	position:absolute;
	width: 16px;
	height: 22px;
	right: 10px;
	top: 15px;
	font-size: 20px;
}
.card-header a.collapsed::before{
	content:"\f105";
}
.card-header {
    padding: 0;
    background-color: #fff;
    border-bottom: 0px solid rgba(0,0,0,.125);
}
.fp-t{
	display:inline-block;
	color:#222222;
	margin-right: 50px;
}
.fp-s{
	display:inline-block;
	color:#222222;
	margin-right: 54px;
}
.fp-s span{
	font-family:var(--primary-font);
	font-weight: bold;
}
.btn-map{
	margin-left:auto;
	background-color:#00aeff;
	border-color:#00aeff;
	font-size: 14px;
	padding: 0.3rem 1rem;
	line-height: 20px;
}
.btn-map:hover{
	background-color:#666;
	border-color: #666;
	color:#fff;
}
.btn-enquiry {
    cursor: pointer;
    transform: rotate(7deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    top: 45%;
    z-index: 99;
    background-color: #f7941d;
    color: #fff;
    padding: 10px;
    margin: 0;
    width: 124px;
    height: 38px;
    float: right;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 15px;
    text-transform: uppercase;
    position: fixed;
    left: auto;
    right: -43px;
    line-height: 17px;
    font-family:var(--primary-font);
    letter-spacing: 1px;
}
.btn-enquiry:hover{
	background-color:#333;
}
a.btn-enquiry:not([href]):not([tabindex]) {
    color:#fff;
}
.pop-modal .modal-body {
    padding: 2rem;
}
.pop-modal .modal-header{
	padding: 1rem 2rem;
}
.pop-modal h5{
	color:#000;
}
.norecord .fa{
	display: block;
	clear: both;
	margin: 0 auto;
	font-size: 41px;
	color: #666;
}
.norecord p{
	width: 100%;
	font-size: 18px;
	margin-top: 5px;
}
.blog-page .blog-box{
	margin:10px 0;
}
.search-icon{
	position:relative;
}
.completionList{
width: 300px;
background-color: #fff;
list-style-type: none;
padding: 15px 0;
text-align: left;
max-height:300px;
overflow:auto;
box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.3);
}
.completionList li {
    padding: 5px 15px;
    background-color:#fff;
    cursor: pointer;
}
.completionList li:hover{
    background-color:#f2f2f2;
}
.heart-check [type="checkbox"]:checked,
.heart-check [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.heart-check [type="checkbox"]:checked + label,
.heart-check [type="checkbox"]:not(:checked) + label {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	display: inline-block;
	color: #555;
	font-size: 14px;
	padding-right: 20px;
	padding-right: 20px;
	line-height: 22px;
	margin-bottom: 5px;
	margin-top: 5px;
}

.heart-check [type="checkbox"]:checked + label:before,
.heart-check [type="checkbox"]:not(:checked) + label:before {
		content:"\f08a";
		position: absolute;
		left: 0;
		top: 0;
		width:21px;
		height:21px;
		border:0px solid #ddd;
		border-radius:0px;
		background: #fff;
		font: normal normal normal 14px/1 FontAwesome;
		font-weight: normal;
			font-size: 14px;
		font-size: inherit;
		text-rendering: auto;
		 -webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}

.heart-check [type="checkbox"]:checked + label:after,
.heart-check [type="checkbox"]:not(:checked) + label:after {
		content: '';
		width: 12px;
		height: 12px;
		content:"\f004";
		color:var(--blue);
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 14px;
		font-size: inherit;
		text-rendering: auto;
		position: absolute;
		top:0;
		left:0;
		border-radius: 100%;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}

 .heart-check [type="checkbox"]:not(:checked) + label:after {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

 .heart-check [type="checkbox"]:checked + label:after {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
.heart-check[type="checkbox"]:checked + label:before{
border-color:var(--blue);
}
.heart-check[type="checkbox"]:checked, [type="checkbox"]:not(:checked){
	position: absolute;
    left: -9999px;
}
.inner-banner{
	background-color: #000;
}
.inner-banner h2{
	position: absolute;
	top: auto;
	color:var(--white);
}
.inner-banner img{
	opacity: 0.6;
}
.contact-form{
	margin-top: 30px;
}
.round-img{
	border-radius:50%;
}
.w-box{
	background: #fff;
	padding:20px;
    position: relative;
    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    margin:25px 0px;
}
.clients-p .w-box{
	margin:15px 0px;
}
.about h3 span{
	color: var(--blue);
    padding-left: 16px;
    border-left: 1px solid #ddd;
    margin-left: 12px;
    font-weight: 100;
}
.we-do img{
	background-color: var(--gray-bg);
	padding:30px;
	border-radius: 10px;
}
.requirement .w-box{
   padding:40px;
   max-width:700px;
   margin:0 auto;
}
.requirement .btn{
	min-width:150px;
}
.why{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 20px;
 margin:35px 0;
}
.why .why-con{
  flex: 1;
}
.why p{
	margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}
.contact-page .follo-icon a{
 color: var(--blue);
}
.contact-page .follo-icon {
    justify-content: start;
}
.contact-page .icon-t a{
  color: var(--black);
}


@media (min-width:300px) and (max-width:575px){
.top-none .navbar-brand img, .navbar-brand img {
    width:119px;
}
.navbar-toggler span {
    background: #fff;
	background-image:none; 
}
.navbar-toggler{
	padding:0;
	border:0;
}
.navbar-light .navbar-brand {
    padding-left: 15px;
}
.navbar-light .navbar-toggler {
    margin-right: 15px;
}
.navbar{
	padding-top:0px;
}
.top-none .navbar {
    padding-bottom:5px;
}
.top-none .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
}
.navbar-collapse{
	background-color:var(--blue);
}
.drop-btn .dropdown-toggle, .drop-btn a:not([href]):not([tabindex]).dropdown-toggle {
    padding:6px 15px;
    line-height: 5px;
}
.login-tab .dropdown-toggle, .login-tab a:not([href]):not([tabindex]).dropdown-toggle{
	padding:0;
	width: 30px;
    height: 30px;
}

h2 {
    line-height: 31px;
    font-size: 22px;
	margin-bottom: 15px;
}
#banner {
    height: auto;
    height: auto;
    overflow: visible;
	background-color: #ddd;
}
#banner .carousel-inner {
    position: relative;
    height:303px;
	background-color: #000;
}
#banner .carousel-item img.main-img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
#banner .carousel-caption {
    padding:15px;
    max-width: 100%;
}
.carousel-control-next, .carousel-control-prev{
	position: absolute;
    top: 157px;
	-ms-flex-align: normal;
    align-items: normal
}
.drop-btn{
	position: absolute;
	right: 70px;
	top:22px;
}
.login-tab {
    position: absolute;
    right: 70px;
    top:11px;
}
.dropdown-menu.price-drop{
	left:auto !important;
	right:0;
}
#banner .carousel-caption h5{
	font-size: 18px;
    margin-bottom: 5px;
}
#banner .container {
    top: 28px;
}
#banner .carousel-caption h1 {
    margin: 11px 0;
	font-size:21px;
    line-height: 23px;
}
#banner .carousel-caption p {
    color: #fff;
    font-size:15px;
    line-height: 24px;
}
#banner .carousel-item{
	height:100%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    padding: 2px;
    width: 30px;
    height: 30px;
}
.carousel-control-next, .carousel-control-prev {
    width: 36px;
	z-index: 11;
	height: auto;
	bottom: auto;
}
.search-box {
    margin:0 auto;
}
.search-box .s-item:first-child {
    width: 100%;
}
.search-box .s-item {
    margin:5px 0;
    width: 100%;
}
.search-box .s-item.sm-m{
	width:49%;
}
.search-box .s-item.mt-m{
	margin-right:5px;
}
.or-3{
	order:3;
}
.maga-search {
    position: relative;
    bottom: 0;
	margin-top: 15px;
}
.adv-search .row .col{
	flex-basis: auto;
}
.filter .form-group {
    margin-bottom: 10px;
}
.filter .btn-link {
    margin-top: 0;
}
.padding {
    padding: 30px 0;
}
.option-set li a{
	padding: 2px 9px;
	font-size: 15px;
}
.option-isotop h2 {
    width:100%;
    margin-bottom: 10px;
}
.property-box {
    margin:10px 0px;
}
.ex-pro-box h2 {
    font-size: 16px;
    line-height: 26px;
}
.ex-logo img{
	height: 40px;
}
.ex-top {
    top: 10px;
    padding: 0 10px;
}
.ex-top-r .pro-label {
    margin-left: 5px;
}
.ex-bottom {
    bottom: 10px;
    padding: 0 10px;
}
.ex-pro-box p{
	line-height: 24px;
	font-size: 12px;
}
.ex-pro-box .rupee h4 {
    font-size: 18px;
}
.ex-pro-box .rupee {
    margin-top: 2px;
}
.ex-pro-box {
    margin:10px 0;
}
.ex-pro {
    margin:10px 0;
}
.blog-box{
	margin:10px 0;
}
.footer-bottom .right {
    margin-left: 0;
}
footer p {
   line-height: 25px;
}
footer h6 {
    margin-top: 18px;
}
.owl-carousel .owl-controls {
    top: -40px;
}
.owl-carousel .owl-prev {
    margin-left: 0;
}
.owl-carousel .owl-next {
    margin-right: 0;
}
.p-type, .sqft {
    font-size: 15px;
}
.pro-details h3 {
    font-size: 18px;
}
.rupee h4 {
    font-size: 18px;
}
.list-banner {
    background-size: cover;
    padding-top: 83px;
}
h1 {
   font-size:24px;
}
.list-banner h1 {
    margin-bottom: 5px;
}
.list-banner p {
    line-height: 27px;
}
.list-banner .maga-search {
    margin-top: 23px;
	bottom: 11px;
}
.detail-page .breadcrumb{
	display:none;
}
ul.share {
    margin-left: 0;
}
.tit-2 h2 {
    width: 100%;
	line-height: 28px;
}
.rup-2 {
    font-size: 30px;
    left: 0;
    margin-left: 0;
    width: 100%;
}
.rup-2 h4 {
    font-size:22px;
}
.tit-3{
	margin-top: 20px;
    margin-bottom: 12px;
}
.detail-page p.address{
	line-height: 21px;
}
.thum-slide .carousel-control-next, .thum-slide .carousel-control-prev {
    bottom: auto;
    top:31%;
}
.thum-slide .carousel-indicators {
    margin-top: 9px;
}
.thum-slide .carousel-indicators li {
    margin-right: 4px;
    margin-left: 4px;
}
.white-bg {
    padding: 15px;
    margin-bottom: 16px;
}
.over-list li {
    display: block;
    flex-basis: auto;
    width: 50%;
	margin:2px 0;
}
.sub-tit {
    margin-bottom: 15px;
}
.sub-tit h4 {
    font-size: 14px;
}
.list-icon li {
    width: 100%;
}
.btn-map {
    margin-left: 0;
    margin-top: 5px;
	display: block;
    width: 100%;
}
#related.owl-carousel .owl-controls {
    top: 40%;
}
#related.owl-carousel .owl-prev {
    margin-left: -11px;
}
#related.owl-carousel .owl-next {
    margin-right: -11px;
}
.sort {
    margin-left: 0;
}
.inn-top {
    height:54px;
}
.pop-modal .modal-body {
    padding:1rem;
}
.pop-modal .modal-header{
	padding: 1rem 1rem;
}
.btn-enquiry{
	top: auto;
	width: 105px;
	height: 36px;
	left:0;
	right:auto;
	bottom: 0;
	transform: rotate(0deg);
-ms-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
}
footer {
	background-size: auto;
  }
  .round-img {
    margin-bottom: 20px;
}
.team {
	text-align: center;
}
.we-do img{
	margin-bottom:20px;
}
.we-do{
	text-align: center;
}
.why-choose {
    padding-left: 0;
}
.why {
    gap: 14px
}

}
@media (min-width:575px) and (max-width:767px){
.top-none .navbar-brand img, .navbar-brand img {
    width:119px;
}
.navbar-toggler span {
    background: #fff;
	background-image:none; 
}
.navbar-toggler{
	padding:0;
	border:0;
}
.navbar-light .navbar-brand {
    padding-left: 15px;
}
.navbar-light .navbar-toggler {
    margin-right: 15px;
}
.navbar{
	padding-top:10px;
}
.top-none .navbar {
    padding-bottom:5px;
}
.top-none .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
}
.navbar-collapse{
	background-color:var(--blue);
}
.drop-btn .dropdown-toggle, .drop-btn a:not([href]):not([tabindex]).dropdown-toggle {
    padding:6px 15px;
    line-height: 5px;
}
.price-drop{
	right: 0px !important;
	left: auto !important;
}
h2 {
    line-height: 31px;
    font-size: 22px;
	margin-bottom: 15px;
}
#banner {
    height: auto;
    height: auto;
    overflow: visible;
	background-color: #ddd;
}
#banner .carousel-inner {
    position: relative;
	background-color: #000;
}

#banner .carousel-caption {
    padding:15px;
    max-width: 100%;
}
.carousel-control-next, .carousel-control-prev{
	position: absolute;
    top: 157px;
	-ms-flex-align: normal;
    align-items: normal
}
.drop-btn{
	position: absolute;
	right: 70px;
	top:22px;
}
#banner .carousel-caption h5{
	font-size: 18px;
    margin-bottom: 5px;
}
#banner .container {
    top: 28px;
}
#banner .carousel-caption h1 {
    margin: 11px 0;
	font-size:21px;
    line-height: 23px;
}
#banner .carousel-caption p {
    color: #fff;
    font-size:15px;
    line-height: 24px;
}
.search-box {
    margin:0 auto;
}
.search-box .s-item:first-child {
    width: 100%;
}
.search-box .s-item {
    margin:5px 0;
    width: 100%;
}
.search-box .s-item.sm-m{
	width:49%;
}
.search-box .s-item.mt-m{
	margin-right:5px;
}
.or-3{
	order:3;
}
.maga-search {
    position: relative;
    bottom: 0;
	margin-top: 15px;
}
.adv-search .row .col{
	flex-basis: auto;
}
.filter .form-group {
    margin-bottom: 10px;
}
.filter .btn-link {
    margin-top: 0;
}
.padding {
    padding: 30px 0;
}
.option-set li a{
	padding:2px 3px;
	font-size: 15px;
}
.option-isotop h2 {
    margin-bottom: 10px;
}
.property-box {
    margin:10px 0px;
}
.ex-pro-box h2 {
    font-size: 16px;
    line-height: 26px;
}
.ex-logo img{
	height: 40px;
}
.ex-top {
    top: 10px;
    padding: 0 10px;
}
.ex-top-r .pro-label {
    margin-left: 5px;
}
.ex-bottom {
    bottom: 10px;
    padding: 0 10px;
}
.ex-pro-box p{
	line-height: 24px;
	font-size: 12px;
}
.ex-pro-box .rupee h4 {
    font-size: 18px;
}
.ex-pro-box .rupee {
    margin-top: 2px;
}
.ex-pro-box {
    margin:10px 0;
}
.ex-pro {
    margin:10px 0;
}
.blog-box{
	margin:10px 0;
}
.footer-bottom .right {
    margin-left: 0;
}
footer p {
   line-height: 25px;
}
footer h6 {
    margin-top: 18px;
}
.list-banner {
    background-size: cover;
    padding-top: 83px;
}
h1 {
   font-size:26px;
}
.list-banner h1 {
    margin-bottom: 5px;
}
.list-banner p {
    line-height: 27px;
}
.list-banner .maga-search {
    margin-top: 23px;
	bottom: 11px;
}
.rup-2 h4 {
    font-size: 22px;
    margin-bottom: 13px;
}
.over-list li {
    flex-basis: auto;
    width: 50%;
    margin-bottom: 12px;
}
.list-icon li {
    width: 50%;
}
.sub-tit {
    margin-bottom: 15px;
}
.inn-top {
    height: 41px;
}
.thum-slide .carousel-control-next, .thum-slide .carousel-control-prev {
    bottom: auto;
    top: 35%;
}
.login-tab .dropdown-toggle, .login-tab a:not([href]):not([tabindex]).dropdown-toggle{
	padding:0;
	width: 30px;
    height: 30px;
}

.login-tab {
    position: absolute;
    right: 70px;
    top:9px;
}
.cola {
	padding: 0 6px;
  }
.p-type {
	font-size: 13px;
  }
.sqft {
	font-size: 16px;
} 
footer {
	background-size: auto;
  } 
  .round-img {
    margin-bottom: 20px;
}
.team {
	text-align: center;
} 
.we-do img{
	margin-bottom:20px;
}
.we-do{
	text-align: center;
} 

}
@media (min-width:768px) and (max-width:991px){
	.top-none .navbar-brand img, .navbar-brand img {
    width:119px;
}
.navbar-toggler span {
    background: #fff;
	background-image:none; 
}
.navbar-toggler{
	padding:0;
	border:0;
}
.navbar-light .navbar-brand {
    padding-left: 15px;
}
.navbar-light .navbar-toggler {
    margin-right: 15px;
}
.navbar{
	padding-top:10px;
	padding-bottom:10px;
}
.drop-btn{
	position: absolute;
    right: 60px;
	top:23px;
}
.top-none .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
}
.navbar-collapse{
	background-color:var(--blue);
}
.drop-btn .dropdown-toggle, .drop-btn a:not([href]):not([tabindex]).dropdown-toggle {
    padding: 3px 15px;
    line-height: 5px;
}
#banner .carousel-caption h1 {
    margin: 12px 0;
	font-size: 25px;
}
.btn-br{
	font-size: 14px;
    padding: 0.6rem 0.8rem;
}
.search-box .s-item {
	margin-left: 0;
	width: 23.5%;
	margin-right: 10px;
}
#banner .carousel-caption {
    padding: 15px;
    max-width: 90%;
}
#banner .carousel-caption p {
    font-size: 16px;
    line-height: 26px;
}
#banner {
    background-color: #ddd;
}
#banner .carousel-inner {
    background-color: #000;
}
.search-box {
    max-width: 720px;
}
.search-box .s-item:first-child {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 12px;
	width:100%;
}
.search-box .s-item:last-child {
    margin-left: 0;
    margin-right: 0;
}
.maga-search {
    bottom: 30px;
	position: relative;
}
h2 {
    line-height:28px;
    font-size: 22px;
}
.ex-pro-box {
    margin: 15px 0;
}
.option-set li a{
	padding: 4px 12px;
}
.ex-pro {
    margin-bottom: 30px;
}	
footer ul li{
	width:49%;
	display:inline-block;
}
.thum-slide .carousel-control-next, .thum-slide .carousel-control-prev {
    bottom: 90px;
}
.over-list li {
    flex-basis: auto;
     width: 33%;
    margin-bottom: 13px;
}
.list-icon li {
    width: 33.33%;
}
.inn-top {
    height:72px;
}
.login-tab .dropdown-toggle, .login-tab a:not([href]):not([tabindex]).dropdown-toggle{
	padding:0;
	width: 30px;
    height: 30px;
}
.login-tab {
    position: absolute;
    right: 70px;
    top:9px;
}
.f-con-info{
	margin-top:30px;
}
	
}
@media (min-width:992px) and (max-width:1199px){
.navbar-brand img {
    width:120px;
}
.top-none .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link {
    padding: 1rem 0.6rem;
    font-size: 13px;
}
.top-none .navbar-brand img {
    width: 120px;
}
#banner .carousel-caption {
    padding: 25px;
    max-width: 90%;
}
h1 {
    font-size: 31px;
}
.inn-top {
    height: 63px;
}
	
}

@media (min-width:1200px) and (max-width:1599px){
 .container {
    max-width:1180px;
 }
}
@media (min-width: 1600px) {
	 .container {
    max-width:1400px;
    }
.p-type, .sqft {
    font-size: 15px;
}
.pro-details h3 {
    font-size: 18px;
}
.rupee h4 {
    font-size: 18px;
}
.rup-2 h4 {
    font-size: 30px;
}

}

