:root {
	--orange: #f7931d;
	--white: #fefefe;
	--black: #2d2f39;
	--grey: #e6e7e8;
  }
  * {
	padding: 0;
	margin: 0;
  }
  .logo {
	width: 90px;
  }
  
  .description {
	text-align: left;
  }
  
  .description h1 {
	font-weight: bold;
	text-transform: uppercase;
  }
  .vision{
  
  background-color: var(--grey) !important;
  
  
  }
  .header-bg {
	  position: relative;
	  background-image: url('/photos/ourClients/construction-silhouette.jpg'); /* Add your background image path here */
	  background-size: cover;
	  background-position: center;
	}
	
	.header-bg::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background: rgba(0, 0, 0, 0.5); /* Adjust the rgba values to change the shading color and transparency */
	  z-index: 1;
	}
	
	.header-bg .about-text {
	  position: relative;
	  z-index: 2;
	}
  
  .about h1{
	color: var(--orange) !important;
  }
  p {
	color: var(--black) !important;
  }
  
  .form-area {
	  padding-top: 7%;
  }
  .row.single-form {
	  box-shadow: 0 2px 20px -5px rgba(0,0,0,0.5);
  }
  .left {
	  background: var(--orange);
	  padding: 300px 108px;
  }
  .left h2 {
	  color: #fff;
	  font-weight: 700;
	  font-size: 30px;
  }
  .left h2 span {
	  font-weight: 100;
  }
  .single-form{
	  background: #fff;
  }
  .right {
	  padding: 70px 100px;
	  position: relative;
  }
  .right i {
	  position: absolute;
	  font-size: 80px;
	  left: -27px;
	  top: 40%;
	  color: #fff;
  }
  .form-control {
	  border: 2px solid #000;
  }
  .right button {
	  border: none;
	  border-radius: 0;
	  background: #252525;
	  width: 180px;
	  color: #fff;
	  padding: 15px 0;
	  display: inline-block;
	  font-size: 16px;
	  margin-top: 20px;
	  cursor: pointer;
  }
  .right button:hover{
	  background-color: #252525;
  }
  
  
  /*responsive*/
  
  @media (min-width:768px) and (max-width:991px){
	  .right i {
	  top: -52px;
	  transform: rotate(90deg);
	  left: 50%;
  }
  }
  
  @media (max-width:767px){
	  .left {
	padding: 90px 15px;
	text-align: center;
  }
  .left h2 {
	font-size: 25px;
  }
  .right {
	padding: 25px;
  }
  .right i {
	top: -52px;
	transform: rotate(90deg);
	left: 46%;
  }
	  .right button {
	  width: 150px;
	  padding: 12px 0;
  }
	  
  }
  
  *{
	  padding: 0;
	  margin: 0;
	  box-sizing: border-box;
	}
	.footer {
	  background-color: #1a1a1a;
	  padding: 20px 10px;
	  bottom: 0;
	  width: 100%;
	  color: #ffffff;
  }
  
  .footer-content {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  max-width: 1200px;
	  margin: 0 auto;
  }
  
  .footer-left,
  .footer-right {
	  display: flex;
	  align-items: center;
  }
  
  .footer-left .footer-link {
	  color: #ffffff;
	  text-decoration: none;
	  /* margin-right: 8px; */
  }
  
  .footer-left .footer-link:hover {
	  text-decoration: underline;
  }
  
  .footer-icons {
	  display: flex;
	  align-items: center;
  }
  .footer-icons i {
	color: var(--white) !important; 
   
  }
  
  .footer-icon {
	  margin: 0 10px;
  }
  
  .footer-icon img {
	  width: 20px;
	  height: 20px;
  }
  
  .footer-right {
	  font-size: 14px;
	  color: #b3b3b3;
  }
  
  @media (max-width: 768px) {
	  .footer-content {
		  flex-direction: column;
		  text-align: center;
	  }
  
	  .footer-left,
	  .footer-right {
		  flex-direction: column;
		  margin-bottom: 10px;
	  }
  
   
  
	  .footer-icons {
		  margin-bottom: 10px;
	  }
  }
  
  
	/* RTL Support */
  
	
	[dir="rtl"] .left {
	  padding: 380px 108px;
	  text-align: right;
	}
	
	[dir="rtl"] .right {
	  padding: 70px 100px;
	}
	
	[dir="rtl"] .right i {
	  right: -28px;
	  left: auto;
	  transform: rotate(180deg);
	}
	
	@media (min-width:768px) and (max-width:991px) {
	  [dir="rtl"] .right i {
		left: auto;
		right: 50%;
		transform: rotate(90deg);
  
	  }
	}
	
	@media (max-width:767px) {
	  [dir="rtl"] .left {
		padding: 90px 15px;
		text-align: center;
	  }
	  [dir="rtl"] .right {
		padding: 25px;
	  }
	  [dir="rtl"] .right i {
		left: auto;
		right: 46%;
		transform: rotate(90deg);
  
	  }
	}