@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Yantramanav:wght@100;300;400;500;700;900&display=swap');


/*** GENERIC CSS ***/
html,body {
    font-family: "Mulish", sans-serif;
    background: #fff;
}

body {
    font-size: 16px;
    color: #000;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#333;
    font-weight: 400;
    font-family: "Yantramanav", sans-serif;
}

h1 {
    font-size:54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size:35px;
    line-height: 1.5;
}

h4 {
    font-size:27px;
    line-height: 1.5;
}

h5 {
    font-size:24px;
    line-height: 1.5;
}

p {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .divider-separator {
    display: inline-block;
    margin-bottom: 0px;
    width: 80px;
    height: 4px;
    background: #cc7726;
}

.section-title h6 {
    color: #af8e5e;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title.small h2 {
    font-size: 36px;
}

.section-title.small p {
    font-size: 16px;
}

.section-title h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    margin: 0;
    margin-bottom: 5px;
}

.section-title.white h6,
.section-title.white h2 {
    color: #fff;
}

.btn-default {
    position: relative;
    display: inline-block;
    border: 0px;
    font-size: 15px;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0px 40px;
    border: 2px solid #111;
    background: none;
    color:#111;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    overflow: hidden;
    text-align: center;
    background-color: #231F2000;
}

.btn-default.black {
    background: #111;
    border-color: #111;
    color: #fff;
}

.btn-default.black:hover {
    background: #cc7726;
    border-color: #cc7726;
    color:#000;
}

.btn-default.orange {
    background: #cc7726;
    border-color: #cc7726;
    color: #fff;
}

.btn-default.orange:hover {
    background: #fff;
    border-color: #fff;
    color:#000;
}

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

.btn-default.white {
    background: none;
    border-color: #fff;
    color:#fff;
}

.btn-default.white:hover {
    background: #fff;
    border-color: #fff;
    color:#111;
}

.btn-default.white:before {
    background: rgba(20, 20, 20, 0.98);
    background: rgba(255,255,255,0.98);
}

/*** SIDEMENU ***/
.menu-btn {
    min-width: 22px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.menu-btn em {
    color: #111111;
    font-size: 13px;
    text-align: justify;
    color: #111111;
    font-style: normal;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    letter-spacing: .15em;
}

.menu-btn span {
    display: block;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #111111 !important;
    height: 3px;
    margin: 4px 0px;
    border-radius: 5px;
    transition: all .3s;
    margin-left: auto;
}

.menu-btn div {
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 28px;
    /* margin-left: 15px; */
}

.side-menu {
    background: #fff;
	position:fixed;
	top:0px;
    left: -150%;
    width: 340px;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 25px;
	overflow:hidden;
	overflow-y:auto;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.side-menu.intro {
	left:0px;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:30px;
}

.side-menu ul.main-menu.navbar-nav li {
	list-style:none;
	display:inline-block;
	width:100%;
    margin: 0;
    margin-bottom: 10px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    font-size: 17px;
    padding: 7px 0px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
	background:none;
    color:#000;
    border-color: #000;
}

.side-menu a.CloseBtn {
    float: right;
    color: #fff;
    background: #af8e5e;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 40px;
    min-height: 40px;
    border-radius: 0px 0px 0px 5px;
}

.side-menu a.CloseBtn:before,
.side-menu a.CloseBtn:after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

.side-menu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    color: #000 !important;
    border-color: #000;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    background-clip: unset !important;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav>li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul.navbar-nav>li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li {
    margin: 0;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li a {
    font-size: 14px;
    background: #ebebeb;
    color: #000;
    margin: 0;
    padding: 10px 15px !important;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li:hover a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.current_page_item>a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.active>a {
    color: #fff !important;
    background: #000 !important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu h4 {
    color: #000;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
    text-transform: uppercase;
}

.side-menu .contact-list {
    color: #000;
}

.side-menu .contact-list a i {
    background: #af8e5e;
    color: #fff;
}

.side-menu .contact-list a {
    color: #000;
}

section {
    overflow: hidden;
}

/*** HEADER ***/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 25px 0px;
    overflow: visible;
    background: #fff;
    transition: all .3s;
}

header.fixed {
    position: fixed;
    background: #fff !important;
    padding: 10px 0px;
    box-shadow: 0 0 30px -5px #00000040;
}

.navbar {
	padding:0px 0px;
}

.navbar-nav {
    align-items: center;
}

.navbar-brand {
    padding: 0px !important;
}

.navbar-brand img {
    max-height: 43px;
    margin-right: 0px;
    margin-bottom: -10px;
}

header.fixed .navbar-brand img {
    max-height: 32px;
    margin-bottom: -5px;
}

.navbar-light .navbar-nav>.nav-item {
    margin: 0px 15px;
	display:inline-block;
    vertical-align: top;
	position:relative;
}

.navbar-light .navbar-nav>.nav-item>.nav-link {
    color: #111;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding:0px 0px !important;
    letter-spacing: 0px;
    position: relative;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.active>.nav-link {
	color:#cc7726!important;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before,
.navbar-light .navbar-nav>.nav-item.active>.nav-link::before {
    width: 100%;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 1px;
    background: #fff;
    transition: all .3s;
}

header .lang-box {
    padding: 0px 30px 0px 20px;
}

header .lang-box a {
    color: #111;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding:0px 4px 3px 7px;
    letter-spacing: 0px;
    position: relative;
}

header .lang-box a:last-child {
    border-left: 1px solid #cc7726;
}

header .callbtn {
    display: inline-block;
    font-size: 15px;
    line-height: 35px;
    font-weight: 600;
    background-color: #231F2000;
    color: #111;
    text-transform: uppercase;
    border: 2px solid #111;
    padding: 0px 20px;
}

header .callbtn i {
    margin-right: 7px;
}

header .callbtn:hover {
    background: #111;
    color: #fff;
}

.navbar-light .navbar-nav>.nav-item.logo>a::before {
    display: none;
}

.navbar-light .navbar-nav>.nav-item.logo img {
    max-height: 100px;
}

.navbar-nav li.dropdown:hover ul.sub-menu {
	display:block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

ul.sub-menu {
    min-width:255px;
    width: 100%;
    padding:0px 0px;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 4%);
    text-align: left;
    margin: auto;
    background: none;
    margin-top: 0px;
    display: block;
    padding-top: 15px;
    
    list-style: none;
    margin: 0;
    background: 0 0;
    padding: 0;
    position: absolute;
    left: calc(50% - 100px);
    min-width: 250px;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li {
	width:100%;
    position: relative;
    margin-bottom: 1px;
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li a.nav-link {
    line-height: 1;
    transition: all .3s;
    text-transform: capitalize;
    width: 100%;
    display: inline-block;
    clear: both;
    white-space: nowrap;
    border: 0;
    margin: 0px;
	width:100%;
	position:relative;
    line-height: 25px;
    padding: 10px 10px !important;
    
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 1);
    color: #000!important;
    border: none;
    text-transform: uppercase;
    white-space: break-spaces;
}

.navbar-light .navbar-nav>.nav-item>ul.sub-menu li:hover>a,
.navbar-light .navbar-nav>.nav-item>ul.sub-menu li.active>a {
	color:#fff!important;
    background: #000;
}

header.home-header .navbar-brand {
    opacity: 0;
    pointer-events: none;
}

header.home-header.fixed .navbar-brand {
    opacity: 1;
    pointer-events: auto;
}

header.home-header .navbar-nav .logo {
    opacity: 0;
    pointer-events: none;
}

header.home-header.fixed .navbar-nav .logo {
    opacity: 1;
    pointer-events: auto;
}


/*** BANNER ***/
.banner {
    position: relative;
    overflow: hidden;
    padding: 200px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #231f20;
}

.banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    /* background: rgba(0, 0, 0, 0.4); */
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}


.banner .container {
    position: relative;
    z-index: 3;
}

.banner .text {
    display: inline-block;
    width: 100%;
    padding: 0px 0px 150px 0px;
}

.banner .logo {
    max-height: 150px;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px 10px 8px 10px;
    max-height: 50px;
}

.banner h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0px;
}

.banner h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.1em;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 10px 0px 10px 0px;
}

.banner h1 span {
    color: #cc7726;
}

.banner p {
    color: #fff;
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 400;
    margin: 0px 0px 25px 0px;
}

.banner p strong {
    font-weight: bold;
}

.banner .btn-default {
    margin: 0px 0px 5px 0px;
}

.banner .link {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0px;
    padding-left: 0px;
    border-bottom: 1px solid #fff;
}

.banner .link:hover {
    color: #cc7726;
    border-bottom: 1px solid #cc7726;
}

.banner video {
    position: absolute;
    top: 0;
    right: 0;
    width: 55.5%;
    height: 100%;
    object-fit: cover;
}

.banner .mainimg {
    position: absolute;
    bottom: 0;
    right: -500px;
    height: 514px;
    max-width: inherit;
}

/*** INFO SHORT ***/
.info-short {
    padding: 100px 0px;
}

.info-short h3 {
    color: #333;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    margin: 0;
    padding: 0;
}

.info-short h3 span {
    color: #CC7726;
    font-weight: 400;
}

.info-short h3 span {
    color: #CC7726;
    font-weight: 400;
}

/*** service ***/
.services {
    padding: 60px 0px 80px 0px;
}

.service .section-title {
    margin-bottom: 30px;
}

.service-box {
    display: inline-block;
    width: 100%;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.service-box div {
    padding: 035px 25px 35px 25px;
}

.service-box .icon {
    width: 50px;
    margin-bottom: 10px;
}

.service-box p {
    color: #333;
    font-family: "Yantramanav", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    margin-bottom: 0px;
}

.service-box:before,
.service-box:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .3s;
}

.service-box:before {
    border-top: 3px solid white;
    border-left: 3px solid white;
    left: 0;
    right: 0;
}

.service-box:after {
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    right: 0;
    bottom: 0;
}

.service-box:hover:before,
.service-box:hover:after {
    width: 50%;
    height: 50%;
    border-color: #cc7726;
}


/*** properties ***/
.properties {
    padding: 40px 0px 40px 0px;
}

.properties .section-title {
    margin-bottom: 40px;
}

.property-box {
    display: inline-block;
    width: 100%;
    background: #f3f3f3;
}

.property-box .img {
    float: left;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.property-box .img img {
    display: inline-block;
    width: 100%;
    width: 100vw;
    height: 225px;
    object-fit: cover;
    object-position: center center;
    transition: all .3s;
}

.property-box .img:hover img {
    transform: scale(1.1);
}

.property-box .heading {
    float: left;
    display: inline-block;
    width: 100%;
    color: #fff;
    background: #cc7726;
    padding: 7px 20px 5px 20px;
    font-family: "Mulish", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-box .text {
    float: left;
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    position: relative;
}

.property-box .text .arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #cc7726;
    font-size: 28px;
    transform: rotate(-40deg);
}

.property-box .text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.property-box .text p i {
    color: #cc7726;
    margin-right: 5px;
}

.property-box .text h3 {
    color: #111;
    font-size: 24px;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    margin: 0px 0px;
}

.property-box .text p i {
    color: #cc7726;
}

.property-box .text p.down {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.property-box .text p.down span {
    padding-right: 10px;
}

.property-box .text p.down i {
    color: #999999;
    margin-right: 5px;
}

.properties .owl-theme .owl-nav [class*=owl-] {
    color: #cc7726;
    font-size: 20px;
    border-radius: 0px;
    padding-right: 3px !important;
    margin-right: 0px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: -25px;
    background: none !important;
}

.properties .owl-theme .owl-nav [class*=owl-].owl-next {
    padding-right: 0px !important;
    padding-left: 2px !important;
    left: auto;
    right: -25px;
}

.properties .btn-default {
    margin-top: 70px;
}


/*** sold-map ***/
.sold-map {
    padding: 80px 0px;
}


/*** testimonials ***/
.testimonials {
    padding: 40px 0px 60px 0px;
}

.testimonials .section-title {
    margin-bottom: 45px;
}



/*** why-choose ***/
.why-choose {
    padding: 100px 0px 100px 0px;
    background: #f3f3f3;
}

.why-choose .section-title {
    margin-bottom: 0px;
}

.why-choose p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}


/*** cta ***/
.cta {
    background: url(../img/bg-cta.jpg) 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 110px 0px;
}

.cta .section-title h2 {
    margin-bottom: 20px;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #231f20;
    opacity: 0.85;
}

.cta .row {
    position: relative;
    z-index: 2;
}


/*** FOOTER ***/
.footer {
    padding: 0px 0px;
}

.footer .space {
    border-left: 1px solid #f3f3f3;
    text-align: center;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .space:first-child {
    border: none;
}

.footer .space>div {
    display: inline-block;
    width: 100%;
}

.footer .logo img {
    max-height: 61px;
}

.footer .call {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

.footer .call:hover i {
    color: #cc7726;
}

.footer .logo i {
    margin-right: 5px;
}

.footer p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0px 0px 10px 0px;
}

.footer p span {
    font-weight: 600;
}

.footer .logo-blvd img {
    max-height: 35px;
    margin-bottom: 20px;
}

.footer .form-control {
    background-color: #F7F7F7;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #69727d;
    color: #1f2124;
    height: 40px;
    box-shadow: none !important;
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}


/*** copyright ***/
.copyright {
    background: #f3f3f3;
    padding: 20px 0px;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}


/*** PAGE BANNER ***/
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 150px 0px 150px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #231f20;
    margin-top: 88px;
}

.page-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #111111;
    opacity: 0.75;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.page-banner .row {
    position: relative;
    z-index: 3;
}

.page-banner h1 {
    color: #fff;
    font-weight: bold;
    font-size: 58px;
    margin: 0px;
    text-transform: uppercase;
}


/*** PROPERTIES INNER ***/
.properties.inner  {
    padding: 100px 0px 80px 0px;
}

.properties.inner .property-box {
    height: calc(100% - 20px);
    margin-bottom: 20px;
}


/*** ABOUT ***/
.about {
    padding: 100px 0px;
    background: #fff;
}

.about .section-title {
    margin-bottom: 20px;
}

.about .section-title h2 {
    font-size: 52px;
    font-weight: 800;
}

.about .section-title h6 {
    color: #cc7726;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: inherit;
    font-family: "Yantramanav", sans-serif;
    font-size: 22px;
    line-height: 1.2em;
    margin: 0;
}

.about .img-box {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(../img/img-about.jpg) 50% 50% no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    transition: 0.3s;
    transition: all .3s;
}

.about .img-box:hover {
    filter: none;
}

.about p {
    font-size: 16px;
}

.about p strong {
    font-weight: bold;
}

.list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.list li {
    list-style: none;
    padding: 0px 0px 0px 25px;
    margin: 0px;
    margin-bottom: 10px;
    position: relative;
}

.list li i {
    color: #cc7726;
    font-size: 15px;
    position: absolute;
    top: 7px;
    left: 0px;
}


/*** mission-info ***/
.mission-info {
    padding: 0px 0px 80px 0px;
}

.mission-info .bg {
    display: inline-block;
    width: 100%;
    background: #f3f3f3;
    padding: 40px 40px;
}

.mission-info .section-title h2 {
    margin-bottom: 22px;
}

.mission-info .section-title p b {
    font-weight: bold;
}


/*** inner-services ***/
.inner-services {
    padding: 60px 0px 130px 0px;
}

.inner-services .mb {
    margin-bottom: 130px;
}

.inner-services .section-title {
    padding: 70px 0px;
}

.inner-services .section-title h2 {
    margin: 15px 0px;
}

.inner-services .section-title .icon {
    max-height: 70px;
}

.inner-services .space-right {
    padding-right: 40px;
}

.inner-services .space-left {
    padding-left: 40px;
}

.inner-services .img {
    height: 100%;
    object-fit: cover;
}

.bullet-list {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 40px;
}

.bullet-list li::marker {
    color: #cc7726;
}

.bullet-list li {
    padding: 0px 0px 0px;
    margin: 0px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}

.bullet-list li i {
    color: #cc7726;
    font-size: 15px;
    position: absolute;
    top: 7px;
    left: 0px;
}



/*** faq ***/
.faq {
    padding: 120px 0px 60px 0px;
}

.faq .text {
    display: inline-block;
    width: 100%;
    padding: 30px 30px;
}

.faq h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    color: #111;
    margin: 0px 0px;
}

.faq p {
    color: #111;
    font-size: 16px;
    margin: 15px 0px;
    font-weight: 400;
}

ol.bullet-list.black li {
    margin-bottom: 0;
}


.bullet-list.black li::marker {
    color: #111;
}

/*** PORTFOLIO INFO ***/
.portfolio-info {
    padding: 120px 0px;
}

.portfolio-info .section-title {
    padding-right: 40px;
}

.portfolio-info .section-title h2 {
    border-bottom: 1px solid #dadada;
    padding: 5px 0px;
    margin-bottom: 30px;
}

.portfolio-info .section-title h3 {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 12px;
}

.portfolio-info .rangebar {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.rangebar {
    width: 300px;
}

.rangebar h3 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.rangebar p {
    margin-bottom: 12px;
    font-size: 18px;
}

#priceRange {
    width: 100%;
    height: 4px;
    appearance: none;
    background: #d9d9d9;
    border-radius: 20px;
    outline: none;
}

/* Thumb */
#priceRange::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cc7726;
    cursor: pointer;
}

#priceRange::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cc7726;
    border: none;
    cursor: pointer;
}

.portfolio-info .selectbar {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.portfolio-info .selectbar select {
    display: inline-block;
    width: 150px;
    font-size: 16px;
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
    width: 16px;
    height: 16px;
    margin-left: -25px;
    border-color: #ccc;
}

.form-check {
    padding-left: 25px;
}


/*** contact-info ***/
.contact-info {
    background: url(../img/bg-contact.jpg) 50% 50% no-repeat;
    background-size: cover;
    padding: 200px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.contact-info:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #111111;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .85;
}

.contact-info .row {
    position: relative;
    z-index: 3;
}

.contact-info .section-title h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-list {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 15px;
}

.contact-list a {
    color: #fff;
    display: flex;
    align-items: start;
    gap: 15px;
}

.contact-list a i {
    color: #fff;
    font-size: 18px;
    min-width: 20px;
}

.contact-info p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info p strong {
    font-weight: bold;
}

.contact-info .social {
    margin-top: 20px;
}

.contact-info .social a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
}

.contact-info label {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.contact-info .form-control {
    display: inline-block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    height: 40px;
    font-size: 16px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    background: none !important;
    border-radius: 0px !important;
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 50px;
}

.contact-info select.form-control {
    appearance: auto;
}

.contact-info textarea.form-control {
    height: 64px;
    resize: none;
}

.contact-info option {
    color: #000;
}

.contact-info .form-control::-webkit-input-placeholder {
    color: #fff;
}

.contact-info .form-check {
    margin-bottom: 20px;
}

.contact-info .form-check label {
    font-weight: 400;
    color: #fff;
}

.contact-info .sm {
    font-size: 13px;
    margin-bottom: 30px;
}

.contact-info .sm a {
    color: #CC7726;
}


/*** buysell form ***/
.buysell-form {
    padding: 170px 0px 70px 0px;
}

.buysell-form .section-title {
    margin-bottom: 15px;
}

.buysell-form .section-title h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1em;
}

.buysell-form label {
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.buysell-form .form-control {
    display: inline-block;
    width: 100%;
    border: 1px solid #69727d;
    color: #1f2124;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    background: none !important;
    border-radius: 0px !important;
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 17px;
    font-family: "Mulish", sans-serif;
}

.buysell-form select.form-control {
    appearance: auto;
}

.buysell-form textarea.form-control {
    height: 96px;
    resize: none;
}

.buysell-form textarea.form-control.lg {
    height: 117px;
}

.buysell-form option {
    color: #1f2124;
}

.buysell-form .form-control::-webkit-input-placeholder {
    color: #858688;
}

.buysell-form .form-check {
    margin-bottom: 10px;
}

.buysell-form .form-check label {
    font-weight: 400;
    color: #1f2124;
}

.buysell-form .sm {
    font-size: 12px;
    margin-bottom: 30px;
}

.buysell-form .sm a {
    color: #CC7726;
}

input.wpcf7-form-control.wpcf7-not-valid{
	border-bottom: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}


/* ✅ Success message (form sent) */
.wpcf7 form.sent .wpcf7-response-output,  {
	background: #f6f4ee; /* soft beige or light neutral background */
	color: #0a3a2a; /* elegant dark green accent */
	border: 2px solid #0a3a2a;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	max-width: 500px;
	margin: 1.5rem auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

/* ❌ Error message (validation failed or required fields missing) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output, .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors{
	background: #fdf2f2; /* soft red background */
	color: #8b0000; /* deep red text */
	border: 2px solid #e63946; /* elegant red border */
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	max-width: 500px;
	margin: 1.5rem auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

/* ⚠️ Individual field validation tips (inline error under fields) */
.wpcf7-not-valid-tip {
	color: #e63946; /* red accent for field warnings */
	font-size: 14px;
	margin-top: 4px;
	font-weight: 500;
}

/* ✨ Fade-in animation for both messages */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.otgs-development-site-front-end{
	display:none;
}

 
.inner-services ul {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 40px;
}
 
.inner-services ul li::marker {
    color: #cc7726;
}
 
.inner-services ul li {
    padding: 0px 0px 0px;
    margin: 0px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
}
 
.copyright p img {
    max-height: 40px;
    margin-left: 5px;
}

.buysell-form .form-check span.wpcf7-list-item {
    width: 100%;
    margin: 0;
}
 
.buysell-form .form-check {
    padding: 0;
}
 
.buysell-form .form-check label input {
    margin-right: 5px;
}
 
.buysell-form span.wpcf7-list-item {
    margin: 0;
}
 
.buysell-form span.wpcf7-list-item input {
    margin-right: 5px;
}
 
.buysell-form .logo {
    margin-bottom: 80px;
    display: inline-block;
}
 
.buysell-form .logo img {
    max-height: 55px;
}
 
.buysell-form {
    padding: 40px 0px 70px 0px;
}
 
.contact-info span.wpcf7-list-item {
    margin: 0;
    margin-bottom: 15px;
}
 
.contact-info .form-check-input {
    border: none;
    background: none;
    padding: 0;
}
 
.contact-info .form-check-input label input {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
}
 
.contact-info span.wpcf7-list-item label {
    font-weight: 400;
    color: #fff;
}
 
.contact-list a i {
    transition: all .3s;
}
 
.contact-list a:hover i {
    color: #cc7726;
}
 
.contact-info .social a i {
    transition: all .3s;
}
 
.contact-info .social a:hover i {
    color: #cc7726;
}
 
 
.contact-info span.wpcf7-list-item {
    margin: 0;
    margin-bottom: 15px;
}
 
.contact-info .form-check-input {
    border: none;
    background: none;
    padding: 0;
}
 
.contact-info .form-check-input label input {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
}
 
.contact-info span.wpcf7-list-item label {
    font-weight: 400;
    color: #fff;
}
 
.contact-list a i {
    transition: all .3s;
}
 
.contact-list a:hover i {
    color: #cc7726;
}
 
.contact-info .social a i {
    transition: all .3s;
}
 
.contact-info .social a:hover i {
    color: #cc7726;
}
 
 .contact-info span.wpcf7-list-item {
    margin: 0;
    margin-bottom: 15px;
}
 
.contact-info .form-check-input {
    border: none;
    background: none;
    padding: 0;
}
 
.contact-info .form-check-input label input {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
}
 
.contact-info span.wpcf7-list-item label {
    font-weight: 400;
    color: #fff;
}
 
.contact-list a i {
    transition: all .3s;
}
 
.contact-list a:hover i {
    color: #cc7726;
}
 
.contact-info .social a i {
    transition: all .3s;
}
 
.contact-info .social a:hover i {
    color: #cc7726;
}
 
.inner-services ul li {
    color: #333;
}
 
.why-choose p strong {
    font-weight: 600;
}
 
.faq ul {
    color: #333;
}
 
.faq p {
    color: #333;
}
 
.buysell-form span.wpcf7-list-item input {
    margin-right: 3px;
}
 
.buysell-form .form-check label {
    font-weight: 400;
    color: #111;
    margin-bottom: 3px;
}
 
.buysell-form .wpcf7-list-item label {
    font-weight: 400;
    font-size: 15px;
}
 
.inner-services .btn-default.orange:hover {
    background: #111111 !important;
    border-color: #111111 !important;
    color: #fff !important;
}