@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');
/*font-family: 'Old Standard TT', serif;*/

body {
	color: #191919;
	background-color: #faf7f2;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	font-size: 14px;
}

ul {
	padding-left: 0;
	margin-bottom: 0;
}

a:hover {
	text-decoration: none;
}

img {
	width: 100%;
	display: block;
}
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/*Landing page*/
.landingPage {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #faf7f2;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
}

.landingPage section {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.landing-logo svg {
	width: 100%;
}

.landing-logo svg path {
	fill: none;
	stroke-width: 0.5;
	stroke-linejoin: miter;
	stroke-miterlimit: 1;
	stroke-dasharray: 200;
	stroke-dashoffset: 0;
}

.landing-logo svg path.st0 {
	stroke: #BB854A;
	-webkit-animation: Draw 3s linear forwards;
	animation: Draw 3s linear forwards;
}

@-webkit-keyframes Draw {
	0% {
		stroke-dashoffset: 200;
	}

	99% {
		stroke-dashoffset: 0;
	}

	100% {
		fill: #BB854A;
	}
}

@keyframes Draw {
	0% {
		stroke-dashoffset: 200;
	}

	50% {
		stroke-dashoffset: 0;
	}

	100% {
		fill: #BB854A;
	}
}

.landingPage section h5 {
	font-weight: 400;
	font-size: 26px;
	display: block;
	padding-top: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #191919;
}

/*Landing page*/

/*header*/
.header {
	width: 100%;
	float: left;
	position: fixed;
	top: 0;
	padding: 0 30px;
	z-index: 999;
	transition: all 300ms ease-in-out;
}

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

.logo {
	width: 140px;
	height: auto;
	float: left;
	position: relative;
	min-height: 1px;
	transition: all 300ms ease-in-out;
}

.logo img {
	height: auto;
	transition: all 300ms ease-in-out;
}

.header .mainHeader .navi ul {
	display: flex;
	align-content: center;
}

.header .mainHeader .navi ul li {
	margin: 0 20px;
	position: relative;
}

.header .mainHeader .navi ul li a {
	color: #fff;
	font-weight: 600;
	padding: 40px 0;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	position: relative;
	z-index: 1;
}

.header .mainHeader .navi ul li:hover>a,
.header .mainHeader .navi ul li>a.active {
	color: #bda588;
}

.header .mainHeader .navi ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	border-bottom: 2px solid #bda588;
	transition: all 300ms ease-in-out;
}

.header .mainHeader .navi ul li:hover>a::before,
.header .mainHeader .navi ul li>a.active::before {
	width: 100%;
}

.header .mainHeader .navi ul li a i {
	margin-left: 5px;
	font-size: 12px;
}

.header .mainHeader .navi ul li .dropdown {
	width: 200px;
	position: absolute;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: all 300ms ease-in-out;
	pointer-events: auto;
}

.header .mainHeader .navi ul li .dropdown::after {
	content: '';
	position: absolute;
	left: calc(50% - 10px);
	bottom: 100%;
	border-bottom: 10px solid #000;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	z-index: -1;
	transition: all 300ms ease-in-out;
}

.header .mainHeader .navi ul li:hover .dropdown {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0px);
	pointer-events: auto;
}

.header .mainHeader .navi ul li .dropdown ul {
	background: #000;
	flex-direction: column;
}

.header .mainHeader .navi ul li .dropdown ul li {
	margin: 0;
	padding: 0 5px;
}

.header .mainHeader .navi ul li .dropdown ul li a {
	text-align: center;
	padding: 20px 10px;
	font-size: 13px;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header .mainHeader .navi ul li .dropdown ul li:hover>a,
.header .mainHeader .navi ul li .dropdown ul li>a.active {}

.header .mainHeader .navi ul li .dropdown ul li a:before {
	top: auto;
	bottom: 0;
}

.dropdown .list-inline>li {
	position: relative;
}

/* sub-dropdown */
.dropdown .sub-dropdown {
	display: none;
	position: absolute;
	top: 0%;
	left: 100%;
	background: #f8f9fa;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.dropdown .sub-dropdown ul {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: #424242 !important;
}

.dropdown>ul>li:hover>.sub-dropdown {
	display: block;
}

.sub-dropdown a {
	white-space: nowrap;
	text-align: center;
	padding: 20px 20px !important;
	font-size: 13px;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* .header .mainHeader .navi ul li .sub-dropdown::after {
    content: '';
    position: absolute;
    left: calc(50% - 10px);
    bottom: 100%;
    border-bottom: 10px solid #df0000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: -1;
    transition: all 300ms ease-in-out;
} */

/* -----------------------------------------
sub-dropdown */


.filter-white {
	filter: brightness(50);
}

.filter-dark {
	filter: brightness(.6);
}

.header.fixed {
	background: #000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
}

.header.fixed .mainHeader {}

.header.fixed .logo {
	width: 55px;
	height: 50px;
	overflow: hidden;
}

.header.fixed .logo img {
	width: 127px;
	margin-left: -37px;
}

.header.fixed .navi ul li a {
	font-size: 12px;
	letter-spacing: normal;
	padding: 5px 0;
}

.header.fixed .navi ul li a img {
	width: 40px;
}

.menuBtn {
	width: 60px;
	float: left;
	cursor: pointer;
	overflow: hidden;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
}

.menuBtn.fixed {}

.menuBtn div {
	position: relative;
	width: 40px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	transition: all 300ms ease-in-out;
}

.menuBtn.fixed div {}

.menuBtn span {
	width: 100%;
	height: 2px;
	float: right;
	background: #fff;
	margin: 4px 0;
	position: relative;
	right: 0;
	-webkit-transition: 400ms ease-in-out all;
	transition: 400ms ease-in-out all;
}

.menuBtn.closeMenuBtn span#menuLine1 {
	-webkit-transform: rotate(45deg) translate(5px, 5px);
	transform: rotate(45deg) translate(5px, 5px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
	-webkit-transform: rotate(-45deg) translate(3px, 0px);
	transform: rotate(-45deg) translate(3px, 0px);
}

.menuBtn.closeMenuBtn span#menuLine3 {
	opacity: 0;
}

.mbMenuContainer {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	display: none;
}

.mbMenuContainer .mbMenu {
	position: relative;
	height: 100%;
	width: 100%;
	padding: 10px 0;
	margin-right: -1px;
	overflow: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.19);
}

.mbMenuContainer .mbMenu ul {
	margin: 0;
}

.mbMenuContainer .mbMenu ul li {
	padding: 10px 0;
	display: table;
	border-bottom: 1px solid #bed2ab;
}

.mbMenuContainer .mbMenu ul li a {
	display: block;
	color: #191919;
	transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu ul li:hover>a,
.mbMenuContainer .mbMenu ul li a:focus {
	color: #BB854A;
}

.mbMenuContainer .mbMenu .leftOne ul li a {
	font-size: 20px;
}

.mbMenuContainer .mbMenu li a span {
	display: inline-block;
	font-size: 60%;
	transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu li.active a span {
	transform: rotate(180deg);
}

.mbMenuContainer .mbMenu .mbdrop {
	width: 100%;
	float: left;
	background: rgb(255 255 255 / 50%);
	display: none;
}

.mbMenuContainer .mbMenu .mbdrop ul {
	padding: 10px 20px;
}

.mbMenuContainer .mbMenu .mbdrop li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.mbMenuContainer .mbMenu .mbdrop li:last-child {
	border-bottom: none;
}

/*header*/

.enquiryBtn {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 99;
}

.enquiryBtn a {
	display: block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	font-size: 20px;
	text-align: center;
	background: #faf7f2;
	color: #BB854A;
	box-shadow: 0 0 0 8px rgb(227 175 117 / 45%), 0 0 0 15px rgb(130 88 43 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
	animation: enq 2s cubic-bezier(.55, .76, .27, 1.29) infinite;
	position: relative;
	z-index: 1;
}

@keyframes enq {
	50% {
		box-shadow: 0 0 0 1px rgb(227 175 117 / 45%), 0 0 0 0px rgb(130 88 43 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
	}
}

.enquiryBtn a i {
	margin-right: 0;
}

.modal-header {
	background-color: #BB854A;
}

.modal-title {
	color: #fff;
}

.close {
	color: #fff;
	outline: none;
}

.close:hover {
	color: #fff;
}

label {
	margin-bottom: 0;
}

label sup {
	color: red;
}

.form-control {
	outline: none;
	box-shadow: none;
	border-radius: 0;
	border-width: 0 0 1px;
	padding: 0 0 10px;
}

.form-control:focus {
	border-bottom-color: #BB854A;
	box-shadow: none;
}

.focus-red {
	color: #c50000;
	background: #ffcece;
	border-color: #c50000;
}

/*Custom Dropdown*/
ul.dropdown-menu.inner li {}

.dropdown-menu>.inner[aria-multiselectable="true"] .dropdown-menu li:before {
	content: '';
	position: absolute;
	right: 15px;
	top: calc(50% - 6px);
	width: 12px;
	height: 12px;
	border: 1px solid #ccc;
	pointer-events: none;
}

.dropdown-item.active,
.dropdown-item:active,
.bootstrap-select .dropdown-menu li a:hover {
	background: #BB854A;
	color: #fff;
}

/*Custom Dropdown*/
.table thead th {
	border-bottom-color: rgb(0 0 0 / 16%);
}

.table-bordered td,
.table-bordered th {
	border: 1px solid rgb(0 0 0 / 16%);
}

.table td[rowspan] {
	vertical-align: middle;
}

/*Calculator*/
.result .table {
	margin-bottom: 0;
}

.calculator-result {
	position: relative;
}

.result .table {
	text-align: center;
}

.result .table thead tr th:first-child,
.result .table tbody tr th {
	text-align: left;
}

.result .table tbody tr td:last-child {
	text-align: right;
}

.calClose {
	position: absolute;
	text-align: center;
	right: 1rem;
	top: 8px;
	color: red;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}

.calClose:hover {
	color: #000;
}

/*Calculator*/

#banner {
	height: 100vh;
	position: relative;
	background: #000;
	z-index: 1;
}

#banner .banner-video {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	z-index: 1;
}

#banner .carousel-inner,
#banner .carousel-inner .carousel-item {
	position: relative;
	height: 100%;
}

#banner .carousel-inner .carousel-item {
	background: center no-repeat #000;
	background-size: cover;
	z-index: 1;
}

#banner .carousel-inner .carousel-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	background: radial-gradient(transparent, #000);
	z-index: -1;
}

.bannerText {
	position: absolute;
	width: 100%;
	max-width: 800px;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	text-shadow: 1px 1px 1px #000;
}

.bannerText h1 {
	font: italic 400 62px/60px 'Old Standard TT', serif;
	color: #fff;
	display: block;
	padding-bottom: 10px;
	text-shadow: 1px 1px 1px #000;
}

.bannerText h1 span {
	font: 400 26px 'Montserrat', sans-serif;
	display: block;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.bannerText p {
	padding: 0 15%;
	color: #fff;
}

.scrollDown {
	position: absolute;
	text-align: center;
	width: 30px;
	line-height: 30px;
	cursor: pointer;
	left: 50%;
	bottom: 20px;
	color: #fff;
	transform: translateX(-50%);
	z-index: 9;
}

.scrollDown i {
	color: #fff;
	display: block;
	letter-spacing: 1px;
	line-height: 22px;
	font-size: 18px;
	text-transform: uppercase;
	animation: updown 1.2s linear infinite;
}

@keyframes updown {
	25% {
		transform: translateY(-10px);
	}

	50% {
		transform: translateY(0px);
	}

	75% {
		transform: translateY(10px);
	}
}

.carousel-indicators {
	bottom: 50%;
	transform: translateY(50%);
	right: 20px;
	left: auto;
	align-items: center;
	flex-direction: column;
	margin-right: 0px;
	margin-left: 0px;
}

.carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.50);
	border-width: 5px;
	opacity: 1;
}

.carousel-indicators li:hover,
.carousel-indicators .active {
	background-color: #fff;
}

.bannerControl {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bannerControl>span {
	width: 120px;
}

.bannerControl .carousel-control-next.banner-next,
.bannerControl .carousel-control-prev.banner-prev {
	position: static;
	top: auto;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	margin: 0 5px;
	opacity: 1;
	z-index: 9;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	background-size: 60%;
}

.carousel-control-next.banner-next:hover,
.carousel-control-prev.banner-prev:hover {
	background-color: #bc986b;
}

p {
	font-weight: 400;
}

.padding {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.heading {
	display: table;
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.heading h6 {
	color: #191919;
	text-transform: uppercase;
	position: relative;
	padding-left: 70px;
	margin-bottom: 0px;
}

.heading h6::before {
	content: '';
	position: absolute;
	left: 0px;
	top: calc(50% - 1px);
	width: 60px;
	height: 1px;
	background: #191919;
	z-index: -1;
}

.heading h6.text-white::before {
	background: #fff;
}

.heading h2,
.heading h1,
.heading h4,
.heading h5 {
	display: table;
	color: #BB854A;
	margin-bottom: 0;
}

.heading h2.text-white,
.heading h4.text-white {}

.heading h1,
.heading h2 {
	font-size: 3.5rem;
	font-weight: 100;
}

.heading h4 {
	font-size: 2rem;
	font-weight: 200;
}

.heading h5 {
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 15px;
}

.heading p {
	width: 70%;
	margin: 20px auto 0;
}

.hm-overviewContainer {
	position: relative;
	z-index: 1;
}

.hm-overviewContainer .textabsolute {
	position: absolute;
	left: 0;
	right: 0;
	top: 40%;
	transform: translateY(-50%);
	text-transform: uppercase;
	text-align: center;
	font-size: 14vw;
	letter-spacing: 1vw;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.05);
	z-index: -1;
	pointer-events: none;
}

.overviewText {
	padding-right: 5%;
}

.overview-img .img-fluid {
	position: relative;
	overflow: hidden;
}

.overview-img .img-fluid .sketch {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	animation: show 10s linear alternate;
}

@keyframes show {
	0% {
		opacity: 0.7;
	}

	35% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.overIcons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}

.overIcons li {
	flex-grow: 1;
	width: calc(100% / 5);
	padding-right: 20px;
	text-align: center;
}

.overIcons li img {
	width: 70px;
	margin: 0 auto 10px;
}

/*project section*/
.hm-projectContainer {
	position: relative;
	z-index: 1;
}

.hm-projectContainer:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background: #BB854A;
	z-index: -1;
}

.hm-projectContainer .carousel-item {
	background: center no-repeat;
	background-size: cover;
}

.projectControlContainer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.projectControlContainer .heading {
	margin-bottom: 0;
	text-align: right;
}

.projectControlContainer .heading h4,
.projectControlContainer .heading h5 {
	margin-right: 0;
	margin-left: auto;
}

.projectControl {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

.projectControl a {
	width: auto;
	position: static;
	margin: 0;
	opacity: 1;
	margin-left: 10px;
}

.projectControl a:hover {
	background-color: transparent;
}

.projectControl a span {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-size: 50%;
	border: 2px solid #fff;
}

.project-text {
	padding: 20px;
	display: flex;
	justify-content: flex-end;
}

.project-text section {
	padding: 20px;
	width: 400px;
	min-height: 400px;
	background: rgba(255, 255, 255, 0.80);
}

.project-text section h5 {
	font-size: 30px;
	padding: 20px 0 10px;
	color: #BB854A;
}

.project-text section .projectIcons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.project-text section .projectIcons li {
	flex-grow: 1;
	flex-basis: 0;
	padding: 0 10px;
	text-align: center;
}

.project-text section .projectIcons li img {
	width: 40px;
	margin: 0 auto 10px;
}

.project-text section .projectIcons li span {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	display: block;
}

/*project section*/

/*why us*/
.whyUsContainer {
	display: flex;
	flex-wrap: wrap;
}

.whyUsBox {
	flex-grow: 1;
	width: calc(100% / 3);
	float: left;
	text-align: center;
	border: solid rgb(201 159 113 / 30%);
	border-width: 0 1px 1px 0;
}

.whyUsBox:nth-child(3n) {
	border-right-color: transparent;
}

.whyUsBox:nth-last-child(1),
.whyUsBox:nth-last-child(2),
.whyUsBox:nth-last-child(3) {
	border-bottom-color: transparent;
}

.whyUsBox section {
	width: 100%;
	float: left;
	padding: 10px;
}

.whyUsBox .imgBox {
	width: 60px;
	margin: 0 auto;
}

.whyUsBox section:hover .imgBox {}

.whyUsBox section .imgBox svg path,
.whyUsBox section .imgBox svg circle {
	fill: none;
	stroke: #BB854A;
	stroke-width: 1;
	stroke-miterlimit: 20;
	stroke-dasharray: 1400;
	stroke-dashoffset: 0;
}

.whyUsBox section:hover .imgBox svg path,
.whyUsBox section:hover .imgBox svg circle {
	fill: #BB854A;
	stroke: none;
	/*-webkit-animation:path 9s infinite;
	animation:path 9s infinite;*/
}

@-webkit-keyframes path {
	0% {
		stroke-dashoffset: 1400;
	}

	100% {
		stroke-dashoffset: 0;
		fill: #BB854A;
		stroke: none;
	}
}

@keyframes path {
	0% {
		stroke-dashoffset: 1400;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

.whyUsBox .whyUsText {
	width: 100%;
	float: left;
	padding: 10px;
}

.whyUsBox .whyUsText h3 {
	width: 100%;
	float: left;
	color: #191919;
	font-size: 14px;
	text-transform: uppercase;
}

/*why us*/

.bg-image {
	background: center no-repeat fixed;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.bg-image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.68);
	z-index: -1;
}

.viewmore {
	float: left;
	width: 100%;
	margin-top: 30px;
}

.viewmore a {
	position: relative;
	display: flex;
	color: #BB854A;
	align-items: center;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 300ms ease-in-out;
}

.viewmore a span {
	margin: 0 5px;
}

.viewmore a::before,
.viewmore a::after {
	content: '';
	height: 11px;
	width: 30px;
	background: url(../images/next.png) center no-repeat;
	background-size: 100% 100%;
	transition: all 300ms ease-in-out;
}

.viewmore a::before {
	width: 0;
	opacity: 0;
}

.viewmore a:hover {
	color: #191919;
}

.viewmore a:hover::before {
	opacity: 1;
	width: 30px;
}

.viewmore a:hover::after {
	opacity: 0;
	width: 0;
}

.readmore {
	width: 100%;
	float: left;
	margin-top: 20px;
}

.readmore a,
.readmore button {
	background: #BB854A;
	color: #fff;
	font-weight: 500;
	padding: 17px 25px;
	position: relative;
	display: inline-block;
	border-radius: 3px;
	z-index: 1;
	line-height: 1;
	transition: all 300ms ease-in-out;
}

.readmore a:hover,
.readmore button:hover {
	background: #000;
}

.readmore.whitemore a {
	background: #fff;
	color: #000;
}

.readmore.whitemore a:hover {
	background: #000;
	color: #fff;
}

.readmore button {
	border: none;
	outline: none;
	border-radius: 50px;
	width: 140px;
	text-align: center;
}

.text-serif {
	font-family: 'Old Standard TT', serif;
}

/*News*/
.hm-newsContainer {}

.hm-newsContainer .newsBox * {
	-webkit-transition: all 500ms;
	-o-transition: all 500ms;
	-moz-transition: all 500ms;
	-ms-transition: all 500ms;
	transition: all 500ms;
}

.hm-newsContainer .newsBox a {
	width: 100%;
	float: left;
	position: relative;
	color: #000;
}

.hm-newsContainer .newsBox a .newsImg {
	overflow: hidden;
	width: 100%;
	float: left;
	position: relative;
	z-index: 1;
}

.hm-newsContainer .newsBox a .newsImg:before {
	content: '';
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	border: 1px solid rgba(0, 0, 0, 0.57);
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
	-webkit-transition: all 500ms;
	-o-transition: all 500ms;
	-moz-transition: all 500ms;
	-ms-transition: all 500ms;
	transition: all 500ms;
}

.hm-newsContainer .newsBox a .newsImg:hover:before {
	border-color: rgba(255, 255, 255, 0.64);
}

.hm-newsContainer .newsBox a:hover .newsImg img {
	-webkit-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

.hm-newsContainer .newsBox a .newsImg i {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #fff;
	color: #000;
	top: 10px;
	right: 10px;
	text-align: center;
	z-index: 9;
	opacity: 0;
}

.hm-newsContainer .newsBox a:hover .newsImg i {
	opacity: 1;
}

.hm-newsContainer .newsBox a .newsText {
	width: 100%;
	float: left;
	padding-top: 20px;
}

.hm-newsContainer .newsBox a .newsText em {
	padding-bottom: 15px;
	width: 100%;
	float: left;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 1px;
}

.hm-newsContainer .newsBox a .newsText h6 {
	display: block;
	margin-bottom: 0;
	font-size: 20px;
}

.hm-newsContainer .newsBox a .newsText h6:hover {
	color: #BB854A;
}

.hm-newsContainer .newsBox a .newsText span {
	font-size: 14px;
	color: #828282;
	letter-spacing: 1px;
	width: 100%;
	float: left;
	margin-top: 10px;
}

/*News*/

/*Footer*/
.footer-area {
	background: #BB854A;
	border-top: 7px solid #e3af75;
	position: relative;
	z-index: 1;
}

.mainFooter {
	padding-top: 5rem;
}

.mainFooter .footLinks h4 {
	color: #000;
	letter-spacing: 1px;
	padding-bottom: 10px;
	font: 700 20px 'Old Standard TT', serif;
}

.mainFooter .footLinks ul {
	width: 100%;
	float: left;
}

.mainFooter .footLinks ul li {
	margin: 10px 0;
	display: table;
}

.mainFooter .footLinks ul li>a:hover {
	color: #fff;
}

.mainFooter .footLinks>ul li {
	color: #000;
	padding-left: 20px;
	position: relative;
}

.mainFooter .footLinks>ul li:before {
	content: '\2666';
	position: absolute;
	left: 0;
	top: 50%;
	line-height: 0;
}

.mainFooter .footLinks>ul li a {
	font-size: 14px;
	color: #000;
	transition: all 300ms ease-in-out;
}

.mainFooter .footLinks .footAbout p {
	color: #000;
}

.mainFooter .footLinks .social-links {}

.mainFooter .footLinks .social-links li {
	display: inline-block;
	margin-right: 10px;
	padding-left: 0;
}

.mainFooter .footLinks .social-links li:before {
	display: none;
}

.mainFooter .footLinks .social-links li a {
	font-size: 17px;
}

.mainFooter .footLinks .social-links li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #000;
	transition: all 300ms ease-in-out;
}

.mainFooter .footLinks .social-links li a:hover:hover i {
	color: #fff;
}

.mainFooter .footLinks .newsletter p {
	color: #000;
}

.mainFooter .footLinks .newsletter {
	width: 100%;
	float: left;
}

.mainFooter .footLinks .newsletter .field {
	width: 100%;
	float: left;
}

.mainFooter .footLinks .newsletter input,
.mainFooter .footLinks .newsletter .subscribe {
	border: none;
	outline: none;
	padding: 10px 20px;
}

.mainFooter .footLinks .newsletter input {
	width: 70%;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 50px;
}

.mainFooter .footLinks .newsletter input:focus {
	background: #fff;
}

.mainFooter .footLinks .newsletter input::placeholder {
	color: #000;
}

.mainFooter .footLinks .newsletter .subscribe {
	width: 70px;
	background: rgb(0 0 0 / 74%);
	color: #fff;
	border-radius: 50px;
	cursor: pointer;
}

.mainFooter .footLinks .newsletter .subscribe:hover {
	background: #000;
}

.footer-area .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5rem 0;
}

.footer-area .bottom ul {
	display: flex;
}

.footer-area .bottom li {
	font-size: 13px;
	display: flex;
	color: #000;
}

.footer-area .bottom p {
	display: flex;
	font-size: 12px;
	align-items: center;
	margin-bottom: 0;
	color: #000;
}

.footer-area .bottom p img {
	width: 20px;
}

.button-top {
	background: #43301c;
	position: fixed;
	cursor: pointer;
	right: 30px;
	bottom: 10px;
	color: #FFFFFF;
	font-size: 13px;
	opacity: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	z-index: 99;
}

.button-top:hover {
	background: #000;
}

/*Footer*/


/*************project's page**************/
.insideBanner {
	height: 450px;
	background-attachment: scroll;
	border-bottom: 6px solid #BB854A;
}

.insideBanner::before {
	background: rgba(0, 0, 0, 0.35);
}

.breadcrumb {
	position: absolute;
	top: 0;
	padding: 10px 0;
	background: none;
	margin-bottom: 0;
}

.breadcrumb li {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	color: #606060;
	margin: 0 3px;
}

.breadcrumb li a {
	color: #1E1E1E;
}

.pageHeader {
	margin-bottom: 40px;
}

.pageTitle {
	width: 220px;
	float: left;
	position: relative;
	padding: 10px;
	z-index: 1;
}

.pageTitle:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 33vw;
	z-index: -1;
	box-shadow: 0px 0.5rem 1rem rgb(187 133 74 / 34%);
	border-radius: 0 100px 100px 0;
}

.pageHeader {
	display: flex;
	justify-content: space-between;
}

.pageHeader ul {}

.pageHeader ul li {
	display: inline-block;
	vertical-align: top;
}

.pageHeader li a {
	padding: 10px;
	display: block;
	color: #191919;
	font-size: 13px;
	font-weight: 500;
	transition: all 300ms;
}

.pageHeader li a:hover {
	color: #BB854A;
}

.pageHeader ol {
	margin-top: 20px;
	text-align: right;
}

.pageHeader ol li {
	display: inline-block;
	vertical-align: top;
}

.pageHeader ol li a {
	border: 1px solid rgb(0 0 0 / 14%);
	color: #191919;
}

.pageHeader ol li a:hover {
	color: #fff;
	background: #BB854A;
}

.fixedPageHeader {
	width: 160px;
	position: fixed;
	left: -120px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
	display: none;
}

.fixedPageHeader,
.fixedPageHeader * {
	-webkit-transition: all 400ms;
	-o-transition: all 400ms;
	-ms-transition: all 400ms;
	-moz-transition: all 400ms;
	transition: all 400ms;
}

.fixedPageHeader:hover {
	left: 0;
}

.fixedPageHeader ul li {
	width: 100%;
	float: left;
	margin-bottom: 1px;
}

.fixedPageHeader ul li a {
	display: block;
	padding: 10px;
	position: relative;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.33);
	color: #191919;
	font-size: 12px;
	background: #fff;
}

.fixedPageHeader ul li a i {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 40px;
	font-size: 15px;
	background: #191919;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}

.fixedPageHeader ul li a:hover {
	background: #191919;
	color: #fff;
}

.fixedPageHeader ul li a:hover i {
	color: #191919;
	background: #fff;
}

.projectOverview {}

.projectOverview.projectSideSec {}

.projectSideSec .projImg {
	width: 100%;
	float: left;
	margin-bottom: 30px;
	box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.27);
}

.quickview {}

.quickview figure {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
}

.quickview figure figcaption {
	margin: 0 2px;
	padding: 10px 10px 7px;
	border: 1px solid rgb(0 0 0 / 14%);
	flex-basis: 0;
	flex-grow: 1;
}

.quickview figure figcaption img {
	width: 35px;
	margin: 0 auto 10px;
}

.quickview figure figcaption p {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 0;
}

 .projectAdd {}

 .projectAdd li {	
    display: flex;
    align-items: center;
    margin: 5px 2px;
    padding: 10px;
    border: 1px solid rgb(0 0 0 / 14%);
}

 .projectAdd li i {
	flex: 0 0 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background: #BB854A;
	color: #fff;
}

 .projectAdd li h6 {
	font-size: 14px;
	margin-bottom: 0;
	padding-left: 10px;
}

 .projectAdd li a {
	color: #191919;
}

 .projectAdd li a:hover {
	color: #BB854A;
}

 .projectAdd li

   .projectAdd-para{
	font-weight: 300;
    line-height: 1.5;
    font-size: 1.25rem;
 }


.bg-brown {
	background-color: #BB854A !important;
}

/*Features*/
.feat-icon {
	margin-top: 40px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.feat-icon .icon {
	-ms-flex: 0 0 15%;
	flex: 0 0 25%;
	max-width: 25%;
	padding: 20px 5px;
	text-align: center;
}

.feat-icon .icon section {
	height: 100%;
	width: 100%;
	float: left;
}

.feat-icon .icon img {
	width: 60px;
	display: inline-block;
	transition: all 300ms ease-in-out;
}

.feat-icon .icon:hover img {
	filter: brightness(1.5);
}

.feat-icon .icon span {
	padding-top: 20px;
	font-size: 14px;
	font-weight: 500;
	width: 100%;
	float: left;
	color: #faf7f2;
	transition: all 300ms ease-in-out;
}

.feat-icon .icon:hover span {
	color: #fff;
}

/*Features*/

.paymentContainer .btn {
	position: relative;
	outline: none;
}

.paymentContainer .btn:focus,
.paymentContainer .btn:active {
	box-shadow: none;
}

.paymentContainer .btn i {
	position: absolute;
	right: 10px;
	top: 50%;
	line-height: 0;
}

/*Gallery*/
.galleryContainer {
	position: relative;
}

#gallerySlider {
	background: #000;
}

#gallerySlider a {
	width: 100%;
}

#gallerySlider img {
	height: 500px;
	object-fit: cover;
	opacity: 0.7;
	cursor: zoom-in;
}

.galleryControls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	width: 100%;
	float: left;
}

.galleryArrow {
	width: 40px;
	height: 40px;
	background: no-repeat center #fff;
	background-size: 18px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 99;
	transition: all 300ms ease-in-out;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.galleryArrow:hover {
	background-color: #BB854A;
}

#galPrev {
	left: 10px;
	background-image: url(../images/arrow-left.png);
}

#galNext {
	right: 10px;
	background-image: url(../images/arrow-right.png);
}

.galleryPager {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}

.galleryPager li {
	margin: 0 5px;
}

.galleryPager li a {
	cursor: pointer;
	display: block;
	font-size: 13px;
	color: #212121;
	padding: 3px;
	filter: grayscale(100%);
}

.galleryPager li a:hover,
.galleryPager li.activeSlide a {
	filter: none;
}

.galleryPager li a img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #BB854A;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

/*Gallery*/

.cuContainer .row {
	margin-left: 5px;
	margin-right: 5px;
}

.cuContainer .cuBox {
	padding: 5px;
}

.cuContainer .cuBox img {
	min-height: 170px;
	object-fit: cover;

}

.cuContainer .cuBox a {
	background: #000;
	display: block;
}

.cuContainer .cuBox a .img-fluid {
	transition: all 300ms ease-in-out;
}

.cuContainer .cuBox a:hover .img-fluid {
	opacity: 0.7;
}

.locationAdvan section h6 {
	text-align: center;
	display: block;
	margin-bottom: 20px;
	color: #ffffff;
	font-weight: 300;
	font-size: 24px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.locationAdvan section {
	height: 100%;
	padding: 20px;
	background: #BB854A;
}

.locationAdvan section ul {
	display: flex;
	flex-wrap: wrap;
}

.locationAdvan section ul li {
	flex-grow: 1;
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	text-align: center;
}

.locationAdvan section ul li img {
	flex: 0 0 60px;
	max-width: 60px;
	margin: 0 auto 10px;
	filter: brightness(1.5);
}

.locationAdvan section ul li span {
	display: block;
	padding-left: 10px;
	font-weight: 500;
	color: #fff;
}

.location-advant {
    margin-top: 40px;
    padding: 20px;
	color: #000;
    background: #bb854a;
}

.location-advant .locPoints strong {
    font-size: 2rem;
    display: block;
    font-weight: 200;
}
.location-advant .locPoints {
    flex-grow: 1;
    color: #fff;
}

.separator {
	display: table;
	border-bottom: 1px solid rgb(0 0 0 / 19%);
	position: relative;
}

.separator span {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	background: #BB854A;
}

.separator span:before,
.separator span:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #BB854A;
	transform: rotate(90deg);
}

.separator span:before {
	left: -8px;
	top: 10px;
}

.separator span:after {
	right: -8px;
	bottom: 10px;
}

.siteplan a,
.location a {
	display: block;
	background: #000;
}

.siteplan img,
.location img {
	transition: all 300ms ease-in-out;
}

.siteplan:hover img,
.location a:hover img {
	opacity: 0.5;
}

.showmoregal {
	display: none;
}

.textmore {
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	color: #BB854A;
	display: table;
}

/*Inside page*/
.emptyBox {
	height: 102px;
	background: #BB854A;
}

.contact .contactBox {
	margin: 5px 0;
}

.contact aside {
	height: 100%;
	text-align: center;
	padding: 20px;
	background: #e3af75;
	transition: all 300ms ease-in-out;
}

.contact aside:hover {
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.17);
	transform: translateY(-4px);
}

.contact aside i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	background: #faf7f2;
	margin-bottom: 15px;
}

.contact aside h5 {
	font-size: 25px;
	font-weight: 300;
}

.contact aside a {
	color: #191919;
}

.contact aside a:hover {
	text-decoration: underline;
}

.contact aside p {
	font-weight: 500;
	margin-bottom: 5px;
	line-height: 1.8;
}

/*Inside page*/


/*transformation Animation*/
.leftTranslate {
	-webkit-transform: translate(-200px, 0);
	transform: translate(-200px, 0);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.rightTranslate {
	-webkit-transform: translate(200px, 0);
	transform: translate(200px, 0);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.topTranslate {
	-webkit-transform: translate(0, -200px);
	transform: translate(0, -200px);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.bottomTranslate {
	-webkit-transform: translate(0, 200px);
	transform: translate(0, 200px);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.doneTranslate {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}

.scaleTranslate {
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.doneScale {
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

/*transformation Animation*/

.list li {
	margin-bottom: 10px;
}

.list ul,
.list ol {
	padding-left: 20px;
}

/*responsive*/
@media (max-width:1200px) {
	.mid-footer .follow h2 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.mid-footer .footer-logo img {
		width: 90px;
	}

	.mid-footer .footer-tag h4 {
		margin-bottom: 0;
		font-size: 1.2rem;
	}
}

@media (min-height:1024px) {}

@media (min-height:1280px) {}

@media (max-width:768px) {
	body {
		font-size: 13px;
	}

	.header .mainHeader {
		padding: 5px 0;
	}

	.mbMenuContainer .mbMenu ul li ul li {
		padding: 0;
	}

	.logo-container {
		padding-bottom: 0 !important;
	}

	.footerBox h2 {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}

	.footerBox ul li {
		margin: 5px 0;
	}

	.footerBox ul li a {
		font-size: 14px;
	}

	.mid-footer .footer-tag i {
		font-size: 30px;
	}

	.bottom {
		padding-top: 0 !important;
	}

	.navi {
		display: none;
	}

	.menuBtn {
		display: block;
	}

	.mbMenuContainer {
		position: fixed;
		top: 59px;
		width: 100%;
		background: #faf7f2;
		z-index: 99999;
	}

	.header.fixed .logo img {
		width: 100%;
		margin-left: 0;
		margin-top: 5px;
	}

	.textabsolute {
		display: none;
	}

	.mbMenuContainer .mbMenu ul li {
		width: 100%;
		border-bottom: 1px solid #bed2ab;
	}

	.mbMenuContainer .mbMenu ul li:nth-last-child(1) {
		border-bottom: none;
	}

	.bannerText h1 {
		font-size: 30px;
	}

	.bannerText h1 span {
		font-size: 23px;
	}

	.overIcons li {
		font-size: 10px;
		padding-right: 3px;
	}

	.hm-projectContainer:before {
		width: 100%;
	}

	.projectControlContainer {
		flex-wrap: wrap-reverse;
	}

	.heading h2 {
		font-size: 2.5rem;
	}

	.projectControl a span {
		height: 40px;
		width: 40px;
	}

	.hm-newsContainer .newsBox a .newsText h6 {
		font-size: 17px;
	}

	.pageHeader li a {
		padding: 6px;
		font-size: 12px;
	}

	.pageTitle {
		width: 176px;
	}

	.heading {
		margin-bottom: 10px;
	}

	.locationAdvan section h6 {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.locationAdvan section h3 {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.locationAdvan section {
		padding: 40px 0;
	}

	.locationAdvan section ul li span {
		padding-left: 10px;
		font-size: 10px;
	}

	.locationAdvan section ul li img {
		flex: 0 0 48px;
		max-width: 44px;
	}

	.feat-icon .icon span {
		padding-top: 20px;
		font-size: 11px;
	}

	.galleryPager li a img {
		width: 42px;
		height: 42px;
	}

	#gallerySlider img {
		height: 324px;
	}
}

@media (max-width:767px) {
	.follow {
		text-align: center;
	}

	.follow ul {
		justify-content: center;
	}

	.footer-logo {
		margin: 20px 0;
	}

	.footer-tag {
		text-align: center;
	}

	.newsBox {
		margin-bottom: 30px;
	}
}

@media (max-width:576px) {

	.hm-newsContainer .newsBox a .newsText h6 {
		font-size: 15px;
	}

	.hm-newsContainer .newsBox a .newsText em {
		padding-bottom: 5px;
	}

	.fixedPageHeader ul li a i {
		width: 32px;
	}

	.fixedPageHeader {
		left: -128px;
	}

	.carousel-indicators {
		bottom: 7%;
		display: flow-root;
		left: 38%;
	}

	.carousel-indicators li {
		display: inline-flex;
	}

	.project-text section .projectIcons li {
		padding: 0 2px;
	}

	.header .mainHeader {
		padding: 2px 0;
	}
}

@media (max-width:575px) {
	.mainFooter {
		padding-top: 20px !important;
	}

	body {
		text-align: justify;
	}

	th,
	td {
		text-align: left;
	}

	.footerBox {
		margin: 15px 0;
		text-align: center;
	}

	.footerBox ul li {
		justify-content: center;
	}
}

@media (max-width:480px) {
	.projectControl {

		margin-bottom: 3px;
	}

	.whyUsBox .whyUsText h3 {
		font-size: 11px;
	}

	.heading h2 {
		font-size: 24px;
	}

	.button-top {
		right: 21px;
	}

	.rounded-circle {
		border-radius: 0% !important;
	}

	#banner {
		height: 65vh;
	}

	.heading p {
		width: 100%;
	}

	.whyUsBox .whyUsText {
		padding: 10px 1px;
	}

	.whyUsBox section {
		padding: 5px;
	}

	.overIcons {
		display: inline-block;
		margin: 20px 0;
		text-align: center;
	}

	.overIcons li {
		font-size: 10px;
		padding-right: 3px;
		display: inline-block;
		margin: 10px;
		width: calc(100% / 4);
		text-align: center;
	}

	.project-text section .projectIcons li span {
		font-size: 12px;
	}

	.bannerText h1 {
		font-size: 30px;
		line-height: 28px;
		margin-bottom: 0px;
	}

	.projectControlContainer .heading {
		margin-bottom: 10px;
		text-align: left;
	}

	.projectControlContainer .heading h5 {
		margin-right: 4px;
		display: inline-block;
		margin-left: 0;
		font-size: 24px;
	}

	.projectControl {
		justify-content: flex-start;
	}

	.heading h2 {
		font-size: 24px;
		display: inline-block;
	}

	.project-text {
		padding: 4px;
	}

	.project-text {
		padding: 4px;
	}

	#gallerySlider img {
		height: 224px;
	}

	th,
	td {
		font-size: 12px;
	}

	.footer-area .bottom {
		display: inline-block;
		width: 100% !important;
	}

	.footer-area .bottom li {
		margin-bottom: 5px;
	}

	/* .feat-icon .icon {
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		max-width: 33%;
	} */

	.enquiryBtn a {
		display: block;
		width: 45px;
		height: 45px;
		line-height: 45px;
	}

	.pageHeader aside {
		display: none;
	}

	.pageTitle:before {
		display: none;
	}

	.pageHeader {
		margin-bottom: 8px;
	}

	.pageTitle {
		margin: auto;
	}

	.pageHeader {
		text-align: center;
	}

	.overviewText {
		padding-right: 0%;
	}

	.overIcons li img {
		width: 50px;
	}

	.scrollDown {
		display: none;
	}

	.heading h4 {
		font-size: 24px;
	}

	.marginlefe30 {
		padding-left: 40px;
	}

	.whyUsBox {
		border-color: #00000012;
	}

	.landing-logo svg {
		width: 73%;
	}
}

@media (max-width:425px) {
	.logo {
		width: 80px !important;
	}

	.header.fixed .logo {
		height: 38px;
	}

	.mainFooter .footLinks h4 {
		padding-bottom: 0px;
	}

	.footLinks {
		margin-bottom: 15px;
	}

	.mbMenuContainer .mbMenu ul li a {
		font-size: 1.3rem;
	}

	.mbMenuContainer .mbMenu ul li a i {
		font-size: 1rem;
	}

	.bannerText {
		width: 90%;
		text-align: center;
	}

	.bannerText h2 {
		font-size: 22px;
	}

	.padding {
		padding: 40px 0;
	}

	p {
		margin-bottom: 10px;
	}

	.feat-icon .icon span {
		padding-top: 10px;
	}

	.bannerText p {
		display: none;
	}

	.header {
		padding: 0 10px;
	}
}

@media (max-width:375px) {}

@media (max-width:320px) {}


/* doon-square */

.projectTitle {
	margin: 0 auto 50px;
	width: 150px;
}

.projectOverview section h5 {
	font-weight: 300;
	line-height: 1.5;
	text-align: justify;
}

.moreText {
	display: none;
	max-height: 300px;
	overflow: auto;
}

.viewmore {
	width: max-content;
	margin-top: 2rem;
}

.projectOverview .project-stats {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(0 0 0 / 10%);
}

.projectOverview .project-stats li {
	width: calc(100% / 3);
	flex-grow: 1;
	padding: 0 10px 20px 0;
}

.projectOverview section p {
	font-weight: 300;
	line-height: 1.5;
	font-size: 1.25rem;
}

.projectOverview .project-stats li span {
	display: block;
}

/* ======================== Brand Slider Start ========================== */

  .slider {
	background: white;
	padding-bottom: 0px;
  }
  
 #brandslider.slider img {
	filter: grayscale(100%);
	transition: 300ms all linear;
	width: auto;
	height: 100px;
  }
  #brandslider.slider img:hover {
	filter: none;
  }
  