body {
	background: #fff;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #636363;
	letter-spacing: 0.02rem;
	line-height: 1.2;
}
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;
	font-optical-sizing: auto;
	font-style: normal;
}
.ff-poppins {
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 0px 0;
	background-color: #fff;
}
.header-contact {
	padding: 6px 0;
	border-bottom: 1px solid #c3c3c3;
}
.icon-btn {
	font-size: 14px;
	color: #333333;
	border: none;
	padding: 0;
	letter-spacing: 0.02rem;
	font-weight: 400;
}
.icon-btn i {
	margin-right: 6px;
}
.icon-btn i svg {
	width: 23px;
	height: 23px;
	color: #a51d1a;
}
.icon-btn i svg path {
	fill: #a51d1a;
}
.btn-svg-icon {
}
.icon-btn span {
	font-size: 13px;
	font-weight: 600;
	color: #333333;
	display: block;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}
.icon-btn:hover {
	color: #a51d1a
}
.sub-title-btn-inner.ph-number {
	font-size: 21px;
	color: #a51d1a;
	font-weight: 600;
	font-family: "Inter", sans-serif;
}
/* 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: 20px;
	flex: 1;
	justify-content: start;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04rem;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #231f20;
	padding: 0.5rem 2.125rem;
	display: block;
	background-color: transparent;
}
.nav ul li a:hover,  .nav ul li a:focus {
	color: #a51d1a;
	background-color: transparent;
}
/* SUBMENU STYLES */

.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}
.nav ul li .submenu li {
	padding: 0;
}
.nav ul li .submenu li a {
	display: block;
	padding: 8px 20px;
	white-space: nowrap;
}
.nav ul li.has-submenu:hover>.submenu {
	display: block;
}
.submenu-toggle {
	display: none;/* hidden on desktop */

}
/* LOGO & HAMBURGER */

.logo-left {
	display: none;
	align-items: center;
}
.logo-left img {
	height: 40px;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: absolute;
	right: 20px;
	top: 42px;
	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: 767px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.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: 0px;
	z-index: 1000;
}
.nav.show {
	display: flex;
}
.nav-left {
	flex-direction: column;
	align-items: flex-start;
}
.nav ul {
	flex-direction: column;
	gap: 0;
}
.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;
}
.hero-banner-section .container {
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 100;
}
.banner-caption h1 {
	font-size: 52px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0.06rem;
	font-weight: 700;
}
.banner-caption h2 {
	font-size: 49px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0.06rem;
	font-weight: 600;
}
.banner-caption h4 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	margin: 0;
	line-height: 1.8rem;
	letter-spacing: 0.04rem;
	font-family: "Poppins", sans-serif;
}
.banner-caption p {
	font-size: 18px;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 1.6rem;
	letter-spacing: 0.02rem;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.text-yellow {
	color: #ffcf09 !important;
}
.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: #fff;
	background-color: #a51d1a;
	font-size: 18px;
	letter-spacing: 0.04rem;
	padding: 1rem 2rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	font-family: "Poppins", 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: #c92521;
	color: #fff;
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
.white-border {
	border-color: #fff;
	color: #fff;
}
.black-border {
	border-color: #000;
	color: #000;
}
.big-btn {
	padding: 1rem 2rem;
}
.btn-with-arrow {
	padding: 1rem 2rem;
}
.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: #000;
	color: #8b181b;
}
.custom-btn-black:hover {
	background-color: #8b181b;
	color: #000;
}
.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: rgba(0, 0, 0, .70);
}
.grey-bg {
	background-color: #f7f7f7;
}
.padding-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.pt-60 {
	padding-top: 60px;
}
.pb-135 {
	padding-bottom: 135px;
}
.how-to-work-box {
	border-radius: 10px;
	padding: 20px 25px;
}
.how-to-work-icon svg {
	display: block;
	width: 53px;
	height: 53px;
}
.black-bg {
	background-color: #000000;
}
.red-text {
	color: #a51d1a;
}
.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;
}
.how-to-work-icon img {
	display: block;
	width: 100%;
	max-width: 100px;
	height: auto;
}
.why-choose-us-section .container {
	position: relative;
	z-index: 11;
	margin-top: -115px;
}
.red-bg {
	background-color: #a51d1a;
}
.how-to-work-section .container {
}
.heading {
	position: relative;
	display: block;
	text-align: left;
}
.heading h2 {
	font-size: 35px;
	color: #333333;
	line-height: 100%;
	letter-spacing: 0.08rem;
	font-weight: 700;
}
.sub-heading {
	display: block;
	position: relative;
	color: #a81e25;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-family: "Poppins", sans-serif;
	width: 100%;
	margin: 10px 0;
	padding-bottom: 10px;
	font-weight: 600;
}
.sub-heading:before {
	content: "";
	height: 2px;
	background-color: #a81e25;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 60px;
	bottom: 0;
	margin: 0 auto;
}
.heading-alt .sub-heading:before {
	right: inherit;
	left: 0;
}
.service-box-wrapper {
	display: block;
	position: relative;
}
.service-box-wrapper-image {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}
.service-box-wrapper-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: 3s;
	transform: scale(1);
}
.service-box-content {
	width: 100%;
	max-width: calc(100% - 46px);
	background-color: #fff;
	padding: 3.25rem 1.25rem 1.25rem;
	position: relative;
	display: block;
	z-index: 1;
	margin: -20% auto 25px;
	border-radius: 1rem;
}
.service-box-wrapper:hover .service-box-wrapper-image img {
	transform: scale(1.1);
}
.service-box-content h4 {
	font-size: 20px;
	color: #181818;
	font-weight: 600;
	letter-spacing: 0.02rem;
	line-height: 100%;
	margin-bottom: 15px;
	font-family: "Poppins", sans-serif;
}
.service-box-content p {
	font-size: 14px;
	line-height: 1.2rem;
	color: #181818;
	margin-bottom: 0 !important;
	min-height: 60px;
}
.read-more {
	font-size: 14px;
	color: #a81e25;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.1rem;
	text-decoration: none !important;
}
.read-more:hover {
	color: #000;
}
.read-more i {
	margin-top: 2px;
}
.circle-icon {
	position: absolute;
	right: 0;
	left: 0;
	margin: -36px auto 0;
	top: 0;
	z-index: 2;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgb(110, 3, 8);
	background: -moz-linear-gradient(0deg, rgba(110, 3, 8, 1) 0%, rgba(247, 61, 61, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(110, 3, 8, 1) 0%, rgba(247, 61, 61, 1) 100%);
	background: linear-gradient(0deg, rgba(110, 3, 8, 1) 0%, rgba(247, 61, 61, 1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6e0308", endColorstr="#f73d3d", GradientType=1);
	text-align: center;
	color: #fff;
}
.circle-icon svg {
	display: block;
	width: 50px;
	height: 50px;
}
.white-bg {
	background-color: #fff;
}
.red-border {
	border-color: #a51d1a;
	color: #a51d1a;
}
.red-border:hover {
	color: #000;
	border-color: #000;
}
.call-to-action-section {
	background-image: url(../images/slogan-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
}
.white-border:hover {
	border-color: #fff;
	background-color: #fff !important;
	color: #a51d1a
}
.testimonial-slider .item {
	padding-top: 40px;
}
.testimonial-box {
	display: block;
	background-color: #f0f0f0;
	padding: 20px 15px;
	position: relative;
	min-height: 200px;
	border-radius: 10px;
	margin: 0 10px;
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 20px;
	color: #ff8e00;
}
.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}
.font-13 {
	font-size: 13px;
	line-height: 1.2rem;
}
.quote-icon svg {
	width: 26px;
	height: 26px;
	display: block;
}
#testimonial .slider-arrow.nav-button-next {
	right: -6px;
}
#testimonial .slider-arrow.nav-button-prev {
	left: -6px;
}
.slider-arrow.nav-button-prev {
	left: -10px;
	transition: transform 1s linear;
}
.slider-arrow.nav-button-next {
	right: -10px;
}
.disabled .slider-arrow {
	background-color: #eeeeee;
}
.services-carousal .owl-nav button.disabled {
	opacity: 1;
}
#testimonial .item {
	padding: 20px 15px;
}
ul.footer-menu-section {
	padding: 0;
	margin: 0;
}
ul.footer-menu-section li {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	font-weight: 600;
	color: #231f20;
	padding: 0 15px;
	letter-spacing: 0.08rem;
}
ul.footer-menu-section li a {
	color: #231f20;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
}
ul.footer-menu-section li a:hover {
	color: #a51d1a;
}
.footer-copy-text {
	font-size: 14px;
	color: #151515;
	font-weight: 400;
	letter-spacing: 0.02rem;
	text-transform: capitalize;
}
.footer-copy-text p {
	line-height: 1.2rem;
}
.footer {
	display: block;
	position: relative;
	background-color: #fff;
	padding: 60px 0 40px;
}
.footer-bottom {
	padding-top: 20px;
	font-family: "Poppins", sans-serif;
	border-top: 2px solid #cccece;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #242424;
	padding: 0 20px;
	font-size: 14px;
	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: #a51d1a;
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #a51d1a;
	border-radius: 50%;
	display: block;
	color: #a51d1a;
}
.social-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}
.social-icon svg path {
	fill: #a51d1a;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover {
	border-color: #262626;
}
.social-icon a:hover svg path {
	fill: #262626;
}
.footer-top {
	background-color: #a51d1a;
	padding: 30px 0;
}
.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;
}
.quote-btn:hover {
	background-color: #333;
}
.cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}
.custom-breadcrumb .breadcrumb li {
	color: #a51d1a;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 300;
}
.custom-breadcrumb .breadcrumb li a {
	color: #fff;
}
.custom-breadcrumb .breadcrumb-item+.breadcrumb-item:before {
	color: #fff;
}
.icon-text a {
	font-size: 17px;
	color: #fff;
	text-decoration: none !important;
	font-weight: 500;
}
.icon-text a span {
	font-size: 18px;
	color: #323232;
	display: block;
	font-weight: 500;
}
.icon-text {
	line-height: 1.6rem;
}
.icon-text .icon svg {
	width: 30px;
	height: 30px;
}
.icon-text .icon svg path {
	fill: #a51d1a;
}
.address-box {
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.02rem;
}
.address-box span {
	color: #323232;
	font-weight: 500;
	display: block;
	margin-bottom: 0px;
}
.contact-form-box {
	display: block;
}
.form-heading h2 {
	font-size: 32px;
	color: #FFF;
	margin-bottom: 10px;
	font-weight: 600;
	letter-spacing: 0.02rem;
	line-height: 2rem;
}
.form-heading p {
	font-size: 14px;
	color: #FFF;
	margin-bottom: 0px;
	font-weight: 300;
	letter-spacing: 0.02rem;
	line-height: 1.2rem;
}
.contact-form-box .form-control {
	border: 1px solid #fff;
	box-shadow: none !important;
	padding: 15px 20px;
	height: 48px;
	font-size: 15px;
	color: #fff;
	background: transparent !important;
}
.contact-form-box textarea.form-control {
	height: 126px;
	resize: none;
}
 .contact-form-box .form-control::-webkit-input-placeholder {

	/* WebKit, Blink, Edge */

	color: #fff;
}
 .contact-form-box .form-control:-moz-placeholder {

	/* Mozilla Firefox 4 to 18 */

	color: #fff;
 opacity: 1;
}
 .contact-form-box .form-control::-moz-placeholder {

	/* Mozilla Firefox 19+ */

	color: #fff;
 opacity: 1;
}
 .contact-form-box .form-control:-ms-input-placeholder {

	/* Internet Explorer 10-11 */

	color: #fff;
}
.submit-btn {
	font-weight: 600;
	letter-spacing: 0.04rem;
}
.map-section iframe {
	width: 100%;
	display: block;
}
.ff-ibm {
	font-family: "Poppins", sans-serif;
}
.content-box ol li {
	list-style: decimal;
}
.content-box ol li {
	margin-top: 1rem;
	line-height: 1.2rem;
}
.curve-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 101;
}
.curve-bg img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
.icon-box-section {
	border-radius: 8px;
	background-color: #fff;
	text-align: center;
	padding: 30px 20px;
}
.icon-box-icon {
}
.icon-box-icon svg {
	display: inline-block;
	height: 80px;
	width: auto;
	vertical-align: top;
}
.box-small-heading {
	font-size: 22px;
	color: #1f1f1f;
	font-weight: 600;
	letter-spacing: 0.02rem;
	margin: 25px 0 16px;
}
.icon-box-section p {
	font-size: 15px;
	color: #000000;
	letter-spacing: 0.02rem;
	margin-bottom: 0;
}
.contact-left-section {
	background: url(../images/contact-left-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.contact-right-section {
	background: url(../images/contact-right-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.contact-left-section:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.85);
}
.contact-wrapper {
	z-index: 2;
	padding: 200px 0 80px;
}
.top-curved {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.top-curved img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
.work-with-us-section {
	background-color: #000000;
}
.custom-padding-0 {
	padding: 0;
}
.imge {
	width: 100%;
}
.img-wrap img {
	height: 100%;
	object-fit: cover;
}
.work-with-us-section {
	max-height: 428px;
	overflow: hidden;
}
.black-bg-box-with-separator {
	padding: 95px 0;
}
.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: 5px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: 0.5s linear;
	color: #747d8c;
}
.list.active,  .gallery-section ul li:hover {
	color: #2f3542;
	border-bottom: 2px solid #2f3542;
}
.products {
}
.image-item {
	overflow: hidden;
}
.image-item a {
	overflow: hidden;
	display: block;
	border-radius: 8px;
}
.image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: 0.5s linear;
}
.image-item:hover img {
	transform: scale(1.1);
}
.contact-section {
	background-color: #000000;
}
.contact-section iframe {
	width: 100%;
	height: 523px;
	display: block;
}
.header-nav-section {
	padding: 7px 0;
}
.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: #a51d1a;
	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;
}
.contact-form {
	background-color: rgba(255, 255, 255, 0.90);
	padding: 30px;
	border-radius: 10px;
}
.contact-form .form-control,  .contact-form .form-select {
	height: 45px;
	border: 1px solid #a1a1a1;
	background-color: transparent;
	font-size: 15px;
	font-family: "Inter", sans-serif;
}
.contact-form textarea {
	height: auto !important;
}
.form-title {
	font-size: 30px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 0px;
	text-align: center;
	text-transform: capitalize;
}
.contact-form p {
	font-size: 16px !important;
	color: #666666 !important;
	font-weight: 400 !important;
}
.cover-bg-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.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: 50px 25px;
}
.footer-social {
	height: 1px;
	background-color: #a51d1a;
	display: block;
	margin: 50px 0;
}
.footer-social .social-icon {
	background-color: #fff;
	margin-top: -4px;
	padding: 0 30px;
}
.about-box {
	padding: 40px;
	position: relative;
}
.about-box:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 10px;
	background-color: #a51d1a;
}
.about-text {
	position: relative;
	width: 100%;
	max-width: 117px;
	font-size: 117px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	color: #dadada;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #dadada;
	font-family: "Poppins", sans-serif;
	writing-mode: vertical-rl;
	/* makes text vertical */

	line-height: 100%;
}
.about-wrapper-text {
	padding-left: 50px;
}
.images-box-warrper-cover {
	overflow: hidden;
	width: 100%;
}
.bg-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.image-cover {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.small-heading {
	font-size: 22px;
	font-weight: 600;
	color: #141414;
}
.sector-inner-box {
	padding: 5rem;
}
.featured-box-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 82px;
	height: 82px;
	background-color: #e8c6c6;
	border-radius: 50%;
	color: #000;
}
.featured-box-icon svg {
	margin-top: -26px;
	width: 68px;
	height: 68px;
}
.featured-box-wrapper {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	position: relative;
	border-right: 1px solid #e5a3a9;
}
.featured-box-title {
	font-size: 22px;
	color: #272727;
	font-weight: 600;
}
.featured-box:last-child .featured-box-wrapper {
	border-right: none;
}
.looking-section {
	background-color: #a51d1a;
	display: flex;
	flex-direction: row;
}
.looking-left {
	flex-grow: 0;
	flex-shrink: 0;
	width: 37.158%;
	display: flex;
	flex-direction: column;
}
.looking-left-inner {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAoCAYAAAB5ADPdAAACEUlEQVRYhc2XXUtUQRyHH1fxhZXwwhUNggoTxJcLw4gMiYiiEhURL0TwBXH3wutQRMrwA3jt1/LGrqPoG9SNIKOzcDr//zk7c+bs6HP5O7OzD7+dnTnTUasNE0AXsA+chUySpiISP5aAU2DoPkk1gCrwRTwJIOTnewb8MHMAf4GnwB8xqgAhTdWtkKEPOBAjClK0qV7gJzCYyP4Bo8AvMdqTok2tpoSaoodiZESphkhu2QUeidSTIlJTwJxIb+kBjkQaQSqrpSbbwGOReuAr1Q9siPR/ukPb8pVaBx6IVLJl960oUnWR6Jgz8Vh9UrLUC2BGpNmYn3ks82kOPlKtFniawm257ugDwG97nPhwBUwClz4fcm1qs4CQoRP4KtIWuEiZQ9d1gWusARNKnomL1DwwLlK/7/Bqy0XKd4FrmAN8WslVWkmZ19yVcKebJfBNpBm0ktqxx0YZLLvuc3lS5tmeSIvj3Fae1AfgiUjDWABmQ6TKWOBpTFsnInWUMm+Pn0RaDh+Bl3kzZUnt2rOrXeS2pUl1Wal28h54nTW/JrUIPBRp+WS2pUm1Y4FrvAXeKLmQMpfJd2JU+1DbSks1ElfxGMxrJSSleu17U2xEW0kp7Soeg1f29FClYi1wje+aVN5VPAbmpvQ5LXWXLTU5af7JKo5X8Rg8txv3jZTrVTwG5n2ro7Na7T8HRu6J1DBwcQ2gHCz6B7iYRgAAAABJRU5ErkJggg==");
	margin: -40px 0 0 -3px;
	padding: 0 20px 0 0;
	background-position: top right;
	background-repeat: no-repeat;
	height: 100%;
}
.looking-left-inner 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, 80% 100%, 0% 100%);
	object-fit: cover;
}
.looking-right {
	width: 62.842%;
	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;
}
.grid .img-fluid {
	width: 100%;
	border-radius: 0.625rem;
}
.footer-bottom-wrapper {
	background-color: #a51d1a;
	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;
}
.custom-logo {
	max-height: 88px;  /* adjust this value */
	width: auto;
	height: auto;
}
