* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}


html,
body {
	scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;

}

a {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--blackColor);
	text-decoration: none;
	outline: 0 !important;
}

a:hover {
	color: var(--mainColor);
	text-decoration: none;
}

:focus {
	outline: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

ul,
ol,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.stellarnav>ul>li>a:hover, .stellarnav>ul>li.active>a {
	color: #ff630e;
}

.no-padding {
	padding: 0px;
}

img {
	max-width: 100%;
	height: auto;

}

p {
	color: #000;
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.8;


}

p:last-child {
	margin-bottom: 0;
}


img {
	max-width: 100%;
}


body {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	font-family: "Roboto", sans-serif;
	/* font-family: '2NF'"Anton", sans-serif; */
	overflow-x: hidden;
}


.custom-container {
	padding: 0px 200px;
}

/*=====================================================
/*default-btn
======================================================*/

.default-btn {
	padding: 10px 25px;
	border-radius: 5px;
	position: relative;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: 1;
	width: fit-content;
	display: inline-flex;
}

.default-btn:hover {
	color: #ffffff;
}

.default-btn:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.default-btn:hover::after {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.default-btn:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.default-btn i {
	position: relative;
	top: 3px;
	padding-left: 7px;
}

.default-btn.orng {
	background-color: #ff630e;
	color: #ffffff;
}

.default-btn.orng::before {
	position: absolute;
	content: '';
	background-color: #000;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: -1;
}

.default-btn.orng::after {
	position: absolute;
	content: '';
	background-color: #000;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	top: 0;
	left: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: -1;
}


.default-btn.orng:hover {
	color: #ffffff;
}

.default-btn.orng:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.default-btn.orng:hover::after {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.default-btn.orng:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}


.default-btn.blck {
	background-color: #000;
	color: #ffffff;
}

.default-btn.blck::before {
	position: absolute;
	content: '';
	background-color: #ff630e;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: -1;
}

.default-btn.blck::after {
	position: absolute;
	content: '';
	background-color: #ff630e;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	top: 0;
	left: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	z-index: -1;
}


.default-btn.blck:hover {
	color: #ffffff;
}

.default-btn.blck:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.default-btn.blck:hover::after {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.default-btn.blck:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*=====================================================
/*default-btn
======================================================*/


/*=============header-top-logo-section========================= */


.header-section {
	background: #fff;
	padding: 0px;
	position: relative;
}


.header-section.scroll {
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 20;
	width: 100%;
	--tw-bg-opacity: 1;
	background-color: #fff;
	background-size: cover;
	background-repeat: no-repeat;
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.logo {
	width: 150px;
	height: auto;
	margin: 0px;
	padding: 11px 0px;
	position: relative;
}


.logo img {
	width: 100%;
}


.header-section.scroll .logo img {
	width: 60%;
}


.main-nav.scroll .logo {
	width: 148px;
	margin: 13px 0px;
}

.main-nav.scroll .rightlink {
	margin-top: 14px;
}

.stellarnav.mobile.right>ul {
	z-index: 99;
	background: #f0d04d;
}

.main-nav {
	margin: 0px 0px;
	padding: 10px 0px;
	width: 100%;
	height: auto;
	background: transparent;
	transition: all 0.1s ease 0s;
	z-index: 999;
	position: absolute;
}


.stellarnav {
	position: relative;
	width: 100%;
	line-height: normal;
	display: flex;
	justify-content: start;
	align-items: center;
	height: 100%;
}

.stellarnav ul {
	margin: 0px 0px;
	padding: 0px;
	position: relative;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
}

.stellarnav>ul>li>a {
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.5%;
	color: #000000;
	padding: 0px 20px !important;
	border-bottom: none;
}

.stellarnav .menu-toggle span.bars span {
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 6px;
	background: #000;
	margin: 0 0 5px;
}

.stellarnav>ul>li>a:hover {
	color: #ED692A;
	;
}

.stellarnav>ul>li>a.active {
	color: #ED692A;
	;
}

.stellarnav.mobile ul {
	background: #ED692A;
	;
	z-index: 99;
}

.main-nav-socialicon {
	margin: 20px 0px 0px 0px;
	padding: 0px 0px;
	position: relative;
	text-align: right;
}

.main-nav .stellarnav ul ul {
	width: 263px;
	padding: 12px 0px;
}

.main-nav .stellarnav li li {
	margin: 0px 0px;
	width: 100% !important;

}

.main-nav .stellarnav li li a {
	font-size: 15px;
	padding: 8px 12px;
	color: #2c2c2c;
	font-weight: 400;
}

/* .stellarnav li.has-sub a {
	padding-right: 0px !important;
} */

.main-nav .stellarnav li li a:hover {
	background: #fdedf0;
	color: #ED692A;
}

.main-nav .stellarnav li li a.active {
	background: #fdedf0;
	color: #ED692A;
}

.stellarnav li.has-sub>a::after {
	content: '\f107';
	margin-left: 7px !important;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #267ec3;
	display: inline-block;
	border: none !important;
	font: normal normal normal 16px/1 FontAwesome;
}


.stellarnav.mobile.right>ul,
.stellarnav.mobile.left>ul {
	max-width: 600px;
}


.nav-butn-row {
	display: flex;
	margin: 50px 50px;
	justify-content: start;
	align-items: center;
	gap: 20px;
}

.stellarnav.mobile li a {
	border-bottom: 0px solid rgba(255, 255, 255, .15);
}

.stellarnav .icon-close {
	width: 25px;
	height: 25px;
}

.stellarnav .icon-close::before {
	content: '';
	display: block;
	width: 25px;
	height: 0px;
	border-bottom: solid 3px #fff;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
}


.stellarnav .icon-close::after {
	content: '';
	display: block;
	width: 25px;
	height: 0px;
	top: 50%;
	border-bottom: solid 3px #fff;
	position: absolute;
	transform: rotate(-45deg);
}


.stellarnav ul ul {
	top: 44px;
	width: 200px;
	position: absolute;
	z-index: 9900;
	text-align: left;
	display: none;
	background: #fff;
	left: 0px;
}

.stellarnav li li {
	display: block !important;
	width: 100% !important;
}


.stellarnav li li a {
	font-size: 16px;
}

.stellarnav li li a:hover {
	color: #ED692A;
}


.rightlink {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: end;
	height: 100%;
}


/* ================================================================== */
/* header - top */

/* ==================================================================  */


/* ================================================================== */
/* banner section */
/* ==================================================================  */


.banner-section {
	margin: 0px;
	padding: 0px;
	height: auto;
	overflow: hidden;
	position: relative;
}

.banner-carousel .item {
	border-radius: 0px;
	width: 100%;
	height: 800px;
	overflow: hidden;
}

.banner-carousel .item img {
	width: 100%;
	height: 800px;
	object-fit: cover;
}

.banner-section #overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	border-radius: 0px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)),
		linear-gradient(270deg, rgba(0, 0, 0, 0) 42.47%, rgba(0, 0, 0, 0.5) 100%);


}

.banner-text {
	position: absolute;
	top: 0px;
	width: 44%;
	padding: 0px 0px;
	height: 93%;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}


.banner-text h6 {
	font-family: Roboto;
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #ED692A;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}


.banner-text h1 {

	font-family: Roboto;
	font-weight: 600;
	font-size: 62px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #ffff;
	padding: 0px;
	margin: 0px 0px 30px 0px;
}


.banner-text p {
	font-family: Roboto;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0.5%;
	text-align: left;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 40px 0px;
	max-width: 90%;
}


.banner-text .default-btn.orng {
	padding: 18px 30px;
	font-size: 24px;
	line-height: 24px;
}


.banner-section .owl-carousel .owl-nav {
	display: none;
}

.banner-section .owl-dots {
	position: absolute;
	bottom: 130px;
	right: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
	flex-direction: row;
	gap: 5px;
}

.banner-section .owl-dots .owl-dot span {
	width: 14px;
	height: 14px;
	margin: 0px;
	background: #CECECE;
	display: block;

	transition: opacity .2s ease;
	border-radius: 50%;
}


.banner-section .owl-dots .owl-dot.active span,
.banner-section .owl-dots .owl-dot:hover span {
	background: #ED692A;
	width: 37px;
	height: 14px;
	border-radius: 25px;
}


/* ==================================================================*/
/* banner section */
/* ==================================================================*/


/* ==================================================================*/
/* about- section */
/* ==================================================================*/


.about-section {
	position: relative;
	background: #F1F1F1;
	padding: 0px 0px 100px 0px;
	margin: 0px;
}


.consultation-row {
	position: relative;
	top: -95px;
	margin-bottom: 100px;

	z-index: 9;
	margin-top: 0px;

}

.consultation-row-left {
	background: #1E1E2A;
	padding: 60px 90px;
	margin: 0px;
	min-height: 297px;
}

.consultation-row-left h3 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 48px;

	line-height: 120%;
	letter-spacing: -4%;
	color: #fff;
	margin: 0px;
	padding: 0px 0px 20px 0px;
}

.consultation-row-left p {
	font-family: Roboto;
	font-weight: 600;

	font-size: 24px;

	line-height: 120%;
	letter-spacing: -4%;
	color: #fff;
	margin: 0px;
	padding: 0px 0px 20px 0px;
	position: relative;
}


.consultation-row-left p::after {
	content: "";
	position: absolute;
	bottom: -25px;
	background: #ED692A;
	width: 60px;
	height: 8px;
	left: 0px;
}


.consultation-row-right {
	background: #FFFFFF;
	padding: 40px 40px;
	margin: 0px;
	min-height: 280px;

	display: flex;
	justify-content: center;
	align-items: center;
}


.consultation-row-right .quoteform {
	padding: 0px;
	nav-down: 0px;
}

.consultation-row-right .form-control {
	display: block;
	width: 100%;
	padding: 14px 20px;
	background-color: #F1F1F1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 5px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	margin-bottom: 10px;
	font-family: Roboto;
	font-weight: 400;

	font-size: 16px;

	line-height: 150%;
	letter-spacing: 0.5%;

	color: #1E1E2A;
}


textarea.form-control {

	height: 53px !important;
	padding: 14px 20px !important;
}


.consultation-row-right .default-btn.orng {
	width: 100%;
	border: none;
	height: 50px;
	text-align: center;
	margin: 0px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-content-row {
	margin: 0px;
	padding: 0px;
}


.about-content-row-left {
	padding: 0px;
	margin: 0px;
}


.about-content-row-left h6 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #ED692A;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.about-content-row-left h2 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 62px;
	line-height: 72px;
	letter-spacing: -4%;
	color: #1E1E2A;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.about-content-row-left p {
	font-family: Roboto;
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.5%;
	color: #666666;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

.about-content-row-left p span {
	font-weight: 700;
}


.about-content-butm {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 50px;
	margin: 0px;
	padding: 0px;
}


.about-content-butm h4 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: -4%;
	color: #1E1E2A;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 30px;
	position: relative;
}

.about-content-butm h4::before {
	font: normal normal normal 8px/1 FontAwesome;
	content: "\f058";
	height: auto;
	width: auto;
	position: absolute;
	margin: 0px;
	color: #ED692A;
	font-size: 21px;
	left: 0px;
	top: 2px;
}


.about-content-butm p {
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.5%;
	color: #666666;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	width: 80%;
}

.about-image-area {
	position: relative;
	/* overflow: hidden; */
	height: 100%;
}


.about-image-area img {
	display: flex;
	justify-content: end;
	float: right;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.about-image-area:hover img {
	-webkit-transform: scale(1.05) rotate(2deg);
	transform: scale(1.05) rotate(2deg);


}


.about-image-area .about-img-text {
	z-index: 99;
	padding: 40px 40px;
	text-align: center;
	max-width: 320px;
	height: 260px;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	background: #fff;
	display: inline-block;
	position: absolute;
	bottom: 9px;
	left: 20%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}


.about-image-area:hover .about-img-text {
	left: 18%;
}

.about-image-area .about-img-text h4 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #ff630e;
	font-size: 70px;
	margin: 0px 0px 10px 0px;
}

.about-image-area .about-img-text h5 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 36px;

	line-height: 120%;
	letter-spacing: -4%;
	text-align: center;
	color: #1E1E2A;
	padding: 0px;
	margin: 0px auto;

}


/* ==================================================================*/
/* about- section */
/* ==================================================================*/


/* ==================================================================*/
/* services- section */
/* ==================================================================*/

.our-services-section {
	padding: 100px 0px;
	margin: 0px;
}


.our-services-section h2 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 62px;

	line-height: 120%;
	letter-spacing: -4%;
	text-align: center;
	color: #000;
	margin: 0px 0px 60px 0px;
	padding: 0px;
}


.services-box {
	box-shadow: 0px 0px 53.1px 0px #0000000D;
	padding: 0px;
	margin: 0px 0px 30px 0px;
	background: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(0px) !important;
	-ms-transform: translateY(0px) !important;
	transform: translateY(0px) !important
}


.services-box:hover {
	box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
	-webkit-transform: translateY(-5px) !important;
	-ms-transform: translateY(-5px) !important;
	transform: translateY(-5px) !important;
}


.services-box .services-box-img {
	overflow: hidden;
}


.services-box .services-box-img img {
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-filter: brightness(0.9);
	filter: brightness(0.9);
	width: 100%;
}

.services-box .services-box-img:hover img {
	-webkit-transform: scale(1.1) rotate(5deg);
	transform: scale(1.1) rotate(5deg);
}


.services-box-text {
	padding: 30px 30px;
}


.services-box-text h4 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #1E1E2A;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}


.services-box-text p {
	font-family: Roboto;
	font-weight: 400;

	font-size: 18px;

	line-height: 175%;
	letter-spacing: 0.5%;
	color: #666666;
	margin: 0px 0px 20px 0px;
	padding: 0px;

}


.learn-more-btn {
	font-family: Roboto;
	font-weight: 400;

	font-size: 18px;

	line-height: 175%;
	letter-spacing: 0.5%;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-offset: 0%;
	text-decoration-thickness: 0%;
	color: #ED692A;
	margin: 0px;
	padding: 0px;
}


.learn-more-btn:hover {
	color: #000;
}


/* ==================================================================*/
/* services- section */
/* ==================================================================*/


/* ==================================================================*/
/* Residential Drafting section */
/* ==================================================================*/

.residential-section {

	background: url(../images/New-Build-House21.png) no-repeat;
	background-position-x: 0%;
	background-position-y: 0%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: auto;
	height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0px;
	height: 750px;
}


.residential-section .custom-container {
	position: relative;
	text-align: center;
	height: 100%;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}


.residential-section-inner {
	padding: 0px;
	margin: 0px;

}


.residential-section-inner h6 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 24px;

	line-height: 120%;
	letter-spacing: -4%;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}


.residential-section-inner h2 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 55px;
	line-height: 55px;
	letter-spacing: -4%;
	text-align: center;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 30px 0px;
}

.residential-section-inner ul {
	margin: 0px auto 80px;
	text-align: center;
	max-width: 900px;
}

.residential-section-inner ul li {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 96px;
	font-family: Roboto;
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #fff;
	padding: 0px 30px 20px;
	margin: 0px;
	position: relative;
}

.residential-section-inner ul li::before {
	font: normal normal normal 8px/1 FontAwesome;
	font-size: 8px;
	content: "\f058";
	height: auto;
	width: auto;
	position: absolute;
	margin: 0px;
	color: #ED692A;
	font-size: 21px;
	left: 0px;
	top: 5px;
}


/* ==================================================================*/
/* Residential Drafting section */
/* ==================================================================*/


/* ==================================================================*/
/* Why Choose section */
/* ==================================================================*/


.why-choose-section {
	padding: 100px 0px;
	margin: 0px;
	background: #F1F1F1;
}


.why-choose-section-left {
	padding: 0px 60px 0px 0px;
	margin: 0px;
}

.why-choose-section-left h6 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #ED692A;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}


.why-choose-section-left h2 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 62px;
	line-height: 72px;
	letter-spacing: -4%;
	color: #1E1E2A;
	margin: 0px 0px 30px 0px;
	padding: 0px;
}


.why-choose-section-left p {
	font-family: Roboto;
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.5%;
	color: #666666;
	margin: 0px 0px 50px 0px;
	padding: 0px;
}

.why-choose-section-left p span {
	font-weight: 700;
}

.why-choose-box {
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

.why-choose-box h4 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: -4%;
	color: #1E1E2A;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 30px;
	position: relative;
}


.why-choose-box h4::before {
	font: normal normal normal 8px/1 FontAwesome;
	content: "\f058";
	height: auto;
	width: auto;
	position: absolute;
	margin: 0px;
	color: #ED692A;
	font-size: 21px;
	left: 0px;
	top: 2px;
}


.why-choose-box p {
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.5%;
	color: #666666;
	margin: 0px 0px 25px 0px;
	padding: 0px;
	width: 80%;
}


.why-choose-section-right {
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: 700px;
	border-radius: 0px;
	overflow: hidden;
}


.why-choose-section-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}


.why-choose-section-right:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


/* ==================================================================*/
/* Why Choose section */
/* ==================================================================*/


/* ==================================================================*/
/* Our Process section */
/* ==================================================================*/

.our-process-section {
	padding: 100px 0px;
	margin: 0px;
	position: relative;
	height: 100%;
	background: url(../images/our-pros.png) no-repeat;
	background-size: 100% 100%;

}

.our-process-section-left {
	padding: 0px 60px 0px 0px;
	margin: 0px;
}

.our-process-section-left h6 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 24px;

	line-height: 120%;
	letter-spacing: -4%;
	color: #1E1E2A;
	padding: 0px 0px 20px 0px;
	margin: 0px;
}


.our-process-section-left h2 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 62px;
	line-height: 120%;
	letter-spacing: -4%;
	color: #1E1E2A;
	padding: 0px 0px 30px 0px;
	margin: 0px;
}


.our-process-section-left p {
	font-family: Roboto;
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0.5%;
	color: #666666;
	padding: 0px 0px 40px 0px;
	margin: 0px;
	max-width: 80%;
}


.our-process-section-right {
	padding: 0px;
	margin: 0px;
}

.our-process-row {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 30px;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}

.our-process-row:hover .our-process-icon {
	margin-left: 3rem;
	background: #000;
	-webkit-animation: headShake 1.5s infinite;
	animation: headShake 1.5s infinite;
	animation-name: headShake;
}


.our-process-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ED692A;
	text-align: center;
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: -4%;
	color: #fff;
	padding: 20px 20px;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: .5s;
}


.our-process-text {
	padding: 0px;
	margin: 0px;
}


.our-process-text h5 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: -4%;
	color: #1E1E2A;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}


.our-process-text p {
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0.5%;
	color: #666666;
	padding: 0px 0px 20px 0px;
	margin: 0px;
}


/* ==================================================================*/
/* Our Process section */
/* ==================================================================*/


/*==================================================================*/
/*footer - section*/
/* ==================================================================*/

.footer {
	background: #1E1E2A;
	padding: 80px 100px 40px;
	position: relative;
}

.footer-top {
	padding: 0px 0px 60px 0px;
	margin: 0px;
}


.footer-text {
	padding: 0px;
	margin: 0px;
}


.footer-text h6 {
	font-family: Roboto;
	font-weight: 600;
	font-size: 36px;
	line-height: 46px;
	letter-spacing: -4%;
	color: #fff;
	margin: 0px;
	padding: 0px;
	width: 92%;
}


.footer-mid {
	border-top: 1px solid #CCCCCC;
	padding: 50px 0px;
	margin: 0px;
}


.footer-mid h3 {
	font-family: Roboto;
	font-weight: 600;

	font-size: 40px;

	line-height: 120%;
	letter-spacing: -4%;
	text-align: center;
	color: #fff;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	text-align: left;
}


.footer-mid p {
	font-family: Roboto;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #fff;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	width: 73%;
}


.ftSocial {
	display: flex;
	align-items: start;
	gap: 10px;
	padding: 0;
	margin: 0;
}

.ftSocial li a {
	display: flex;
	height: 35px;
	width: 35px;
	align-items: center;
	justify-content: center;
	border: 1px solid #B4B4B4;
	color: #B4B4B4;
	font-size: 14px;
	line-height: 1;
	border-radius: 50%;
	background: transparent;
	transition: all 300ms ease-in-out;
}


.ftSocial li a:hover {
	background: #ED692A;
	border-color: #ED692A;
	color: #fff;
	border-radius: 2px;
}


.quick-links ul {
	padding: 0px;
	margin: 0px;
	column-count: 2;
}

.quick-links ul li {
	list-style-type: none;
	padding: 0px;
	margin: 0px 0px 12px 0px;
}


.quick-links ul li a {
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0%;
	color: #fff;
	padding: 0px;
	margin: 0px;
	transition: all 300ms ease-in-out;
}


.quick-links ul li a:hover {
	color: #ff630e;
	padding-left: 4px;
}


.footer-butm-text p {
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0%;
	text-align: center;
	color: #FFFFFF;
	padding: 0px;
	margin: 0px;
}

.footer-butm-text p a {
	color: #FFFFFF;


}

.footer-butm-text p a:hover {
	color: #ED692A;
}


/*==================================================================*/
/*footer - section*/
/* ==================================================================*/


/*================================================
Go Top CSS
=================================================*/
.go-top {
	position: fixed;
	cursor: pointer;
	bottom: 100px;
	right: 20px;
	border-radius: 50px;
	background-color: #FF630E;
	color: #ffffff;
	z-index: 999;
	width: 50px;
	text-align: center;
	height: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 25px;
	-webkit-transition: var(--transition);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.go-top:hover {
	color: #ffffff;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	background-color: #000;
	border: 1px solid #000;
}

.go-top.active {
	opacity: 1;
	visibility: visible;
	bottom: 25px;
	-webkit-animation: top-bottom 5s infinite linear;
	animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/


/* ==================================================================*/
/* end M.B css*/
/* ==================================================================*/

button.sub-menu-toggle {
    display: none;
}

.google-reviews-box {
        background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 19px;
    margin: 50px 30px;
    padding: 40px 0;
}

/*service section css*/
.service-single-page { padding: 80px 0; }
.service-single-img img { width: 100%; border-radius: 10px; }
.service-title { font-size: 32px; margin-bottom: 20px; }
.service-description p { font-size: 18px; line-height: 1.8; margin-bottom: 20px;text-align: justify;}
.back-btn { display: inline-block; margin-top: 20px; font-weight: 600; text-decoration: underline; }


/* service archive Page */

.services-archive-page {
    background: #fff;
    padding: 80px 0;
}

.services-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: .3s;
}

.services-box:hover {
    transform: translateY(-5px);
}


/* bradcramp start */

.breadcumb {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.breadcumb-slide {
    position: relative;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform .6s ease;
}

.breadcumb:hover .banner-img {
    transform: scale(1);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb-wrap .breadcrumbs {
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
}

.breadcrumb-wrap .breadcrumbs a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-wrap .breadcrumbs a:hover {
    text-decoration: underline;
}
/* bradcramp end */


section.aboutuspage-section {
    padding: 70px 0px;
}

section.aboutuspage-section p {
    font-family: inherit;
    text-align: justify;
    font-size: 16px;
    line-height: 27px;
    color: #666666;
}

/* About Us */


.about-text p {
    font-size: 18px;
    line-height: 1.7;
}

.google-reviews-box {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 50px 30px;
    margin: 40px 0;
}

  .faq-section {
    padding: 50px 0;
  }
  .faq-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    text-align:justify;
  }
  .faq-question {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-icon {
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  .faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #555;
    background: #fff;
  }
  .faq-question.active .faq-icon {
    transform: rotate(45deg);
  }


/* ========================== */
/* ========contactt-page====*/
/* ========================== */

.contact-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    background-color: #E1F3F7;
    padding: 20px;
    margin-bottom: 30px;
}

.contact-card{
	display: flex;
    justify-content:flex-start;
    align-items: center;
	flex-direction: row;
	background-color:#ff630e0f;
	padding: 20px;
	margin-bottom: 30px;
}
.contact-card .icon{
	margin-right: 20px;
}
.contact-card .card-details h6{font-size: 16px; color: #666;     margin-bottom: 9px;}
.contact-card .card-details h5 a{font-size: 24px; color: #333; font-weight: bold; }

.contactuscard-section {
	margin: 0px 0px;
	padding: 60px 0px;
	overflow: hidden;
}

.dropus-line h2 {
	font-weight: 700;
	font-style: Bold;
	font-size: 54px;
	leading-trim: NONE;
	line-height: 42px;
	letter-spacing: 0%;
	color: #171717;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}

.dropus-line p {
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0%;
	color: #171717;
	padding: 0px;
	margin: 0px 30px 30px 0px;
	text-align: justify;
}

.quoteform {
	margin: 0px 0px;
	padding: 0px 0px;
	position: relative;
	width: 100%;
}


.quoteform .form-control {
	display: block;
	width: 100%;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	color: #4A4A4A;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #A8A8A8;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 7px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	margin-bottom: 21px;
}


.containerimg {
	margin: 0px 0px;
	padding: 0px 0px;
	position: relative;
	width: 95%;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.containerimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.containerimg:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


.dropus-line {
	padding: 10px 0px 0px;
}


.red-butn {
    color: #fff;
    border: 2px solid #E8677C;
    background: #E8677C;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.cumn-butn-body.default-btn.orng {
    border: 1px solid #ff630e;
}

#wpcf7-f254-o1 textarea.form-control
 {
    height: auto !important;
}

/* ========================== */
/* ========contactt-page====*/
/* ========================== */

.aboutuspage-section .about-page-left h4 {
    font-family: 'Roboto';
    font-size: 26px;
    margin: 25px 0px;
}


/*.page-id-136 .faq-item ul, li {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style-type: disc;*/
/*    font-size: 12px;*/
/*    line-height: 20px;*/
/*    margin-left: 19px;*/
    
/*}*/

/*.page-id-136 .faq-item ul, li {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style-type: disc;*/
/*    font-size: 14px;*/
/*    line-height: 24px;*/
/*    margin-left: 19px;*/
/*    color: #000;*/
/*}*/