body {
	font-family: "Roboto", sans-serif;
	/* padding-top: 96px; */
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
}

button:focus {
	outline: none;
}

.mt-140 {
	margin-top: 140px;
}

.h-logo img {
	width: 98px;
}

ul, li, a {
	text-decoration: none;
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.whatsapp {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 999;
	cursor: pointer;
}

.header-scn {
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: #fff;
	z-index: 8;
	width: 100%;
	box-shadow: rgba(133, 133, 133, 0.40) 0 0 10px;
}

.navbar {
	transition: 0.5s all;
	padding-left: 0px;
	padding-right: 0px;
}

.fixed .navbar {
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
}

header .navbar-expand-lg .navbar-nav .nav-link {
	color: #4F4F4F;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.drop-main {
	position: relative;
}

.drop-main .nav-link::after {
	content: "\f078";
	font-family: "Font Awesome 5 Pro";
	margin-left: 8px;
}

.menu-drop {
	position: absolute;
	left: 25px;
	background-color: #FFFFFF;
	padding: 10px 20px;
	min-width: 200px;
	width: 100%;
	box-shadow: 0px 4px 4px 0px #0000001A;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	z-index: 1000;
	transition: 0.4s;
	opacity: 0;
	transform: translateY(20px);
	visibility: hidden;
}

.drop-main:hover .menu-drop {
	opacity: 1;
	transform: translateY(0px);
	visibility: visible;
}

.menu-drop a {
	color: #4F4F4F;
	font-size: 18px;
	display: block;
	padding: 8px 0px;
}

.navbar-toggler {
	font-size: 22px;
	color: #4F4F4F;
}

.banner-div {
	position: relative;
	overflow: hidden;
}

.banner-div::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 30%;
	left: 0px;
	right: 0px;
	top: 0px;
	clip-path: polygon(0 -50%, 100% 100%, 0 100%);
	background: linear-gradient(180deg, rgba(236, 28, 36, 0.8) 0%, rgba(244, 129, 32, 0.8) 100%);
	backdrop-filter: blur(5px);
	opacity: 0;
	transition-delay: 1s, 1s;
	transition-duration: 1s;
	transform: 1s;
	transform: translateX(-200px);
}

#home_banner .owl-nav button {
	position: absolute;
	top: calc(50% - 25px);
	background-color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	font-size: 40px;
	line-height: 8px;
	color: #000;
}

#home_banner .owl-nav button:before {
	font-family: "Font Awesome 5 Pro";
	font-size: 30px;
}

#home_banner .owl-nav button span {
	display: none;
}

#home_banner .owl-nav button.owl-prev {
	left: 10px;
}

#home_banner .owl-nav button.owl-prev:before {
	content: '\f104';
}

#home_banner .owl-nav button.owl-next {
	right: 10px;
}

#home_banner .owl-nav button.owl-next:before {
	content: '\f105';
}

.center .banner-div::before {
	opacity: 1;
	transform: translateX(0px);
}

.heading-h2 {
	margin-bottom: 40px;
}

.heading-h2 h2 {
	text-align: center;
	font-size: 48px;
	font-weight: 600;
	color: #231F20;
	margin-bottom: 0px;
}

.nav-overlay {
	display: none;
}

.navbar-collapse .h-logo {
	display: none;
}

.about-box-main {
	display: flex;
}

.about-box-div {
	background: linear-gradient(180deg, #F55B61 0%, #FF7F5A 100%);
	box-shadow: 4px 2px 10px 0px #0000001A;
	text-align: center;
	padding: 50px 30px;
	width: 100%;
	position: relative;
}

.about-box-div h4 {
	font-size: 30px;
	font-weight: 600;
	color: #FFFFFF;
}

.about-box-div img {
	width: 84px;
	margin-top: 30px;
	margin-bottom: 40px;
}

.about-box-div p {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
}

.about-box-div::before {
	content: "";
	position: absolute;
	display: block;
	top: 40px;
	right: 0;
	margin-right: -24px;
	height: 40px;
	width: 25px;
	z-index: 5;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: linear-gradient(180deg, #F65F60 0%, #F7635F 100%);
	box-shadow: 4px 2px 10px rgba(0, 0, 0, 0.1);
}

.about-box-div:last-child:before {
	display: none;
}

.about-box-div.about-white-box-div {
	background: #FFFFFF;
}

.about-box-div.about-white-box-div h4 {
	color: #231F20;
}

.about-box-div.about-white-box-div p {
	color: #4F4F4F;
}

.about-box-div.about-white-box-div::before {
	background: #FFFFFF;
}

/*--------------------------------------------------responsive */
@media (max-width:991.98px) {
	header .navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 0px;
		padding-right: 0px;
		font-size: 16px;
		line-height: 25px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.menu-drop a {
		font-size: 14px;
	}

	.menu-drop {
		width: 80%;
	}

	.navbar-collapse {
		position: fixed;
		background-color: #fff;
		left: 0px;
		z-index: 5000;
		top: 0px;
		height: 100% !important;
		width: 80%;
		padding: 20px;
		overflow: auto;
		transform: translateX(-200px);
		transition: 0.5s;
		opacity: 0;
		visibility: hidden;
	}

	.navbar-collapse.show-navbar {
		transform: translateX(0px);
		opacity: 1;
		visibility: visible;
	}

	.navbar-collapse .navbar-toggler {
		position: absolute;
		right: 10px;
		top: 10px;
	}

	.nav-overlay {
		display: block;
		position: fixed;
		top: 0px;
		left: 0px;
		height: 100%;
		width: 100%;
		z-index: 4999;
		background-color: rgb(0, 0, 0, 0.6);
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
	}

	.nav-overlay.show-nav-overlay {
		opacity: 1;
		visibility: visible;
	}

	.navbar-collapse .h-logo {
		display: block;
	}

	.about-box-main {
		display: block;
		max-width: 400px;
		margin: 0 auto;
	}

	.about-box-div::before {
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: -24px;
		top: auto;
		height: 25px;
		width: 40px;
		clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
		background: #FF7F5A;
	}

}

/* --------------------------- */
@media (max-width:575.98px) {
	.h-logo img {
		width: 70px;
	}

	.mt-140 {
		margin-top: 60px;
	}

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

	#home_banner .owl-nav button {
		top: calc(50% - 20px);
		width: 34px;
		height: 34px;
	}

	#home_banner .owl-nav button:before {
		font-size: 22px;
		position: relative;
		top: -2px;
	}

}

@media (min-width:576px) and (max-width:767.98px) {
	.h-logo img {
		width: 80px;
	}

	.mt-140 {
		margin-top: 60px;
	}

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

}

@media (min-width:768px) and (max-width:991.98px) {
	.mt-140 {
		margin-top: 80px;
	}

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

}

@media (min-width:992px) and (max-width:1199.98px) {
	.mt-140 {
		margin-top: 80px;
	}

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

}

@media (min-width:1200px) {
}

.we-design-scn {
	padding-bottom: 70px;
}

.categories-scn h2 {
	margin: 0px;
	text-align: center;
	display: block;
}

.categories-scn {
	width: 100%;
	padding: 70px 0px;
}

.cate-img img {
	height: auto;
	transition: 0.5s all;
}

.categories-list {
	display: flex;
	flex-flow: row wrap;
	width: calc(100% + 24px);
	margin-top: 40px;
	margin-left: -12px;
}

.categories-list .cate-item {
	width: calc(20% - 24px);
	margin: 12px;
	background-color: #FFECED;
	text-align: center;
	border-radius: 10px;
	min-height: 186px;
	display: flex;
	flex-flow: row wrap;
	align-content: center;
}

.cate-item .cate-img {
	width: 60px;
	margin: 0 auto 10px auto;
}

.cate-name {
	font-size: 20px;
	text-decoration: none;
	color: #4F4F4F;
	padding-left: 10px;
	display: inline-block;
	width: 100%;
	transition: 0.5s all;
	text-align: center;
	font-weight: 600;
}

.categories-list .cate-item a {
	text-decoration: none;
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	align-items: center;
	background-color: var(--lightgrey-clr);
	padding: 10px 15px;
	min-height: 110px;
	position: relative;
}

.categories-list .cate-item a:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	transition: 1s all;
	width: 0;
	height: 2px;
	background-color: var(--theme-clr);
}

.categories-list .cate-item:hover a:after {
	width: 100%;
}

@media(max-width:767px) {
	.categories-scn {
		padding: 40px 0px;
	}

	.categories-list .cate-item {
		width: 50%;
	}

}

/*Our Decign Start*/
.our-design {
	width: 100%;
	padding: 70px 0px 140px 0px;
}

.our-design-list-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.our-design-list-left {
	width: 288px;
	color: #4F4F4F;
	font-size: 20px;
	font-weight: 600;
}

.our-design-tab-item .design-tab {
	width: 288px;
	border: 1px #E6E6E6 solid;
	min-height: 70px;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	margin: auto;
	justify-content: center;
	transition: 0.5s all;
}

.our-design-tab-item .design-tab.active {
	background-color: #FFECED;
	color: #EC1C24;
}

.our-design-tab-item .design-tab:hover {
	background-color: #FFECED;
	color: #EC1C24;
	border: none;
}

.our-design-list-right {
	width: 80%;
	padding-left: 30px;
	overflow: hidden;
}

.our-design-item {
	width: calc(100% + 15px);
	margin-left: -18px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.our-design-img-item {
	width: calc(33.33% - 36px);
	margin: 0px 18px 20px 18px;
	position: relative;
}

.our-design-img img {
	width: 100%;
	min-height: 331px;
}

.our-design-img {
	border-radius: 10px;
	overflow: hidden;
}

.our-design-img-item .ourdesign-name {
	font-size: 20px;
	color: #231F20;
	background: linear-gradient(90deg, #FF747A 0%, #FFB373 100%);
	padding: 13px 20px;
	border-radius: 0px 0px 10px 10px;
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.explore-more {
	border: #4F4F4F 2px solid;
	border-radius: 10px;
	padding: 30px 40px 10px 40px;
	min-height: 328px;
}

.exploremore-title {
	color: #4F4F4F;
	font-size: 30px;
	display: block;
	font-weight: 600;
	line-height: 1.3;
	padding-bottom: 10px;
}

.explore-more .exploremore-btn {
	background: #EC1C24;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	display: flex;
	padding: 11px;
	border-radius: 8px;
	max-width: 188px;
	height: 50px;
	margin-top: 20px;
	text-align: center;
	justify-content: center;
	transition: 0.5s all;
}

.explore-more .exploremore-btn.getquote-btn {
	border: #EC1C24 2px solid;
	background-color: #fff;
	color: #EC1C24;
	min-height: 46px;
}

.explore-more .exploremore-btn:hover {
	opacity: 0.9;
}

/*Our Decign End*/

/**whyspace Start**/
.whyspace-living {
	width: 100%;
	padding: 140px 0 70px 0;
}

.whyspace-table {
	overflow: auto;
	width: 100%;
	max-width: 1278px;
	margin: auto;
}

.whyspace-table table {
	width: 100%;
	color: #4F4F4F;
	font-size: 20px;
	text-align: center;
}

.whyspace-table table tr td:first-child {
	font-weight: 600;
	color: #231F20;
	border-left: #F55B61 1px solid;
}

.whyspace-table table th {
	color: #231F20;
	padding: 10px 30px;
	height: 100px;
	background-color: #FF9E83;
	width: 38%;
	font-size: 24px;
	line-height: 1.3;
}

.whyspace-table table th:first-child {
	border-radius: 20px 0px 0px 0px;
	background-color: #FFDDD3;
	width: 25%;
}

.whyspace-table table th:last-child {
	border-radius: 0px 20px 0px 0px;
	background-color: #F55B61;
}

.whyspace-table table tr td {
	padding: 10px 30px;
	height: 120px;
	border: #F55B61 1px solid;
	border-top: none;
	border-left: none;
}

.whyspace-table table tr:last-child td:first-child {
	border-radius: 0 0 20px 0
}

.whyspace-table table tr:last-child td:last-child {
	border-radius: 0 0 0px 20px
}

/**whyspace End**/

/*Why Choose Start*/
.whychoose-scn {
	width: 100%;
	padding: 70px 0;
}

.whychoose-scn .heading-h2 {
	margin-bottom: 20px;
}

.whychoose-scn .whychoose-desc {
	max-width: 1250px;
	margin: auto;
	text-align: center;
	font-size: 20px;
}

.whychoose-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	max-width: 1290px;
	margin: 60px auto 0 auto;
}

.whychoose-inner .whychoose-img {
	max-width: 605px;
	margin-top: 60px;
}

.whychoose-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	max-width: 660px;
	width: 100%;
}

.whychoose-item {
	border: #E6E6E6 2px solid;
	border-radius: 10px;
	max-width: 288px;
	min-height: 288px;
	display: flex;
	flex-flow: row wrap;
	text-align: center;
	padding: 10px;
	margin: 20px;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.whychoose-name {
	width: 100%;
	display: block;
	font-size: 24px;
	color: #4F4F4F;
	line-height: normal;
	font-weight: 600;
	max-width: 180px;
}

.whychoose-item-inner .whychoose-img {
	display: block;
	max-width: 80px;
	margin: 0 auto 25px auto;
}

/**Review Section**/
.brands-scn {
	width: 100%;
	padding: 70px 0;
}

.brands-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.brands-list .brands-item {
	padding: 10px;
	width: 20%;
	min-height: 120px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

/**Customer Css Start**/
.customer-scn {
	padding-top: 70px;
	padding-bottom: 70px;
}

.customer-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.customer-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	width: calc(100% + 30px);
	margin-left: -15px;
}

.customer-item {
	width: calc(33.33% - 30px);
	background: #FFFFFF;
	box-shadow: 0px 4px 8px 3px #0000001A;
	border-radius: 10px;
	padding: 20px;
	margin: 0px 15px 15px 15px;
	text-align: center;
}

.customer-img {
	overflow: hidden;
	border-radius: 10px;
}

.customer-item img {
	width: 100%;
	max-height: 210px;
    object-fit: cover;
}

.customer-item-inner {
	color: #000;
	font-size: 20px;
	background-color: #fff;
}

.customer-item:hover .customer-item-inner {
	color: #EC1C24;
}

.customer-item-inner p {
	margin-top: 18px;
	margin-bottom: 0;
}

/**Customer Css End**/

/*Blog Start*/
.blog-scn {
	width: 100%;
	padding: 70px 0;
}

.blog-list {
	display: flex;
	flex-flow: row wrap;
	/* align-items: center; */
	width: calc(100% + 30px);
	margin-left: -15px;
}

.blog-list .blog-item {
	width: calc(33.33% - 30px);
	margin: 15px;
}

.blog-list .blog-cont {
	padding: 10px 0;
}

.blog-list .blog-cont .blog-tittle {
	font-size: 24px;
	font-weight: 600;
	color: #231F20;
	margin: 12px 0px 8px 0px;
	display: inline-block;
	width: 100%;
}

.blog-list .blog-cont p {
	font-size: 20px;
	margin: 0px;
	color: #231F20;
}

.blog-img {
	border-radius: 10px;
	overflow: hidden;
}

/*Blog End*/

/**How We Work End**/
.how-we-work-scn {
	width: 100%;
	padding: 60px 0px;
	background: #F6F6F6;
	margin-top: 60px;
}

.how-we-work-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
	align-items: center;
	margin: auto;
	text-align: center;
}

.how-we-work-inner p {
	/* width: 100%; */
	max-width: 1250px;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.how-we-work-inner .heading-h2 {
	margin-bottom: 20px;
}

.how-we-work-list {
	display: flex;
	flex-flow: row wrap;
	padding-top: 20px;
	margin-left: -10px;
}

.how-we-work-item {
	width: 20%;
	padding: 0px 20px;
	position: relative;
}

.how-we-work-item:nth-child(2n+2) {
	margin-top: 187px;
}

.how-we-work-cont {
	max-width: 288px;
	min-height: 240px;
}

.how-we-work-cont .how-we-work-title {
	font-size: 30px;
	font-weight: 600;
	line-height: 35px;
}

.how-we-work-img {
	margin-bottom: 20px;
}

.how-we-work-cont p {
	color: #4F4F4F;
	margin-top: 8px;
	line-height: 30px;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 0px;
}

/**How We Work End**/

/**Lorem ipsum dolor Start**/

.lorem-dolor-scn {
	width: 100%;
	padding: 40px 0px;
}

.lorem-dolor-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 460px;
	padding: 0px 40px;
	border-radius: 8px;
}

.lorem-dolor-scn.aboutus-page .lorem-dolor-inner {
	min-height: 400px;
	padding: 0px 0px 0px 40px;
}

.lorem-dolor-left {
	width: 60%;
}

.lorem-dolor-left .heading-h2 h2 {
	text-align: left;
	color: #fff;
	font-weight: 600;
}

.lorem-dolor-left .heading-h2 {
	margin-bottom: 20px;
}

.lorem-dolor-right {
	width: 40%;
}

.lorem-dolor-cont p {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	max-width: 780px;
	line-height: 30px;
}

.lorem-dolor-cont .book-now-btn {
	background-color: #fff;
	color: #231F20;
	font-size: 20px;
	font-weight: 500;
	min-width: 200px;
	padding: 15px 10px 15px 10px;
	border-radius: 8px;
	transition: 0.5s all;
	cursor: pointer;
	font-family: "Roboto", sans-serif;
	margin-top: 25px;
	display: inline-block;
	text-align: center;
}

.lorem-dolor-cont:hover .book-now-btn {
	color: #F55B61;
}

/**Lorem ipsum dolor Start**/

/**Map Start**/

.map-scn {
	width: 100%;
	padding: 100px 0px 100px 0px;
}

.map-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.map-left-part {
	/* width: 800px; */
	width: 50%;
	border: 2px #FFB7B9 solid;
	border-radius: 8px 0px 0px 8px;
}

.map-left-right {
	/* width: 800px; */
	width: 50%;
	background-color: #FFB7B9;
	padding: 60px;
	border-radius: 0px 8px 8px 0px;
}

.form-group .heading-h2 h2 {
	text-align: left;
}

.form-group {
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
}

.form-group-inner label {
	width: 100%;
	color: #231F20;
}

.form-group-inner .form-field {
	color: #231F20;
	outline: none;
	width: 100%;
	border: 1px #D2D2D2 solid;
	border-radius: 8px;
	min-height: 50px;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 300;
	padding: 8px 15px;
}

.submit-btn {
	width: 100%;
	outline: none;
	background-color: #EC1C24 !important;
	color: #fff;
	font-size: 20px;
	text-align: center;
	padding: 10px;
	border: none;
	margin-top: 30px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.5s all;
}

.form-group-inner {
	position: relative;
}

/**Map End**/

/**Warranty Start**/
.warranty-scn {
	width: 100%;
	/* padding-bottom: 50px; */
}

.warranty-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.warranty-item {
	width: 33.33%;
	padding: 0px 15px;
}

.warranty-cont-logo {
	display: flex;
}

.warranty-desc {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	width: 316px;
	margin-left: 30px;
}

.warranty-logo {
	max-width: 120px;
	min-height: 164px;
}

/**Warranty End**/

/**Lorem ipsum dolor End**/

/**Footer Start**/
.ftr-scn {
	width: 100%;
	padding: 50px 0px 0px 0px;
	border-top: 2px  #E6E6E6 solid;
	border-bottom: 2px  #E6E6E6 solid;
}

.ftr-list {
	display: flex;
	flex-flow: row wrap;
	padding-bottom: 50px;
}

.ftr-item {
	width: 25%;
}

.ftr-item .ftr-logo {
	width: 98px;
	height: 70px;
}

.social-media-group {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.social-media-group a {
	background-repeat: no-repeat;
	background-size: cover;
	width: 42px;
	height: 42px;
	display: inline-block;
	margin: 50px 10px 0 0;
	transition: 0.5s all;
}

.social-media-group a:hover {
	opacity: 0.8;
}

.social-media-group a:last-child {
	margin-right: 0px;
}

.social-media-group .facebook {
	background-image: url('../images/facebook.svg');
}

.social-media-group .instagram {
	background-image: url('../images/instagram.svg');
}

.social-media-group .youtube {
	background-image: url('../images/youtube.svg');
}

.ftr-item .ftr-title {
	font-size: 24px;
	font-weight: 600;
	color: #000;
	padding-bottom: 20px;
}

.ftr-menu li a {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 17px;
	transition: 0.5s all;
}

.ftr-menu li a {
	color: #4F4F4F;
}

.ftr-menu a:hover {
	color: #EC1C24;
}

.ftr-item .ftr-address {
	max-width: 200px;
	font-size: 20px;
	font-weight: 400;
	color: #4F4F4F;
}

.ftr-contact {
	font-size: 20px;
	font-weight: 400;
	color: #4F4F4F;
	max-width: 163px;
}

.ftr-contact a {
	width: 100%;
	color: #4F4F4F;
	transition: 0.5s all;
}

.ftr-contact a:hover {
	color: #EC1C24;
}

.copy-right {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	font-size: 20px;
	border-top: 2px #D9D9D9 solid;
	padding: 9px 0px;
}

.copy-right a {
	color: #4F4F4F;
	transition: 0.5s all;
	padding-left: 5px;
}

.copy-right a:hover {
	color: #EC1C24;
}

/**Footer End**/

/**About Page Start**/

/**About css Start**/

.about-us-scn {
	padding: 140px 0px;
	width: 100%;
}

.inner-bnr-scn {
	min-height: 00px;
	display: inline-block;
}

.about-us-scn .heading-h2 {
	margin-bottom: 20px;
}

.about-us-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: auto;
	text-align: center;
	font-size: 20px;
	color: #4F4F4F;
	max-width: 1270px;
}

.about-us-inner p {
	margin-bottom: 30px;
}

.about-us-inner p:last-child {
	margin-bottom: 0px;
}

.our-design {
	width: 100%;
	padding: 70px 0px 70px 0px;
}

.our-design-list-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.our-design-list-left {
	width: 288px;
	color: #4F4F4F;
	font-size: 20px;
	font-weight: 600;
}

.our-design-tab-item .design-tab {
	width: 288px;
	border: 1px #E6E6E6 solid;
	min-height: 70px;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	margin: auto;
	justify-content: center;
	cursor: pointer;
}

.our-design-tab-item .design-tab:hover {
	background-color: #FFECED;
	color: #EC1C24;
	border: none;
}

/**About css Start**/

/**Founder css Start**/

.founder-scn {
	padding: 10px 0px 140px 0px;
}

.founder-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	max-width: 1272px;
	margin: auto;
	position: relative;
}

.founder-inner .f-topleft-icon {
	background-image: url(../images/founder-icon-left.png);
	width: 49px;
	height: 71px;
	display: inline-block;
	background-size: cover;
	position: absolute;
	left: -100px;
}

.founder-inner .f-bottomright-icon {
	background-image: url(../images/founder-icon-right.png);
	width: 49px;
	height: 71px;
	display: inline-block;
	background-size: cover;
	position: absolute;
	right: -100px;
	bottom: 0px;
}

.founder-inner .heading-h2 {
	margin-bottom: 5px;
}

.founder-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.founder-left {
	width: 440px;
}

.founder-right {
	width: 780px;
	padding-left: 50px;
}

.founder-right .founder-name {
	font-size: 30px;
	font-weight: 600;
	color: #EC1C24;
	margin-bottom: 10px;
}

.founder-right .founder-designation {
	font-size: 20px;
	font-weight: 600;
	color: #4F4F4F;
	border-bottom: 2px #E6E6E6 solid;
	padding-bottom: 4px;
	margin-bottom: 36px;
	display: inline-block;
}

.founder-right p {
	font-size: 20px;
	color: #4F4F4F;
	line-height: 1.5;
}

/**Founder css End**/

/**Our Journey css Start**/
.our-journey-scn {
	padding-bottom: 140px;
}

.our-journey-list .owl-stage-outer:before {
	content: '';
	width: 100%;
	height: 5px;
	background-color: #E6E6E6;
	position: absolute;
	top: 70px;
}

.our-journey-list .our-journey-item {
	text-align: center;
	padding-top: 90px;
}

.ourjNo {
	text-align: center;
	display: block;
	position: relative;
	color: #4F4F4F;
	font-size: 30px;
	font-weight: 600;
}

.ourjNo:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #EC1C24;
	border-radius: 100%;
	left: 0px;
	bottom: -38px;
	margin: auto;
	right: 0px;
}

.our-journey-list {
	padding-top: 20px;
}

.ourjNo:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #EC1C24;
	border-radius: 100%;
	left: 0px;
	bottom: -38px;
	margin: auto;
	right: 0px;
}

.our-journey-list {
	padding-top: 20px;
}

.ourJourneySlider .owl-nav button {
	position: absolute;
	top: 67px;
	width: 50px;
	height: 50px;
	background-color: #FFB7B9 !important;
	border-radius: 100%;
}

.ourJourneySlider .owl-nav button.disabled {
	background-color: #fbe0e0 !important;
}

.ourJourneySlider .owl-nav button span {
	font-size: 36px;
	line-height: 1;
	color: #4F4F4F;
}

.ourJourneySlider .owl-nav button.owl-prev {
	left: 0px;
}

.ourJourneySlider .owl-nav button.owl-next {
	right: 0px;
}

.our-journey-cont {
	position: relative;
	background: #fff;
	border: 2px solid #FFB7B9;
	border: 2px #FFB7B9 solid;
	padding: 50px 10px;
	border-radius: 8px;
}

.our-journey-cont:after, .our-journey-cont:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.our-journey-cont:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 16px;
	margin-left: -16px;
}

.our-journey-cont:before {
	border-color: rgba(255, 183, 185, 0);
	border-bottom-color: #FFB7B9;
	border-width: 19px;
	margin-left: -19px;
}

.our-journey-cont p {
	max-width: 440px;
	text-align: center;
	margin: auto;
	font-size: 20px;
	color: #4F4F4F;
	padding: 10px 0px;
}

.our-journey-cont .our-journey-title {
	font-size: 20px;
	font-weight: 600;
	color: #EC1C24;
	padding-bottom: 5px;
	display: inline-block;
}

/**Our Journey css End**/

/**Our Numbers css Start**/

.our-numbers-scn {
	min-height: 464px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-numbers-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	text-align: center;
	margin: auto;
}

.our-numbers-inner .heading-h2 h2 {
	color: #fff;
	padding-top: 80px;
}

.our-numbers-inner .heading-h2 {
	margin-bottom: 0px;
}

.our-numbers-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	margin: auto;
	text-align: center;
	max-width: 800px;
	padding: 60px 0px;
}

.our-numbers-item {
	width: 33.33%;
}

.our-numbers-item .our-numbers-count {
	width: 100%;
	font-size: 40px;
	text-align: center;
	font-weight: 400;
	color: #EC1C24;
	margin: 25px 0px 10px 0px;
	display: inline-block;
}

/**Our Numbers css End**/

/**Our Team css Start**/


.our-team-scn {
	width: 100%;
	padding: 140px 0pc;
}

.our-team-scn .heading-h2 {
	margin-bottom: 20px;
}

.our-team-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	text-align: center;
	max-width: 1272px;
	margin: auto;
	font-size: 20px;
}

.our-team-list {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	padding-top: 35px;
	margin-left: -35px;
	width: calc(100% + 70px)
}

.our-team-item {
	width: calc(25% - 70px);
	text-align: center;
	margin: 0px 35px;
}

.our-team-item .our-team-name {
	font-size: 24px;
	font-weight: 600;
	color: #4F4F4F;
	margin-top: 30px;
}

.our-team-item .our-team-name {
	font-size: 24px;
	font-weight: 600;
	color: #4F4F4F;
	margin-top: 30px;
}

.our-team-img {
	background: linear-gradient(90deg, #FF747A 0%, #FFB373 100%);
	border-radius: 100%;
	padding: 10px 5px 1px;
}

.our-team-img img {
	border-radius: 100%;
}

.lorem-dolor-scn .aboutus-page {
	min-height: 400px;
}

.map-left-part.about-us-page {
	border: none;
	text-align: center;
	width: 100%;
}

/**Our Team css End**/

/**Our News css Start**/
.news-scn {
	width: 100%;
}

.news-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	padding-top: 10px;
	width: calc(100% + 34px);
	margin-left: -17px;
}

.news-inner .heading-h2 {
	margin-bottom: 20px;
}

.news-cont {
	position: absolute;
	top: 0px;
	right: 20px;
	background: linear-gradient(180deg, #F55B61 0%, #FF7F5A 100%);
	min-height: 90px;
	color: #fff;
	padding: 0px 5px;
	width: 70px;
	text-align: center;
}

.news-item {
	width: calc(33.33% - 34px);
	margin: 0px 17px;
	position: relative;
}

.news-item .news-count {
	font-size: 30px;
	width: 100%;
	display: block;
	font-weight: 600;
}

.news-img img {
	width: 100%;
}

.news-cont .news-month {
	width: 100%;
	display: block;
	font-size: 20px;
}

.news-item p {
	margin-top: 20px;
	font-size: 20px;
}

/**Our News css End**/
.new-btn {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	text-align: center;
	margin: auto;
}

.news-item p {
	margin-bottom: 0px;
}

.news-list .news-btn {
	font-size: 20px;
	font-weight: 500;
	background: rgba(236, 28, 36, 1);
	color: #fff;
	padding: 15px 40px;
	border-radius: 8px;
	margin-top: 30px;
	display: inline-block;
	transition: 0.5s all;
}

.news-list .news-btn:hover {
	opacity: 0.8;
}

.map-left-part.about-us-page .map-img {
	max-width: 615px;
	text-align: center;
	margin: auto;
}

/**About Page End**/

/**Residential Page Start**/

/**Images Contant Page Start**/
.img-cont-scn {
	padding: 40px 0px 0px 0px;
}

.breadcrumb-list {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.breadcrumb-list li a {
	font-size: 20px;
	color: rgba(79, 79, 79, 1);
}

.breadcrumb-list li {
	color: #EC1C24;
	font-size: 20px;
	padding-right: 10px;
}

.breadcrumb-list li:before {
	content: "/";
	margin-right: 6px;
	color: rgba(79, 79, 79, 1);
}

.breadcrumb-list li:first-child:before {
	content: normal;
}

.img-cont-inner {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	padding: 40px 0px 20px 0px;
}

.img-cont-left {
	width: 50%;
}

.img-cont-right {
	width: 569px;
}

.img-cont-left .heading-h2 h2 {
	text-align: left;
}

.img-cont-left .heading-h2 {
	margin-bottom: 20px;
}

.img-cont-left p {
	font-size: 20px;
	color: #4F4F4F;
	padding-bottom: 15px;
}

.submit-btn:hover {
	opacity: 0.8;
}

.residential-list-inner {
	display: flex;
	flex-flow: row wrap;
	/* align-items: center; */
	width: calc(100% + 35px);
	margin-left: -17px;
}

.residential-item {
	width: calc(33% - 35px);
	margin: 17px 17px;
	transition: 0.5s all;
	display: block;
}

.residential-cont {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.1);
	border-radius: 0px 0px 10px 10px;
	transition: 0.5s all;
	cursor: pointer;
}

.residential-cont .residential-room-name {
	font-size: 24px;
	font-weight: 600;
	color: #231F20;
}

.residential-cont .residential-design {
	font-size: 20px;
	color: #231F20;
}

.residential-item .residential-img {
	border-radius: 8px;
}

.map-scn.residential-page {
	max-width: 1580px;
	width: 100%;
	margin: auto;
	padding: 10px;
	border-radius: 10px;
	background: linear-gradient(90deg, #FF747A 0%, #FFB373 100%);
}

.map-scn.residential-page  .residential-inner {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: auto;
	border-radius: 10px;
	min-height: 600px;
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-size: cover;
}

.map-left-right .form-group {
	margin-bottom: 0px;
}

.residential-list-inner {
	margin-bottom: 140px;
}

.residential-img img {
	width: 100%;
	border-radius: 10px;
	max-height: 300px;
}

.warranty-scn.residential-page {
	padding-top: 140px;
}

.map-left-right.residential-page {
	background-color: inherit;
	padding: 50px 0px 30px 30px;
	border: none;
	width: 760px;
}

.map-left-part.residential-page {
	width: 600px;
	border: none;
}

.form-group.residential-page {
	background-color: inherit;
	border: none;
	padding: 0px;
	max-width: 600px;
}

/**Images Contant Page End**/

/**Residential Page End**/

/**TV Page Start**/

.residential-list.tv-unit-list .residential-room-cont {
	font-size: 24px;
	color: #231F20;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
	width: 100%;
}

.exploremore-btn.getquote-btn {
	font-size: 20px;
	font-weight: 500;
	color: #EC1C24;
	min-width: 180px;
	min-height: 50px;
	padding: 2px 15px;
	border: 2px #EC1C24 solid;
	border-radius: 8px;
	transition: 0.6s all;
	font-family: 'Roboto';
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.exploremore-btn.getquote-btn:hover {
	background-color: #EC1C24;
	color: #fff;
}

/**Typeo CSS Start (Note if is not need so remove)**/
.cw-fix {
	margin: auto;
	width: 100%;
	padding: 140px 0px 140px 0px;
}

/**Typeo CSS End (Note if is not need so remove)**/
.cw-section {
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
}

.cw-section__title {
	font-size: 48px;
	margin-bottom: 0px;
	color: #231F20;
	font-weight: 600;
}

.cw-section p {
	max-width: 780px;
	font-size: 20px;
	color: #4F4F4F;
}

.cw-section__title span {
	color: #6A49F2;
}

.cw-accordion {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 1rem;
}

.cw-accordion__item {
	padding: 1rem;
	background: #fff;
	position: relative;
	border-radius: 8px;
	width: 100%;
	cursor: pointer;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
	background: #FFECED;
	border: #878787 1px solid;
}

.cw-accordion__item .cw-label {
	padding-right: 20px;
	font-size: 20px;
	position: relative;
	width: 100%;
	display: inline-block;
	color: #231F20;
	font-weight: 600;
}

.cw-accordion__item .cw-label:after {
	position: absolute;
	right: 0;
	content: "+";
	font-size: 45px;
	top: -20px;
	color: #EC1C24;
	width: 30px;
	height: 30px;
	font-weight: 300;
}

.cw-accordion__item .cw-label.cw-open:after {
	content: "−";
	color: #EC1C24;
	font-weight: 300;
	top: -18px;
}

.cw-accordion__item .cw-acordion-cont {
	height: 0px;
	overflow: hidden;
	transition: 0.4s;
	-webkit-transition: 0.4s;
}

.cw-accordion__item.cw-open .cw-acordion-cont {
	height: auto;
	padding-top: 25px;
	padding-bottom: 15px;
}

@media(max-width:992px) {
	.cw-fix {
		padding: 0px 15px;
	}

	.cw-section {
		row-gap: 0rem;
	}

	.cw-section__title {
		font-size: 1.5rem;
	}

	.cw-accordion__item .cw-label {
		font-size: 16px;
	}

	.cw-accordion__item .cw-label:after {
		top: -9px;
	}

	.cw-accordion__item {
		padding: 0.8rem;
	}

	.cw-accordion__item.cw-open + .cw-acordion-cont {
		padding-top: 5px;
		padding-bottom: 5px;
		font-size: 14px;
	}

}

/**TV Page End**/

/**Calculate Page Start**/
.package-title [type="radio"] {
	display: none;
}

.package-title label {
	display: block;
	padding: 0px 30px 20px 40px;
	color: #231F20;
	cursor: pointer;
	font-size: 30px;
	font-weight: 600;
	white-space: nowrap;
	position: relative;
	transition: 0.4s ease-in-out 0s;
	margin-bottom: 0px;
}

.package-title label:after, .package-title label:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.package-title label:after {
	height: 24px;
	width: 24px;
	border: 2px solid #EC1C24;
	left: 0px;
	top: 11px;
}

.package-title label:before {
	background: rgba(236, 28, 36, 1);
	height: 14px;
	width: 14px;
	left: 5px;
	top: 16px;
	transform: scale(5);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out 0s;
}

.package-title [type="radio"]:checked ~ label::before {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.calculator-inner {
	max-width: 720px;
	margin: auto;
	width: 100%;
	margin-top: 30px;
}

.package-list, .sizehall-info {
	box-shadow: 0px 0px 10px 0px #00000033;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
}

.sizehall-info-inner, .package-item {
	background-color: #F6F6F6;
	padding: 30px;
	border-radius: 10px;
}

.package-item:not(:last-child) {
	margin-bottom: 20px;
}

.package-desc {
	font-size: 20px;
	color: #4F4F4F;
}

.package-item:has(input:checked) {
	background-color: #FFECED;
}

.package-info-list {
	padding-top: 30px;
}

.package-info-list li {
	font-size: 20px;
	color: #231F20;
	padding-left: 32px;
	position: relative;
}

.package-info-list li:not(:last-child) {
	margin-bottom: 10px;
}

.package-info-list li:before {
	content: '';
	background-color: #EC1C24;
	border-radius: 100%;
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 5px;
}

.package-info-list li:after {
	content: '';
	position: absolute;
	width: 6px;
	height: 12px;
	left: 7px;
	top: 8px;
	border-right: #fff 2px solid;
	border-bottom: #fff 2px solid;
	z-index: 9;
	transform: rotate(40deg);
}

.arrows-pagination {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	color: #231F20;
	font-size: 30px;
	font-weight: 600;
}

.arrows-pagination .c-prev-arr, .arrows-pagination .c-next-arr {
	width: 50px;
	height: 50px;
	display: inline-block;
	background-color: #FFB7B9;
	border-radius: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.arrows-pagination .c-prev-arr {
	background-image: url('../images/arrow-left.svg');
}

.arrows-pagination .c-next-arr {
	background-image: url('../images/right-arrow.svg');
}

.sizehall-info .form-group-inner {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	width: 100%;
}

.sizehall-info .form-group-inner label {
	width: 155px;
	padding-right: 15px;
	font-size: 20px;
	margin-bottom: 0.8rem;
}

.sizehall-info .form-group-inner .form-field {
	width: calc(100% - 155px);
}

.sizehall-info .form-group {
	background-color: transparent;
	padding: 0;
	border-radius: 0px;
	margin-bottom: 0px;
}

.sizehall-info .form-group-inner .form-field.form-field-file {
	background-color: #fff;
	text-align: center;
	position: relative;
	min-height: 100px;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 0px;
}

.sizehall-info .form-group-inner .customfile label {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
	left: 0px;
	top: 0px;
	padding-right: 0px;
	background-image: url('../images/upload-icon.svg');
	background-repeat: no-repeat;
	background-position: center center;
}

.customfile ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
}

.customfile ul li {
	width: 80px;
	height: 60px;
	margin: 0px 5px;
	position: relative;
}

.customfile ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.customfile ul li .remove-list {
	position: absolute;
	right: 3px;
	top: 3px;
	background-color: #000;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.8;
	cursor: pointer;
}

.c-file-opt:has(li) label {
	opacity: 0;
}

.sizehall-info .form-group-inner .form-field.form-field-file input {
	opacity: 0;
	position: absolute;
	pointer-events: none;
}

.sizehall-info .form-group-inner.form-sendme label {
	width: 100%;
	position: relative;
	cursor: pointer;
	padding-left: 36px;
	margin: 10px 0px 20px 0px;
}

.sizehall-info .form-group-inner.form-sendme input[type="checkbox"] {
	display: none;
}

.sizehall-info .form-group-inner.form-sendme label:before {
	content: '';
	position: absolute;
	left: 0px;
	top: 1px;
	width: 26px;
	height: 26px;
	border: #000 1px solid;
}

.sizehall-info .form-group-inner.form-sendme label:after {
	content: '';
	position: absolute;
	left: 9px;
	top: 4px;
	width: 8px;
	height: 16px;
	border-right: #000 2px solid;
	border-bottom: #000 2px solid;
	transition: 0.5s all;
	opacity: 0;
	transform: rotate(45deg);
}

.sizehall-info .form-group-inner.form-sendme input:checked + label:after {
	opacity: 1;
}

.youagree-form {
	font-size: 20px;
	color: #4F4F4F;
	margin-top: 50px;
}

.youagree-form .youagree-text {
	margin: 5px 0;
}

.youagree-form a {
	color: #EC1C24;
}

.youagree-form a:hover {
	text-decoration: underline;
}

.calculator-group {
	display: none;
}

.calculator-group h2 {
	text-transform: capitalize;
}

.slt-package-group .c-prev-arr, .provide-dtl-group .c-next-arr {
	opacity: 0;
	pointer-events: none;
}

.page-no {
	width: calc(100% - 100px);
	text-align: center;
	margin: auto;
}

.calculator-group.current {
	display: block;
}

/**Calculate Page End**/

/**Contact Page Start**/
.contact-page .heading-h2 h2 {
	text-align: left;
}

.contact-page .heading-h2 {
	margin-bottom: 30px;
}

.map-left-part.contact-page {
	border: none;
}

.contact-page .map-left-right {
	max-width: 780px;
	padding: 40px;
	border-radius: 8px;
}

.map-left-part.contact-page {
	max-width: 570px;
}

/**Contact Page End**/

/**Minimalist List Page Start**/

.img-cont-inner.minimalist-img {
	padding-bottom: 10px;
}

.minimalist-img-list {
	display: flex;
	flex-flow: row wrap;
	padding-bottom: 40px;
}

.minimalist-img {
	max-width: 88%;
	width: 100%;
}

.minimalist-info {
	max-width: 12%;
	padding-left: 40px;
}

.minimalist-info-item {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.minimalist-info-img {
	background: rgba(255, 236, 237, 1);
	width: 120px;
	height: 120px;
	border-radius: 10px;
	margin: auto;
}

.minimalist-info-title {
	font-size: 20px;
	color: #4F4F4F;
	margin-top: 10px;
	display: inline-block;
}

.pro-info-title h4 {
	font-size: 24px;
	font-weight: 600;
	border-bottom: 2px #E6E6E6 solid;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.pro-info-item {
	width: 100%;
	padding-bottom: 15px;
}

.pro-info-item-inner strong {
	font-size: 24px;
	font-weight: 600;
	color: #231F20;
}

.pro-info-item-inner span {
	font-size: 20px;
	color: #231F20;
}

.pro-info-item-desc {
	font-size: 20px;
	color: #231F20;
	max-width: 1475px;
	padding: 15px 0px;
}

.residential-list.tv-unit-list .heading-h2 h2 {
	text-align: left;
}

.residential-list.tv-unit-list .heading-h2 {
	margin-bottom: 30px;
}

.product-info-list .pro-info-btn {
	margin: 15px 0px 120px 0px;
	display: inline-block;
}

.tv-unit-list .residential-list-inner {
	margin-bottom: 0;
}

/**Minimalist List Page End**/

/**media Css Page Start**/
@media(max-width:1540px) {

	.our-design-item{
		margin-left: 0px;
	}

	.map-scn.residential-page {
		max-width: 1250px;
	}

	.container {
		max-width: 1280px;
	}

	header .navbar-expand-lg .navbar-nav .nav-link {
		font-size: 18px;
	}

	.drop-main .nav-link::after {
		font-size: 14px;
	}

	.about-box-div {
		padding: 30px 20px;
	}

	.about-box-div p {
		font-size: 18px;
	}

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

	.categories-scn {
		padding: 40px 0px;
	}

	.cate-name {
		font-size: 18px;
	}

	.our-design-list-left {
		font-size: 18px;
	}

	.our-design-tab-item .design-tab {
		min-height: 68px;
	}

	.our-design-img-item .ourdesign-name {
		font-size: 18px;
		line-height: 1.5;
	}

	.exploremore-title {
		font-size: 26px;
	}

	.whychoose-inner .whychoose-img {
		max-width: 44%;
		margin-top: 60px;
	}

	.whychoose-list {
		max-width: 55%
	}

	.whychoose-inner {
		margin-top: 40px;
	}

	.whychoose-scn {
		padding: 25px 0px;
	}

	.how-we-work-scn {
		margin-top: 30px;
	}

	.we-design-scn {
		padding-bottom: 40px;
		margin-top: 80px;
	}

	.about-box-div h4 {
		font-size: 25px;
	}

	.how-we-work-item:nth-child(2n+2) {
		margin-top: 165px;
	}

	.our-design-list-left {
		width: 20%;
	}

	.our-design-list-right {
		width: 80%;
	}

	.lorem-dolor-left {
		width: 50%;
	}

	.map-left-part {
		width: 45%;
	}

	.map-left-right {
		width: 55%;
	}

	.lorem-dolor-right {
		width: 45%;
	}

	.how-we-work-cont p {
		font-size: 16px;
		line-height: 1.4;
	}

	.how-we-work-item {
		padding: 0px 14px;
	}

	/**About page Start**/
	.about-us-scn {
		padding: 80px 0px 80px 0px;
	}

	.map-scn.residential-page {
		max-width: 92%;
		width: 100%;
	}

	/**About page Start**/
	.whyspace-table {
		max-width: 1160px;
	}

	.whyspace-table table th {
		font-size: 20px;
	}

	.whyspace-table table {
		font-size: 18px;
	}

	.whyspace-table table tr td {
		height: 85px;
	}

	.customer-scn {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.heading-h2 {
		margin-bottom: 25px;
	}

	.ftr-menu li a {
		font-size: 18px;
	}

	.ftr-item .ftr-title {
		font-size: 22px;
		padding-bottom: 20px;
	}

	.ftr-item .ftr-title {
		font-size: 22px;
	}

	.ftr-item .ftr-address, .ftr-contact{
		font-size: 18px;
	}

	.copy-right {
		font-size: 18px;
	}

	.inner-bnr-scn {
		min-height: inherit;
		/* margin-bottom: 60px; */
	}

	.img-cont-right {
		width: 42%;
	}

	.residential-cont .residential-room-name {
		font-size: 20px;
	}

	.residential-cont .residential-design {
		font-size: 18px;
	}

	.residential-list-inner {
		margin-bottom: 80px;
	}

	.map-left-right.residential-page {
		width: 550px;
	}

	.warranty-scn.residential-page {
		padding-top: 90px;
	}

	.residential-list.tv-unit-list .residential-room-cont {
		font-size: 20px;
	}

	.exploremore-btn.getquote-btn {
		min-width: 160px;
	}

	.residential-list.tv-unit-list .residential-room-cont {
		font-size: 20px;
	}

}

@media(max-width:1440px) {
	.categories-list .cate-item {
		min-height: 175px;
	}

	.our-design {
		padding: 50px 0px;
	}

	.our-design-list-right {
		width: 80%;
	}

	.our-design-list-left {
		width: 20%;
		margin-top: 10px;
	}

	.our-design-list-inner {
	}

	.our-design-img-item {
		width: calc(33.33% - 34px);
		margin: 10px 17px;
	}

	.our-design-item {
		width: calc(100% + 34px);
		margin-left: -17px;
	}

	.our-design-tab-item .design-tab {
		width: 275px;
	}

	.our-design-img-item .ourdesign-name {
		font-size: 19px;
	}

	.whychoose-scn {
		padding: 60px 0px;
	}

	.how-we-work-cont .how-we-work-title {
		font-size: 24px;
	}

	.how-we-work-cont p {
		font-size: 19px;
	}

	.whyspace-living {
		padding: 60px 0px 20px 0px;
	}

	.brands-scn {
		padding: 50px 0px;
	}

	.blog-scn {
		padding: 50px 0px 70px 0px;
	}

	.lorem-dolor-left {
		width: 55%;
	}

	.lorem-dolor-right {
		width: 42%;
	}

	.lorem-dolor-inner {
		min-height: 400px;
	}

	.map-left-part {
		width: 50%;
	}

	.map-left-right {
		width: 50%;
	}

	.founder-inner .f-topleft-icon {
		left: -45px;
	}

	.founder-inner .f-bottomright-icon {
		right: -45px;
	}

	.founder-scn {
		padding-bottom: 60px;
	}

	.our-journey-cont p {
		font-size: 18px;
	}

	.our-journey-scn {
		padding-bottom: 90px;
	}

	.our-team-scn {
		padding: 80px 0px;
	}

	.our-team-item .our-team-name {
		font-size: 22px;
	}

	.news-item p {
		font-size: 18px;
	}

	.news-list .news-btn {
		font-size: 20px;
		padding: 12px 34px;
		margin-top: 20px;
	}

	.map-scn {
		/* padding: 10px 0px 60px 0px; */
	}

	.residential-list.tv-unit-list .residential-room-cont {
		font-size: 18px;
	}

	.exploremore-btn.getquote-btn {
		min-height: 42px;
		padding: 8px 15px;
	}

	.cw-section__title {
		font-size: 38px;
	}

	.residential-list-inner {
		margin-bottom: 50px;
	}

	.cw-fix {
		padding: 60px 0px 60px 0px;
	}

	.minimalist-info {
		padding-left: 20px;
	}

	.minimalist-info-title {
		font-size: 16px;
		margin-top: 6px;
	}

	.minimalist-info-item {
		margin-bottom: 10px;
	}

	.minimalist-info-img {
		width: 100px;
		height: 100px;
	}

	.pro-info-title h4 {
		font-size: 20px;
	}

	.pro-info-item-inner strong {
		font-size: 18px;
	}

	.pro-info-item-inner span {
		font-size: 16px;
	}

	.pro-info-item-desc {
		font-size: 18px;
	}

	.product-info-list .pro-info-btn {
		margin-bottom: 80px;
	}

	.residential-list.tv-unit-list .heading-h2 {
		margin-bottom: 10px;
	}

	.map-left-part.contact-page{
		max-width: 460px;
	}

}

@media(max-width:1366px) {
	.categories-scn {
		padding: 50px 0px;
	}

	.residential-img img {max-height: 280px;}

	.our-design-list-left {
		width: 18%;
	}

	.our-design-tab-item .design-tab {
		width: 265px;
	}

	.img-cont-right {
		width: 43%;
	}

	.residential-cont .residential-room-name {
		font-size: 22px;
	}

	.residential-cont .residential-design {
		font-size: 18px;
	}

	.residential-list-inner {
		margin-bottom: 80px;
	}

	.our-design-img-item .ourdesign-name {
		padding: 10px 5px 10px 15px;
	}

	.exploremore-title {
		font-size: 26px;
	}

	.whychoose-inner .whychoose-img {
		margin-top: 45px;
	}

	.our-design-img img {
		min-height: 310px;
	}

	.explore-more {
		min-height: 310px;
	}

	.design-tab {
		min-height: 50px;
	}

	.form-group {
		padding: 30px;
	}

	.our-numbers-scn {
		min-height: 300px;
	}

	.our-team-scn {
		padding: 80px 0px;
	}

	.lorem-dolor-cont .book-now-btn {
		min-width: 180px;
	}

	.lorem-dolor-scn {
		padding: 10px 0px 50px 0px;
	}

	.exploremore-btn.getquote-btn {
		font-size: 18px;
	}

	.residential-list-inner {
		margin-bottom: 50px;
	}

}

@media(max-width:1280px) {
	.brands-list .brands-item {
		min-height: 100px;
	}

	.our-design-list-left {
		width: 242px;
	}

	.our-design-img img {
		min-height: 280px;
	}

	.our-design-list-left {
		width: 20%;
	}

	.our-design-tab-item .design-tab {
		width: 100%;
		min-height: 60px;
	}

	.our-design-img img {
		min-height: 280px;
	}

	.explore-more {
		min-height: 280px;
	}

	.our-design-img-item .ourdesign-name {
		font-size: 18px;
	}

	.whychoose-scn {
		padding: 50px 0px;
	}

	.whychoose-list {
		width: 60%;
	}

	.whychoose-inner .whychoose-img {
		width: 40%;
	}

	.whychoose-item {
		max-width: 41%;
		min-height: 50%;
		margin: 10px;
	}

	.how-we-work-inner p br {
		display: none;
	}

	.how-we-work-item {
		width: 33%;
	}

	.how-we-work-item:nth-child(2n+2) {
		margin-top: 0px;
		padding-bottom: 30px;
	}

	.how-we-work-img {
	}

	.whyspace-living {
		padding: 60px 0px;
	}

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

	.explore-more .exploremore-btn {
		font-size: 18px;
		max-width: 160px;
	}

	.whychoose-scn {
		padding: 50px 0px;
	}

	.whychoose-list {
		width: 60%;
	}

	.whychoose-inner .whychoose-img {
		width: 40%;
	}

	.whychoose-item {
		max-width: 41%;
		min-height: 50%;
		margin: 10px;
	}

	.how-we-work-inner p br {
		display: none;
	}

	.how-we-work-item {
		width: 33%;
	}

	.how-we-work-item:nth-child(2n+2) {
		margin-top: 0px;
		padding-bottom: 30px;
	}

	.whyspace-living {
		padding: 60px 0px;
	}

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

	.explore-more .exploremore-btn {
		font-size: 18px;
		max-width: 160px;
	}

	.whychoose-name {
		font-size: 22px;
	}

	.customer-scn {
		padding-bottom: 50px;
	}

	.blog-list .blog-cont p {
		font-size: 18px;
	}

	.map-left-part {
		width: 45%;
	}

	.map-left-right {
		width: 55%;
		padding: 40px;
	}

	.lorem-dolor-scn {
		padding: 10px 0px 50px 0px;
	}

	.founder-inner .f-topleft-icon {
		display: none;
	}

	.founder-inner .f-bottomright-icon {
		display: none;
	}

	.inner-bnr-scn {
		min-height: 400px;
	}

	.about-us-scn {
		padding-top: 40px;
	}

	.founder-right .founder-name {
		font-size: 28px;
	}

	.our-numbers-item .our-numbers-count {
		font-size: 38px;
		margin: 10px;
	}

	.news-item .news-count {
		font-size: 28px;
	}

	.news-list .news-btn {
		font-size: 18px;
	}

	.our-team-item .our-team-name {
		font-size: 22px;
	}

	.ftr-item {
		min-height: 220px;
	}

	.residential-item {
		width: calc(33% - 30px);
		margin: 15px 15px;
	}

	.residential-list-inner {
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.cw-accordion__item .cw-label {
		font-size: 18px;
	}

	.cw-accordion__item {
		padding: 14px;
	}

	.minimalist-info-img {
		width: 70px;
		height: 70px;
	}

	.breadcrumb-list li, .breadcrumb-list li a {
		font-size: 16px;
	}

}

@media(max-width:1100px) {
	.categories-scn {
		padding: 30px 0px;
	}

	.categories-scn .heading-h2 {
		margin-bottom: 0px;
	}

	.categories-list .cate-item {
		min-height: 150px;
	}

	.cate-name {
		font-size: 18px;
	}

	.our-design {
		padding: 30px 0px;
	}

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

	.categories-list {
		margin-top: 20px;
	}

	.our-design-tab-item .design-tab {
		width: 200px;
		min-height: 50px;
		margin: 0px 0px;
		font-size: 16px;
	}

	.our-design-list-right {
		width: 79%;
		padding-left: 20px;
	}

	.form-group-inner .form-field {
		min-height: 45px;
	}

	.our-design-img-item {
		width: calc(33.33% - 30px);
		margin: 10px 15px;
	}

	.img-cont-left p {
		font-size: 16px;
	}

	.residential-cont {
		padding: 10px;
	}

	.residential-cont .residential-room-name {
		font-size: 18px;
	}

	.residential-cont .residential-design {
		font-size: 16px;
	}

	.residential-item {
		width: calc(33% - 30px);
		margin: 15px;
	}

	.residential-list-inner {
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.img-cont-right {
		width: 40%;
	}

	.residential-item {
		width: calc(50% - 30px);
	}

	.map-left-right.residential-page {
		padding-left: 20px;
	}

	.warranty-scn.residential-page {
		padding-top: 60px;
	}

	.warranty-scn.residential-page {
		padding-top: 100px;
	}

	.our-design-item {
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.our-design-list-left {
		width: 200px;
		margin-top: 9px;
	}

	.our-design-img img {
		min-height: 221px;
	}

	.explore-more {
		min-height: 220px;
		padding: 20px 21px;
	}

	.exploremore-title {
		font-size: 20px;
	}

	.explore-more .exploremore-btn {
		max-width: 135px;
		font-size: 16px;
		margin-top: 10px;
		padding: 10px;
		height: 40px;
	}

	.explore-more .exploremore-btn.getquote-btn {
		min-height: 40px;
		padding: 7px 10px 5px 10px;
	}

	.our-design-img-item .ourdesign-name {
		font-size: 17px;
	}

	.whychoose-scn {
		padding: 30px 0px;
	}

	.whychoose-item {
		max-width: 35%;
		min-height: 35%;
	}

	.whychoose-list {
		width: 60%;
		justify-content: flex-end;
	}

	.whychoose-name {
		font-size: 18px;
	}

	.whychoose-item-inner .whychoose-img {
		margin: 10px auto;
	}

	.whyspace-table table th {
		font-size: 20px;
	}

	.whyspace-table table tr td {
		height: 100px;
		font-size: 18px;
		padding: 8px 20px;
	}

	.brands-scn {
		padding: 30px 0px;
	}

	.customer-scn {
		padding: 40px 0px;
	}

	.customer-item {
		padding: 10px;
	}

	.blog-list .blog-cont .blog-tittle {
		font-size: 20px;
		margin: 8px 0px 5px 0px;
	}

	.blog-list .blog-cont {
		padding: 0px;
	}

	.lorem-dolor-cont .book-now-btn {
		min-width: 180px;
	}

	.lorem-dolor-scn {
		padding: 30px 0px;
	}

	.map-scn {
		padding: 70px 0px;
	}

	.map-left-part {
		width: 100%;
	}

	.map-img img {
		width: 100%;
	}

	.map-left-right {
		width: 100%;
	}

	.warranty-desc {
		margin-left: 15px;
	}

	.ftr-item .ftr-title {
		font-size: 22px;
		padding-bottom: 10px;
	}

	.inner-bnr-scn {
		min-height: 315px;
	}

	.founder-left {
		width: 40%;
	}

	.founder-right {
		width: 60%;
		padding-left: 40px;
	}

	.founder-right .founder-name {
		font-size: 25px;
	}

	.founder-right .founder-designation {
		font-size: 18px;
	}

	.our-team-item {
		width: calc(25% - 40px);
		margin: 0px 20px;
		min-height: 250px;
	}

	.our-team-list {
		width: calc(100% + 40px);
		margin-left: -20px;
		padding: 0px;
	}

	.our-team-inner {
		font-size: 18px;
	}

	.our-team-img img {
		width: 100%;
	}

	.our-team-item .our-team-name {
		font-size: 20px;
		margin-top: 15px;
	}

	.news-cont {
		min-height: 70px;
		width: 50px;
	}

	.news-item .news-count {
		font-size: 25px;
	}

	.news-cont .news-month {
		font-size: 16px;
	}

	.news-item p {
		font-size: 16px;
		margin-top: 10px;
	}

	.news-list .news-btn {
		padding: 10px 30px;
	}

	.lorem-dolor-scn.aboutus-page .lorem-dolor-inner {
		min-height: 350px;
		margin-bottom: 30px;
	}

	.ftr-item .ftr-title {
		font-size: 22px;
	}

	.our-numbers-item .our-numbers-count {
		font-size: 30px;
		margin: 4px;
	}

	.about-us-inner p {
		font-size: 18px;
	}

	.founder-right p {
		font-size: 18px;
	}

	.our-journey-scn {
		padding-bottom: 80px;
	}

	.exploremore-btn.getquote-btn {
		margin-bottom: 10px;
		font-size: 16px;
		min-width: 130px;
	}

	.cw-accordion__item .cw-label:after {
		top: -16px;
		font-size: 34px;
	}

	.arrows-pagination {
		font-size: 20px;
	}

	.arrows-pagination .c-prev-arr, .arrows-pagination .c-next-arr {
		width: 42px;
		height: 42px;
	}

	.sizehall-info-inner, .package-item {
		padding: 20px;
	}

	.package-list, .sizehall-info {
		padding: 10px;
	}

	.package-desc {
		font-size: 16px;
	}

	.package-info-list li {
		font-size: 17px;
	}

	.package-info-list li:before {
		top: 3px;
	}

	.package-info-list li:after {
		top: 6px;
	}

	.package-title label {
		font-size: 24px;
	}

	.package-title label:after {
		top: 8px;
	}

	.package-title label:before {
		top: 13px;
	}

}

@media(max-width:992px) {
	.heading-h2 h2 {
		font-size: 35px;
	}

	.categories-list .cate-item {
		width: calc(50% - 24px);
		margin: 12px;
	}

	.our-design-list-left {
		width: 100%;
		margin-top: 0px;
	}

	.blog-list {
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	.blog-list .blog-item {
		width: calc(33.33% - 20px);
		margin: 10px;
	}

	.our-design-tab-item .design-tab {
		width: 100%;
		font-size: 16px;
		margin-bottom: 10px;
	}

	.our-design-list-right {
		width: 100%;
		padding-left: 0px;
		padding-top: 30px;
	}

	.our-design-img-item {
		width: calc(50% - 30px);
	}

	.explore-more {
		min-height: 283px;
	}

	.explore-more .exploremore-btn {
		margin-top: 20px;
	}

	.whychoose-item {
		max-width: 45%;
		min-height: 45%;
	}

	.whychoose-name {
		font-size: 18px;
	}

	.whychoose-inner .whychoose-img {
		margin-top: 10px;
	}

	.how-we-work-item {
		width: 50%;
		padding: 0px 10px;
	}

	.how-we-work-cont .how-we-work-title {
		font-size: 24px;
	}

	.how-we-work-inner p {
		font-size: 19px;
	}

	.whyspace-table table th {
		font-size: 18px;
		height: 75px;
		width: 45%;
	}

	.whyspace-table table tr td {
		height: 90px;
		padding: 10px 20px;
		font-size: 16px
	}

	.whyspace-table table {
		font-size: 18px;
	}

	.brands-scn {
		padding: 20px 0px;
	}

	.brands-scn .heading-h2 {
		margin-bottom: 0px;
	}

	.brands-scn .heading-h2 {
		margin-bottom: 0px;
	}

	.brands-scn .heading-h2 {
		margin-bottom: 0px;
	}

	.customer-list {
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	.customer-item {
		width: calc(33.33% - 20px);
		margin: 0px 10px;
		padding: 8px;
	}

	.customer-item-inner p {
		font-size: 16px;
	}

	.brands-scn .heading-h2 {
		margin-bottom: 0px;
	}

	.blog-scn {
		padding: 30px 0px 50px 0px;
	}

	.blog-list .blog-cont .blog-tittle {
		font-size: 20px;
		margin: 5px 0px;
	}

	.blog-list .blog-cont p {
		font-size: 16px;
	}

	.lorem-dolor-inner {
		padding: 0px;
		min-height: 280px;
	}

	.lorem-dolor-cont p {
		max-width: 100%;
		font-size: 17px;
	}

	.lorem-dolor-cont .book-now-btn {
		margin-top: 0px;
		min-width: 140px;
		padding: 10px;
		font-size: 16px;
	}

	.lorem-dolor-right {
		width: 46%;
	}

	.lorem-dolor-left {
		width: 52%;
	}

	.map-left-right {
		padding: 20px;
		border-radius: 20px;
		margin-top: 20px;
	}

	.submit-btn {
		font-size: 18px;
	}

	.warranty-logo {
		max-width: 80px;
		min-height: 80px;
	}

	.warranty-item {
		padding: 0px 5px;
	}

	.warranty-desc {
		margin-left: 10px;
	}

	.warranty-desc {
		width: 100%;
		font-size: 14px;
	}

	.ftr-scn {
		padding: 30px 0px 0px 0px;
	}

	.ftr-item .ftr-logo {
		width: 88px;
		height: 60px;
	}

	.social-media-group a {
		margin-top: 30px;
		margin: 30px 6px 0px 0px;
	}

	.ftr-item .ftr-title {
		font-size: 18px;
	}

	.ftr-item {
		min-height: 227px;
	}

	.ftr-item .ftr-title h3 {
		font-size: 24px;
	}

	.social-media-group a {
		width: 38px;
		height: 38px;
	}

	.whyspace-table table th br {
		display: none;
	}

	.inner-bnr-scn {
		min-height: inherit;
	}

	.about-us-inner p {
		font-size: 18px;
	}

	.founder-right .founder-name {
		font-size: 22px;
		margin-top: 20px;
	}

	.founder-right .founder-designation {
		font-size: 16px;
	}

	.founder-right p {
		font-size: 18px;
		line-height: 1.5;
	}

	.about-us-scn {
		padding-bottom: 30px;
	}

	.our-numbers-scn {
		min-height: inherit;
	}

	.our-numbers-inner .heading-h2 h2 {
		padding-top: 40px;
	}

	.our-numbers-list {
		font-size: 18px;
		max-width: 100%;
		padding: 40px 0px;
	}

	.our-numbers-img {
		width: 65px;
		height: 65px;
		margin: auto;
	}

	.our-numbers-item .our-numbers-count {
		font-size: 30px;
	}

	.our-team-inner {
		max-width: 100%;
		font-size: 18px;
	}

	.our-team-item .our-team-name {
		font-size: 18px;
	}

	.our-team-scn {
		padding: 50px 0px 10px 0px;
	}

	.news-item {
		width: calc(33.33% - 28px);
		margin: 0px 14px;
		position: relative;
	}

	.news-list {
		width: calc(100% + 28px);
		margin-left: -14px;
	}

	.news-item p {
		font-size: 16px;
	}

	.news-cont {
		min-height: 60px;
		width: 40px;
		right: 10px;
	}

	.news-item .news-count {
		font-size: 22px;
	}

	.news-list .news-btn {
		margin-top: 20px;
		font-size: 16px;
	}

	.news-cont .news-month {
		font-size: 14px;
	}

	.lorem-dolor-scn.aboutus-page .lorem-dolor-inner {
		min-height: 252px;
	}

	.ftr-list {
		padding-bottom: 20px;
	}

	.img-cont-left {
		width: 100%;
	}

	.img-cont-left h2 {
		margin-bottom: 0px;
	}

	.img-cont-right {
		width: 100%;
		margin-top: 30px;
	}

	.whychoose-item-inner .whychoose-img {
		width: 60px;
		height: 60px;
	}

	.how-we-work-img {
		width: 70px;
		height: 70px;
	}

	.whychoose-scn .whychoose-desc {
		max-width: 100%;
		font-size: 18px;
	}

	.form-group-inner .form-field {
		min-height: 45px;
		margin-bottom: 10px;
	}

	.residential-cont .residential-room-name {
		font-size: 16px;
	}

	.residential-list.tv-unit-list .residential-room-cont {
		font-size: 16px;
	}

	.img-cont-inner {
		padding: 25px 0px 20px 0px;
	}

	.cw-section p {
		max-width: 100%;
		font-size: 18px;
		margin-bottom: 30px;
	}

	.exploremore-btn.getquote-btn {
		font-size: 14px;
	}

	.cw-section__title {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.cw-accordion__item {
		padding: 10px;
	}

	.cw-accordion__item .cw-label {
		font-size: 14px;
	}

	.cw-fix {
		padding: 50px 0px 50px 0px;
	}

	.minimalist-img {
		max-width: 100%;
	}



	.minimalist-info {
		padding-left: 0;
		padding-top: 20px;
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-flow: row wrap;
	}

	.minimalist-info-item {
		width: 25%;
	}

}

@media(max-width:767px) {
	body {
		padding-top: 82px;
	}

	header .navbar {
		padding: 10px 0;
	}

	.navbar-toggler {
		padding-right: 0;
	}

	.our-design-item {
		width: 100%;
		margin: 0px;
	}

	.our-design-img-item {
		width: 100%;
		margin: 15px 0px;
	}

	.about-us-inner p {
		font-size: 16px;
		margin-bottom: 20px;
	}

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

	.founder-right {
		width: 100%;
		padding-left: 0px;
	}

	.founder-scn {
		padding-bottom: 40px;
	}

	.our-numbers-item {
		max-width: 100%;
		width: 100%;
		margin-bottom: 15px;
		border: 1px #fff solid;
		border-radius: 10px;
		padding: 20px;
	}

	.our-numbers-item .our-numbers-count {
		font-size: 27px;
		margin: 5px 0px;
	}

	.our-numbers-list {
		padding: 20px 0px 30px 0px;
	}

	.our-numbers-list {
		font-size: 16px;
	}

	.our-team-inner {
		font-size: 16px;
	}

	.founder-right p {
		font-size: 16px;
		line-height: 1.5;
	}

	.our-team-list {
		width: 100%;
		margin: 0px;
		padding: 0px;
	}

	.our-team-item {
		width: calc(50% - 16px);
		margin: 0px 8px;
		min-height: inherit;
		padding-bottom: 30px;
	}

	.our-team-item .our-team-name {
		font-size: 18px;
	}

	.whychoose-scn .whychoose-desc {
		max-width: 100%;
		font-size: 16px;
	}

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

	.whychoose-scn {
		padding: 10px 0px;
	}

	.whychoose-inner {
		max-width: 100%;
		margin: 30px auto;
	}

	.about-box-div h4 {
		font-size: 22px;
	}

	.news-item {
		width: 100%;
		margin: 10px 0px;
	}

	.news-list {
		width: 100%;
		margin-left: 0px;
	}

	.lorem-dolor-left .heading-h2 {
		margin-top: 32px;
	}

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

	.about-box-div {
		padding: 50px 20px 20px 20px;
	}

	.about-box-div img {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.cate-name {
		font-size: 16px;
	}

	.heading-h2 {
		margin-bottom: 20px;
	}

	.we-design-scn {
		padding-bottom: 30px;
	}

	.explore-more {
		min-height: 243px;
	}

	.whychoose-inner .whychoose-item .whychoose-img {
		width: 55px;
	}

	.whychoose-list {
		width: 100%;
		max-width: 100%;
		margin-top: 25px;
	}

	.whychoose-item {
		max-width: calc(50% - 12px);
		min-height: 45%;
		margin: 6px;
	}

	.whychoose-name {
		font-size: 16px;
	}

	.whychoose-inner .whychoose-img {
		width: 100%;
	}

	.how-we-work-scn {
		margin-top: 0;
		padding: 30px 0;
	}

	.how-we-work-inner p {
		font-size: 16px;
		line-height: 1.4;
	}

	.how-we-work-item {
		padding: 15px;
		width: 100%;
	}

	.how-we-work-cont .how-we-work-title {
		font-size: 19px;
	}

	.how-we-work-cont p {
		font-size: 14px;
		line-height: 1.4;
		margin-top: 0px;
	}

	.how-we-work-img {
		max-width: 50px;
		margin-bottom: 4px;
	}

	.how-we-work-cont {
		max-width: 100%;
		min-height: inherit;
	}

	.how-we-work-list {
		padding-top: 10px;
	}

	.whyspace-table table th:first-child {
		border-radius: 10px 0px 0px 0px;
		width: 20%;
	}

	.whyspace-table table th:last-child {
		border-radius: 0px 10px 0px 0px;
		width: 20%
	}

	.whyspace-table table th {
		font-size: 14px;
		height: 40px;
		padding: 10px 10px;
	}

	.whyspace-table table {
		width: 650px;
	}

	.whyspace-table table tr td {
		height: 37px;
		font-size: 12px;
		padding: 5px 10px;
	}

	.whyspace-living {
		padding: 30px 0;
	}

	.brands-list .brands-item {
		width: 50%;
		padding: 6px;
		min-height: 73px;
	}

	.customer-item {
		width: 100%;
		margin: 0px 10px 20px 10px;
	}

	.customer-scn {
		padding-bottom: 20px;
	}

	.blog-list .blog-item {
		width: 100%;
		margin: 10px 0px 20px 0px;
	}

	.blog-list {
		width: 100%;
		margin: 0px;
	}

	.lorem-dolor-left {
		width: 100%;
	}

	.lorem-dolor-cont p {
		font-size: 16px;
		line-height: 1.4;
		font-weight: normal;
	}

	.lorem-dolor-right {
		width: 100%;
	}

	.blog-scn {
		padding-bottom: 10px;
	}

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

	.map-left-right {
		padding: 8px;
	}

	.form-group {
		padding: 25px 15px 15px 15px;
		margin-bottom: 0px;
	}

	.form-group-inner label {
		margin-bottom: 5px;
		font-size: 14px;
	}

	.form-group-inner .form-field {
		font-size: 14px;
		padding: 0px 10px;
		min-height: 40px;
		margin-bottom: 5px;
		border-radius: 5px;
	}

	.map-scn.residential-page .residential-inner {
		min-height: 450px;
	}

	.map-scn.residential-page {
		padding: 5px;
	}

	.submit-btn {
		margin-top: 10px;
		font-size: 14px;
		padding: 8px 10px;
	}

	.warranty-item {
		width: 100%;
	}

	.warranty-desc {
		width: 100%;
	}

	.warranty-logo {
		max-width: 80px;
		min-height: 80px;
	}

	.map-scn {
		padding: 30px 0px;
	}

	.warranty-scn {
		padding-bottom: 30px;
	}

	.warranty-scn {
		width: 100%;
	}

	.img-cont-scn {
		padding: 20px 0px;
	}

	.img-cont-left p {
		font-size: 16px;
	}

	.img-cont-right {
		margin-top: 30px;
	}

	.residential-item {
		width: 100%;
		margin: 11px 0px;
	}

	.residential-list-inner {
		width: 100%;
		margin-left: 0px;
		margin-bottom: 20px;
	}

	.map-left-right.residential-page {
		width: 100%;
		padding: 0px;
	}

	.breadcrumb-list li {
		font-size: 15px;
	}

	.breadcrumb-list li a {
		font-size: 15px;
	}

	.submit-btn.residential-page {
		min-height: 38px;
		padding: 5px 30px;
		font-size: 16px;
	}

	.warranty-scn.residential-page {
		padding-top: 50px;
	}

	.ftr-item {
		width: 50%;
		min-height: 180px;
		margin-bottom: 15px;
	}

	.ftr-item .ftr-title h3 {
		font-size: 18px;
		margin-bottom: 0px;
	}

	.ftr-menu li a {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.ftr-menu ul li {
		margin-bottom: 6px;
	}

	.ftr-item .ftr-address {
		padding-right: 10px;
		font-size: 16px;
	}

	.ftr-contact {
		font-size: 16px;
	}

	.whatsapp {
		width: 50px;
		height: 50px;
	}

	.ftr-list {
		padding-bottom: 5px;
	}

	.copy-right {
		font-size: 18px;
	}

	.our-journey-list .our-journey-item {
		padding-top: 70px;
	}

	.ourjNo {
		font-size: 24px;
	}

	.ourjNo:before {
		width: 18px;
		height: 18px;
		bottom: -26px;
	}

	.ourJourneySlider .owl-nav button {
		top: 72px;
		width: 40px;
		height: 40px;
	}

	.our-journey-cont {
		padding: 20px 10px;
	}

	.our-journey-cont p {
		font-size: 16px;
	}

	.our-journey-scn {
		padding-bottom: 50px;
	}

	.exploremore-btn.getquote-btn {
		font-size: 14px;
	}

	.img-cont-inner {
		padding-bottom: 0px;
	}

	.residential-list.tv-unit-list .residential-room-cont {
		font-size: 14px;
	}

	.cw-section__title {
		font-size: 26px;
	}

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

	.cw-accordion__item .cw-label {
		font-size: 12px;
	}

	.cw-accordion__item .cw-label:after {
		top: -18px;
		right: -12px;
	}

	.sizehall-info .form-group-inner label {
		width: 100%;
		padding-right: 0;
		font-size: 16px;
		margin-bottom: 0.4rem;
	}

	.sizehall-info .form-group-inner .form-field {
		width: 100%;
	}

	.sizehall-info .form-group-inner.form-sendme label {
		font-size: 15px;
		padding-top: 4px;
	}

	.sizehall-info .form-group-inner .form-field.form-field-file {
		overflow: hidden;
	}

	.youagree-form {
		font-size: 15px;
		margin-top: 20px;
	}

	.minimalist-info-item {
		width: 50%;
		margin-bottom: 10px;
	}

}


.slick-slide {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .slick-track {
	display: flex;
  }
  
  section {
	position: relative;
	width: 100%;
	overflow: hidden; /* Prevent scrollbars from appearing */
  }
  
  .slick-slider {
	position: relative;
	width: 100%;
  }
  
  .slick-slide img {
	width: 100%;
	display: block;
  }
  

/**media Css Page End**/


/* Extra CSS */
.navbar-brand{ margin-right: 25px;margin-left: 25px;}
.navbar {padding:0px}
header .navbar-expand-lg .navbar-nav .nav-link { padding-top: 30px; padding-bottom: 30px; }
.we-design-scn .about-box-div img { margin-left: auto;margin-right: auto;}
.blog-list .blog-cont .blog-title{font-size: 24px; font-weight: 600;color: #231F20; margin: 12px 0px 8px 0px; display: inline-block; width: 100%;}
.warranty-desc { align-items: flex-start; }
.whyspace-table table th:last-child{ background: #ff7e83!important; }

#home_banner {padding-top: 92px; }
.our-numbers-img img { margin: 0 auto; }
.mb-5 { margin-bottom: 50px; }
/* .single-list .img-cont-left {
    width: 100%!important;
} */

.bg-white { background-color: #FFFFFF; }

.brands-scn .brands-item img {
	filter: grayscale(1);
}
.brands-scn .brands-item img:hover {
	filter: grayscale(0);
}
.ftr-menu li { padding-bottom: 8px; }
.pt-15 {padding-top: 15px;display: block;}

.minimalist-img img {
	height: 600px;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}