body {
	background: #fff;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #656565;
	letter-spacing: 0.01rem;
	line-height: 1.2;
}

.white-placeholder::placeholder {
	color: white;
	opacity: 1;
	/* Ensures full visibility */
}

/* For better browser support */
.white-placeholder input::placeholder,
.white-placeholder textarea::placeholder {
	color: white;
	opacity: 1;
}

.white-placeholder input:-ms-input-placeholder,
/* IE 10-11 */
.white-placeholder textarea:-ms-input-placeholder {
	color: white;
}

.white-placeholder input::-ms-input-placeholder,
/* Edge */
.white-placeholder textarea::-ms-input-placeholder {
	color: white;
}

.white-placeholder select option {
	background-color: #fff;
	color: #000;
	border-radius: 0 !important;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter", sans-serif;
	font-weight: 600;
}

b,
strong {
	font-weight: 700;
}

ul,
li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

p {
	line-height: 1.6rem;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
}

.ff-inter {
	font-family: "Inter", sans-serif !important;
	font-optical-sizing: auto;
	font-style: normal;
}

.ff-poppins {
	font-family: "Poppins", sans-serif !important;
	font-optical-sizing: auto;
	font-style: normal;
}

.section {
	position: relative;
	display: block;
}

.header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 0;
	background-color: transparent;
}

.top-nav-section {
	background-color: #ffffff;
	border-radius: 2.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}


/* NAV BAR */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1400px) {
	.nav {
		max-width: 1320px;
	}
}

.nav-left {
	display: flex;
	gap: 0px;
	flex: 1;
	justify-content: center;
}

.nav a {
	color: #000;
	text-decoration: none;
}

.nav a.active {
	color: gold;
}

.nav ul {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav ul li {
	position: relative;
}

.nav ul li a {
	font-size: 1.063rem;
	font-weight: 500;
	letter-spacing: 0rem;
	text-decoration: none !important;
	text-transform: capitalize;
	color: #000000;
	padding: 15px 0;
	display: flex;
	gap: 0rem;
}

.nav ul li a:hover,
.nav ul li a:focus {
	color: #ff6900;
}

/* SUBMENU STYLES */
.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #1e1e1e;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 0;
}

.nav ul li .submenu li {
	padding: 0;
}

.nav ul li .submenu li a {
	display: block;
	padding: 0.625rem 1.25rem;
	white-space: nowrap;
}

.nav ul li.has-submenu:hover>.submenu {
	display: block;
}

.submenu-toggle {
	display: block;
	/* hidden on desktop */
	font-size: 0.75rem;
	padding-top: 4px;
	line-height: 100%;
}

/* LOGO & HAMBURGER */
.logo-left {
	display: none;
	align-items: center;
}

.logo-left img {
	height: 40px;
}

.logo-center img {
	height: 40px;
}

.header .logo img {
	max-width: 100%;
	height: auto;
	width: 216px;

}

.hamburger {
	width: 30px;
	height: 22px;
	position: relative;
	right: 0;
	top: 0;
	cursor: pointer;
	display: none;
	z-index: 1001;
}

.hamburger span {
	background: #000;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
}

.hamburger span:nth-child(3) {
	top: 18px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

/* MOBILE STYLES */
@media (max-width: 991px) {
	.header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
	}

	.logo-left {
		display: flex;
	}

	.logo-center {
		display: none;
	}

	.hamburger {
		display: block;
	}

	.nav {
		display: none;
		flex-direction: column;
		background: #000;
		padding: 20px;
		gap: 20px;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		z-index: 1000;
	}

	.nav.show {
		display: flex;
	}

	.nav-left {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.nav ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.nav ul li {
		width: 100%;
	}

	.nav ul li a {
		display: block;
		color: #fff;
		min-height: 42px;
		padding: 10px 0px;
	}

	.nav ul li.has-submenu>a {
		padding-right: 42px;
	}

	/* Show submenu toggle arrow */
	.submenu-toggle {
		display: flex;
		cursor: pointer;
		width: 40px;
		height: 42px;
		border-left: 1px solid rgba(255, 255, 255, 0.3);
		position: absolute;
		right: 0;
		z-index: 10;
		top: 0;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		color: #fff;
		text-align: center;
	}

	.submenu-toggle i {
		transition: transform 0.3s ease;
		/* smooth rotation */
		width: 24px;
		height: 20px;
		display: block;
		line-height: 100%;
	}

	.submenu-toggle.rotate i {
		transform: rotate(180deg);
	}

	.nav ul li .submenu {
		display: none;
		position: relative;
		width: 100%;
		top: 0;
		background-color: transparent;
	}

	.nav ul li .submenu.open {
		display: block;
	}

	.nav ul li .submenu li a {
		color: #fff;
	}

	.nav ul li>a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.nav ul li .submenu {
		padding: 0;
		box-shadow: none;
		background-color: rgba(255, 255, 255, 0.2);
	}

	.nav ul li .submenu li a {
		padding: 8px;
		white-space: nowrap;
	}
}

.svg-icon {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.top-right-section {
	gap: 20px;
}

.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}

.slider-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: transparent !important;
	transform: rotate(0deg);
	transition: transform 1s linear;
	border: none !important;
	font-size: 50px;
	color: #ff6900;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
}

.slider-arrow.nav-button-prev {
	left: -50px;
}

.slider-arrow.nav-button-next {
	right: -50px;
}

.slider-section .slider-arrow.nav-button-prev {
	left: 0;
}

.slider-section .slider-arrow.nav-button-next {
	right: 0px;
}

.slider-section .slider-arrow {
	color: #fff;
}

#slide-carousel .slider-arrow {}

.carousal-slider-section .slider-arrow {
	background-color: transparent !important;
	height: 60px;
	width: 60px;
	border-radius: 0%;
	font-size: 50px;
	color: #000;
}

.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
	left: -60px;
}

.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
	right: -60px;
}

.heading {
	position: relative;
	display: block;
}

.heading h2 {
	font-size: 2.188rem;
	color: #161f2d;
	line-height: 100%;
	letter-spacing: 0.01rem;
	font-weight: 700;
}

.sub-heading {
	display: flex;
	position: relative;
	color: #ff6900;
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
	width: 100%;
	margin: 0px 0 0.5rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	gap: 0.875rem;
	align-items: center;
}

.padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.font-size-14 {
	font-size: 14px;
}

.font-size-16 {
	font-size: 16px;
}

.font-size-18 {
	font-size: 18px;
}

.font-size-20 {
	font-size: 20px;
}

.custom-btn {
	border-radius: 100px;
	color: #ffffff;
	background-color: #ff6900;
	font-size: 1.125rem;
	letter-spacing: 0.04rem;
	padding: 10px 30px;
	border-color: transparent;
	line-height: 100%;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.custom-btn-arrow {
	position: relative;
	width: auto;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
}

.custom-btn-arrow svg {
	width: 15px;
	height: 15px;
}

.custom-btn:hover {
	background-color: #232150;
	color: #ffffff;
}

.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}

.white-border {
	border-color: #fff;
	color: #fff;
}

.orange-border {
	border-color: #ff6900;
	color: #ff6900;
}

.black-border {
	border-color: #000;
	color: #000;
}

.big-btn {
	padding: 20px 45px 18px;
}

.btn-with-arrow {
	padding: 20px 45px 18px;
}

.white-border:hover {
	border-color: #fff;
	color: #000;
	background-color: #fff !important;
}

.black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}

.black-border:hover .custom-btn-arrow {
	color: #fff;
}

.custom-btn-black {
	background-color: #232150;
	color: #ffffff;
}

.custom-btn-black:hover {
	background-color: #ff6900;
	color: #ffffff;
}

.orange-border:hover,
.orange-border:focus {
	border-color: #ff6900;
	color: #ffffff;
	background-color: #ff6900 !important;
}

.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #e63426;
	border-radius: 50%;
	display: block;
	color: #e63426;
}

.social-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}

.social-icon a:hover,
.social-icon a:focus {
	border-color: #e63426;
	background-color: #e63426;
	color: #ffffff;
}

.grey-bg {
	background-color: #f8f8f8;
}

.list-number li {
	list-style-type: decimal;
	margin-bottom: 15px;
}

.gallery-section ul {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 auto 20px;
}

.gallery-section ul li {}

.filter-list .nav-link {
	color: #333;
	font-weight: 500;
	border-radius: 5px;
	padding: 6px 12px;
	margin: 4px;
	transition: all 0.2s ease-in-out;
}

.filter-list .nav-link:hover {
	background-color: #eee;
}

.filter-list .nav-link.active {
	background-color: #ff6900;
	color: #ffffff;
	font-weight: 500;
}

.grid .img-fluid {
	width: 100%;
}

.top-section {
	background-color: #000000;
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 0.01rem;
	padding: 5px 0;
	width: 100%;
}

.icon-btn {
	font-size: 18px;
	color: #010101;
	border: none;
	padding: 0;
	letter-spacing: 0rem;
	font-weight: 700;
}

.icon-btn i {
	margin-right: 10px;
}

.icon-btn i svg {
	width: 32px;
	height: 32px;
	color: #232150;
}

.btn-svg-icon {}

.icon-btn span {
	font-size: 14px;
	font-weight: 400;
	color: #ff6900;
	display: block;
	letter-spacing: 0.01rem;
	text-transform: capitalize;
}

.icon-btn:hover {
	color: #ff6900
}

.sub-title-btn-inner.ph-number {
	font-size: 1.188rem;
	font-weight: 600;
	color: #000000;
}

.header-middle-section {
	padding: 1.625rem 0;
	width: 100%;
}

.navigetion-section {
	background-color: #004c6a;
	width: 100%;
	display: flex;
	justify-content: center;
}

.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: rgba(0, 0, 0, .70);
}

.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, .65);
	padding-top: 119px;
}

.banner-caption h1 {
	font-size: 3.75rem;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 120%;
	letter-spacing: 0.06rem;
	font-weight: 700;
}

.banner-caption h2 {
	font-size: 1.25rem;
	color: #ff6900;
	text-transform: uppercase;
	line-height: 120%;
	letter-spacing: 0.06rem;
	font-weight: 700;
}

.banner-caption h6 {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 1.4rem;
	letter-spacing: 0rem;
	font-family: "Poppins", sans-serif;
}

.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}

.contact-form {
	background-color: rgba(255, 255, 255, 1);
	padding: 30px;
	border-radius: 20px;
}

.contact-form .form-control,
.contact-form .form-select {
	height: 51px;
	border: 1px solid #d4d4d4;
	background-color: transparent;
	font-size: 0.875rem;
	font-family: "Poppins", sans-serif;
	border-radius: 1.5rem;
	padding: .675rem 1.25rem;
}

.contact-form textarea {
	height: auto !important;
}

.form-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: #004c6a;
	margin: 0 0 0px;
	text-align: center;
	text-transform: capitalize;
}

.contact-form p {
	font-size: 16px !important;
	color: #666666 !important;
	font-weight: 400 !important;
}

.yellow-text {
	color: #ff6900 !important;
}

.service-box-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
	padding-left: 0;
	padding-bottom: 0;
	border-radius: 1.25rem;
}

.service-box-content {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 0;
	position: absolute;
	display: block;
	z-index: 2;
	margin-top: 0%;
	border-radius: 0px;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: start;
	height: 77px;
	gap: 1rem;
}

.service-box-content h4 {
	font-size: 1.425rem;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0rem;
	line-height: 100%;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0;
}

.service-box-content p {
	font-size: 0.875rem;
	line-height: 1.2rem;
	color: #181818;
	margin-bottom: 0 !important;
	min-height: 60px;
}

.read-more {
	font-size: 14px;
	color: #004c6a;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.02rem;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.read-more:hover {
	color: #ff6900;
}

.read-more i {
	margin-top: 2px;
}

.circle-icon {
	position: relative;
	width: 77px;
	height: 77px;
	border-radius: 0;
	background: #004c6a;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.circle-icon svg {
	display: block;
	width: 40px;
	height: 40px;
	color: #ffffff;
}

.list-with-tick {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.list-with-tick li {
	position: relative;
	font-size: 0.938rem;
	letter-spacing: 0rem;
	color: #4d4d4d;
	padding-left: 30px;
	margin-top: 20px;
	display: block;
	line-height: 140%;
}

.list-with-tick li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "\F270";
	width: 30px;
	min-height: 20px;
	color: #ff6900;
	font-size: 20px;
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.list-with-tick.list-with-tick-alt li {
	font-size: 18px;
	color: #fff;
}

.list-with-tick.list-3 li {
	flex: 1 0 33.333%;
}

.cover-bg-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.work-with-us-section {
	max-height: 428px;
	overflow: hidden;
}

.pt-60 {
	padding-top: 60px;
}

.pb-135 {
	padding-bottom: 135px;
}

.overlay-bg {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.7);
}

.box-wrapper {
	padding: 30px 25px 30px;
}

.how-to-work-box {
	border-radius: 10px;
	padding: 20px 25px;
}

.how-to-work-icon svg {
	display: block;
	width: 65px;
	height: 65px;
	color: #ff6900;
}

.how-to-work-box-content p {
	font-size: 14px;
	color: #575757;
	letter-spacing: 0.02rem;
	margin-bottom: 0 !important;
	line-height: 1.2rem;
	font-weight: 400;
}

.why-choose-us-section .container {
	position: relative;
	z-index: 11;
	margin-top: -75px;
}

.testimonials-section {
	background: #f8f8f8 url(../images/review-banner.jpg) left center no-repeat;
	background-size: 50% auto;
	min-height: 200px;
	overflow: hidden;
}

.testimonial-box {
	display: block;
	background-color: #fff;
	padding: 20px 15px;
	position: relative;
	min-height: 200px;
	border-radius: 1.25rem;
	margin: 10px 12px 20px 12px;
}

.testimonial-slider .slider-arrow {
	margin-top: -4%;
}

.review-star {
	font-size: 20px;
	color: #ff8e00;
}

.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}

.contact-right a {
	color: #fff;
}

.contact-right .svg-icon {
	color: #feb101;
	width: 24px;
	height: 24px;
}

.contact-icon {
	width: 48px;
	height: 48px;
	border: 2px solid #feb101;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	min-width: 48px;
}

ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #242424;
	padding: 0 15px;
	font-size: 0.875rem;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
}

ul.list-inline li:last-child {
	border-right: none !important;
}

ul.list-inline li a {
	color: #242424;
	text-decoration: none !important;
}

ul.list-inline li a:hover {
	color: #ff6900;
}




.scrollup {
	width: 50px;
	height: 50px;
	opacity: 1;
	position: fixed;
	bottom: 8px;
	left: 15px;
	display: none;
	text-indent: -9999px;
	background: url(../images/icons/circle-arrow.svg) no-repeat;
	z-index: 5;
	background-size: 100% auto;
}

.text {
	display: inline;
	position: relative;
}

.show-toggle {
	color: #e42032;
	cursor: pointer;
	font-weight: 500;
}

.show-toggle:hover {
	text-decoration: underline;
}

.footer-bottom-wrapper {
	background-color: #000000;
	padding: 20px 40px;
	border-radius: 10px;
	margin-bottom: -53px;
}

.content-icon-btn .icon-btn {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}

.content-icon-btn .icon-btn span {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.0rem;
	font-family: "Poppins", serif;
}

.content-icon-btn .icon-btn i svg {
	width: 44px;
	height: 44px;
	color: #fff;
}

.content-icon-btn .icon-btn i {
	margin-right: 12px;
}

.contact-section iframe {
	width: 100%;
	height: 523px;
	display: block;
}


.top-contact-icon-box {
	border-color: #626262 !important;
}

.text-orange {
	color: #ff6900;
}

.banner-bottom-section {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 2;
	left: 0;
	right: 0;
	background-color: #1c1c1c;
	height: 120px;
}

.pb-120 {
	padding-bottom: 120px;
}

.banner-right-form-section {
	padding-top: 60px;
	padding-bottom: 40px;
}

.featured-box-title {
	font-size: 2.5rem;
	color: #ff6900;
	font-weight: 700;
	font-family: "Inter", sans-serif;
}

.service-box-image img {
	transition: all 0.4s ease-in-out;
	transform: scale(1);
}

.service-box-wrapper:hover .service-box-image img {
	transform: scale(1.1);
}

.process-section-wrapper {
	margin: -10px;
	flex-wrap: wrap;
	width: auto;
	display: flex;
}

.process-column {
	flex: 0 0 25%;
	padding: 10px;
	margin: 0;
	position: relative;
	min-height: 1px;
}

.wdt-content-item {
	text-align: center;
	padding-top: 20px;
	transition: all 0.3s linear 0s;
	border-color: transparent;
	border-style: solid;
	border-width: 0;
	position: relative;
	z-index: 0;
	background: transparent;
}

.wdt-content-media-group {
	width: 172px;
	height: 172px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr;
	border: 1px solid #2A200F;
	border-radius: 50%;
	margin-bottom: 20px;
	position: relative;
	transition: all 0.3s linear 0s;
}

.wdt-content-image-wrapper {
	grid-column: 1 / 1;
	grid-row: 1 / 1;
	margin-bottom: 20px;
	display: inline-flex;
	background: transparent;
	border: 0;
	outline: 0;
	padding: 0;
}

.wdt-content-image {
	overflow: hidden;
	border-radius: 50%;
	display: inline-flex;
}

.wdt-content-image:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background-color: rgba(42, 32, 15, .9);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}

.wdt-content-image:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}

.wdt-content-item .wdt-content-image>a {
	display: inline-flex;
	box-shadow: none;
	text-decoration: none;
	transition: all 0.3s linear 0s;
}

.wdt-content-item .wdt-content-image>a>img {
	height: inherit;
	align-self: start;
	-webkit-border-radius: inherit;
	border-radius: inherit;
	border: none;
	box-shadow: none;
	max-width: 100%;
}

.wdt-content-icon-wrapper {
	grid-column: 1 / 1;
	grid-row: 1 / 1;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	display: inline-flex;
}

.wdt-content-icon {
	display: inline-flex;
	justify-content: inherit;
	text-align: center;
}

@keyframes boxBorderAnimation-2 {
	0% {
		background-position: 0 20px, 0 0, 100% 0, 20px 100%;
	}

	100% {
		background-position: 20px 0, 0 0, 100% 20px, 0 100%;
	}
}

.wdt-column:not(:last-child) .wdt-content-item .wdt-content-media-group .wdt-content-icon:before {
	top: 7px;
	bottom: 0;
	content: "";
	position: absolute;
	display: block;
	left: 30px;
	right: 0;
	width: 400px;
	margin: auto;
	background-image: linear-gradient(90deg, rgba(42, 32, 15, 1) 50%, transparent 50%);
	background-size: 10px 2px;
	background-color: transparent;
	height: 1px;
	pointer-events: none;
	z-index: -1;
	animation: boxBorderAnimation-2 1s infinite linear;
}

.wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	height: 1em;
	line-height: 1;
	padding: 5px;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 1em;
	z-index: 0;
	font-size: 50px;
	color: #000000;
}

.wdt-content-item:hover .wdt-content-icon-wrapper .wdt-content-icon span {
	color: #ffffff;
}

.wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span i {
	color: inherit;
	display: flex;
	font-size: inherit;
	height: 1em;
	position: relative;
	vertical-align: top;
	width: 1em;
}

.wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span svg {
	height: 62px;
	width: 62px;
	color: #000000;
}

.wdt-content-item:hover .wdt-content-icon-wrapper .wdt-content-icon span svg {
	color: #ffffff;
}

.wdt-content-subtitle {
	position: absolute;
	inset: -15px 10px auto auto;
	font-size: 0;
	width: 100%;
	letter-spacing: 0.05em;
	color: #DD4E0A;
}

.wdt-content-item .wdt-content-subtitle:before {
	content: "0" counter(service-count) " ";
	font-size: 1.375rem;
	font-weight: 600;
	background-color: #004c6a;
	color: #ffffff;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	min-width: 60px;
	min-height: 60px;
	display: flex;
	position: absolute;
	inset: -7px -22px auto auto;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}

.wdt-content-item:hover .wdt-content-subtitle:before {
	background-color: #ff6900;
}

.wdt-content-item .wdt-content-detail-group {
	position: relative;
}

.wdt-content-item .wdt-content-title h5 {
	font-size: 1.375rem;
	width: 70%;
	margin: auto;
	color: #000000;
	display: block;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}

.wdt-content-item .wdt-content-description {
	padding: 0% 10% 0% 10%;
	position: relative;
	z-index: 0;
	font-size: 0.938rem;
	color: #4c4c4c;
}

.wdt-column {
	counter-increment: service-count;
}

.wdt-content-item:hover .wdt-content-image-wrapper .wdt-content-image:after {
	opacity: 0;
}

.smart-product-box-wrapper {
	display: block;
	border-radius: 0.875rem;
	overflow: hidden;
	position: relative;
}

.smart-product-box-image {
	display: block;
	position: relative;
	width: 100%;
	height: 420px;
}

.smart-product-box-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	object-position: center;
	transition: all 0.4s ease-in-out;
	transform: scale(1);
}

.smart-product-box-content {
	position: absolute;
	left: 0.875rem;
	right: 0.875rem;
	bottom: 0.875rem;
	z-index: 2;
	background-color: rgba(2, 2, 2, 0.75);
	border-radius: 0.625rem;
	padding: 1.25rem;
	height: 110px;
}

.smart-product-box-content h4 {
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0rem;
	line-height: 100%;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0.625rem;
}

.smart-product-box-content p {
	font-size: 0.875rem;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 0rem;
	line-height: 1.2rem;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0;
}

.circle-arrow-icon {
	width: 50px;
	height: 50px;
	background-color: #ff6900;
	position: absolute;
	right: -1.625rem;
	top: -2rem;
	z-index: 3;
	border-radius: 50%;
}

.circle-arrow-icon svg {
	color: #ffffff;
	width: 18px;
	height: 18px;
}

.smart-product-box-content-title {
	display: flex;
	position: relative;
	flex-direction: column;
}

.smart-product-box-wrapper:hover .smart-product-box-image img {
	transform: scale(1.1);
}

.guide-wrapper {
	display: flex;
	position: relative;
	background-color: #000000;
	flex-direction: row;
}

.guide-wrapper-left {
	flex-grow: 0;
	flex-shrink: 0;
	width: 51.31034482%;
	display: flex;
	flex-direction: column;
}

.guide-wrapper-left img {
	width: 100%;
	max-width: 100%;
	border-radius: 0px 0px 0px 0px;
	vertical-align: middle;
	display: inline-block;
	height: auto;
	border: none;
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
	object-fit: cover;
}

.guide-wrapper-right {
	width: 48.68965518%;
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding-left: 1.7%;
	padding-right: 1.7%;
	flex-direction: column;
	flex-basis: auto;
}

.guide-wrapper-right h5 {
	font-size: 1.125rem;
	color: #ff6900;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.projects-section {
	background-color: #1e1e1e;
	background-image: url('../images/content-slider-bg.png');
	background-position: bottom left;
	background-repeat: no-repeat;
}

.project-box-wrapper .smart-product-box-content {
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.875rem;
	background: linear-gradient(180deg, transparent, #161f2d);
	height: 100%;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.project-box-wrapper .smart-product-box-content p {
	font-size: 1rem;
	line-height: 1.4rem;
}

.project-box-wrapper .smart-product-box-content h4 {
	font-size: 1.375rem;
}

.project-box-wrapper:hover .smart-product-box-content {
	transform: translateY(0);
}

.courses-section {
	padding-top: 132px;
}

.construction-man-image {
	position: absolute;
	left: -100px;
	z-index: 2;
	bottom: 0;
	width: 327px;
}

.courses-content-section {
	padding-left: 30%;
	padding-right: 11%;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	background-color: #002e40;
}

.courses-image-box {
	display: block;
	position: relative;
	overflow: hidden;
	height: 386px;
}

.case-studies-wrapper {
	display: flex;
	flex-direction: column;
	border-radius: 1.25rem;
	background-color: #ffffff;
	overflow: hidden;
}

.case-studies-image {
	display: block;
	position: relative;
	height: 380px;
	overflow: hidden;
}

.case-studies-image img {
	transition: all 0.4s ease-in-out;
	transform: scale(1);
}

.case-studies-content {
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.375rem;
}

.case-studies-content h5 {
	font-size: 1.25rem;
	color: #161f2d;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 1.25rem;
	min-height: 24px;
}

.case-studies-wrapper:hover .case-studies-image img {
	transform: scale(1.1);
}




.footer {
	display: block;
	position: relative;
	padding-top: 65px;
	padding-bottom: 20px;
	background-color: #161f2d;
}

.footer-box h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 30px;
	text-transform: capitalize;
	letter-spacing: 0rem;
	font-family: "Poppins", sans-serif;
}

.footer-menu-box ul li {
	float: left;
	display: block;
	font-size: 0.938rem;
	color: #ffffff;
	margin-bottom: 1.75rem;
	width: 100%;
	letter-spacing: 0rem;
}

.footer-menu-box ul li a {
	display: block;
	color: #d5d5d5;
	text-decoration: none !important;
}

.footer-menu-box ul li a:hover {
	color: #ff6900;
}

.footer-menu-box ul.list-50 li {
	width: 50%;
}

.footer-social {
	display: block;
	margin: 0;
}

.footer .social-icon a {
	width: 34px;
	height: 34px;
	border: none !important;
	background-color: #ff6900;
}

.footer-social .social-icon {}

.footer-social .social-icon svg {
	width: 1.125rem;
	height: 1.125rem;
	color: #000000;
}

.footer-social .social-icon a.facebook svg {}

.footer-social {}

.footer-social .social-icon a {
	color: #000;
}

.footer-social .social-icon a:hover {
	background-color: #fff;
	border-color: #fff;
}

.footer .content-icon-btn .icon-btn {
	color: #000000;
	font-size: 16px;
	font-weight: 400;
}

.footer .content-icon-btn .icon-btn span {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.0rem;
}

.footer .content-icon-btn .icon-btn i svg {
	width: 34px;
	height: 34px;
}

.footer .content-icon-btn .icon-btn i {
	margin-right: 1rem;
}

.footer-bottom-container {
	display: block;
	padding-top: 20px;
	border-top: 1px solid #646464;
	margin-top: 60px;
}



.icon-with-content-box {
	font-size: 0.875rem;
	color: #ffffff;
	gap: 0.5rem;
	text-align: start;
}

.icon-with-content-box svg {
	color: #ff6900;
	width: 1.25rem;
	height: 1.25rem;
}

.flash-image svg {
	color: #ff6900;
	width: 1.375rem;
	height: 1.375rem;
}

.text-orange {
	color: #ff6900 !important;
}

.curved-image-box {
	display: block;
	border-radius: 1.25rem;
	overflow: hidden;
	margin: 0px -15px 0 15px;
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .4s;
	transform: perspective(350px) rotateX(0deg) rotateY(13deg);
}

.content-icons-box {
	font-size: 0.875rem;
	font-weight: 400;
	color: #585858;
}

.content-icons-box span {
	font-size: 1.125rem;
	color: #000000;
	font-weight: 600;
}

.content-icons-box svg {
	width: 64px;
	height: 64px;
	color: #ff6900;
}

.our-features-wrapper {
	display: flex;
	gap: 2rem;
}

.our-feature {
	display: flex;
	gap: 1rem;
	align-items: start;
	border-right: 1px solid #C4C4C4;
	padding-right: 2rem;
	flex-direction: column;
}

.our-feature:last-child {
	border-right: none;
	padding-right: 0;
}

.content-inner-wrapper {
	background-color: #f1f1f1;
	padding: 1.25rem 2.5rem;
	display: block;
	position: relative;
}

.content-orange-top-border {
	border-top: 3px solid #ff6900;
}

.bg-blue {
	background-color: #161f2d;
}

.cta-box {
	display: flex;
	align-items: center;
}

.cta-box .cta-content {
	flex: 1;
}

.cta-box .cta-img {
	position: relative;
	width: 100%;
}

.cta-box .cta-img img {
	display: block;
	width: 100%;
	clip-path: polygon(0 0, calc(100% - 205px) 0, 100% 100%, 205px 100%);
	position: relative;
	z-index: 3;
}

.cta-box .cta-img:before,
.cta-box .cta-img:after {
	content: "";
	position: absolute;
	left: -50px;
	top: 0;
	bottom: 0;
	width: 94%;
	background-color: #e36006;
	clip-path: polygon(0 0, calc(100% - 205px) 0, 100% 100%, 205px 100%);
	transform: rotateY(180deg);
	z-index: 2;
}

.cta-box .cta-img:after {
	opacity: .2;
	left: -90px;
	z-index: 1;
	width: calc(94% + 80px);
}

.cta-box .cta-right-img {
	align-self: flex-end;
}

.content-icon-btn .icon-btn {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}

.content-icon-btn .icon-btn span {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.0rem;
	font-family: "Poppins", sans-serif;
}

.content-icon-btn .icon-btn i svg {
	width: 44px;
	height: 44px;
	color: #fff;
}

.content-icon-btn .icon-btn i {
	margin-right: 12px;
}

.cusrved-left-bg {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	width: 100%;
	padding: 3.125rem;
	min-height: 400px;
}

.cusrved-left-bg:before,
.cusrved-left-bg:after {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	content: "";
	background-color: rgba(0, 0, 0, 1.0);
	width: 100%;
	clip-path: polygon(0 0, 100% 0, calc(100% - 200px) 100%, 0% 100%);
	height: 100%;
}

.cusrved-left-bg:before {
	max-width: calc(100% - 20px);
}

.cusrved-left-bg:after {
	opacity: .85;
	z-index: 1;
	width: 100%;
	background-color: #ff6900;
}

.why-choose-us-section .our-feature {
	border: none !important;
	padding-right: 0 !important;
}

.grid-2x2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.custom-padding-end-200 {
	padding-right: 200px;
}

.why-choose-us-icons-wrapper .content-icons-box {
	color: #919191;
}


.gallery-section ul {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	font-weight: 600;
	margin: 0 auto 20px;
}

.gallery-section ul li {
	padding: 10px 20px;
	margin: 0;
	cursor: pointer;
	transition: 0.5s linear;
	color: #747d8c;
}

.gallery-section ul li:hover {
	color: #2f3542;
}

.grid a {
	display: block;
	overflow: hidden;
	border-radius: 0.625rem;
}

.grid .img-fluid {
	width: 100%;
	transition: 0.5s linear;
}

.grid .img-fluid:hover {
	transform: scale(1.1);
}

.grid-two-column {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 2 columns */
	gap: 1.5rem 1rem;
}

.grid-icon-text {
	display: flex;
	gap: 0.625rem;
	align-items: center;
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
}

.grid-icon {
	min-width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid-icon svg {
	width: 20px;
	height: 20px;
	color: #ff6900;
}

.grid-three-column-list {
	display: block;
	position: relative;
}

.grid-three-column-list ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 3 columns */
	gap: 1.5rem 1rem;
	padding: 0;
	margin: 0;
}

.grid-three-column-list ul li {
	display: flex;
	gap: 0.625rem;
	align-items: start;
	color: #1e1e1e;
	font-size: 1rem;
	font-weight: 500;
}

.icons-without-border .our-feature {
	border: none !important;
	padding-right: 0 !important;
	align-items: center;
	text-align: center;
}

.content-caption-wrapper {
	position: relative;
	z-index: 2;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.65);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 3.75rem;
}

.images-box-warrper-cover {
	overflow: hidden;
	width: 100%;
}

.sector-inner-box {
	padding: 3rem;
}


.contact-icon-section .icon-btn {
	font-size: 1rem;
	font-weight: 500;
	color: #060606;
}

.contact-icon-section .ph-number {
	font-size: 1.25rem;
	font-weight: 500;
	color: #060606;
}

.contact-icon-section .btn-svg-icon {
	width: 3.375rem;
	height: 3.375rem;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 3.375rem;
	border-radius: 50%;
	margin-right: 0rem;
	background-color: #232150;
	margin-bottom: 1rem;
}

.contact-icon-section .btn-svg-icon svg {
	width: 1.688rem;
	height: 1.688rem;
	color: #ff6900;
}

.map-section iframe {
	width: 100%;
	max-height: 494px !important;
	display: block;
	height: 494px;
}
.contact-form form p{
	margin-bottom: 0 !important;
}