body{
   font-family:'Poppins', sans-serif !; 
}
*{
    margin: 0;
    padding: 0;
    
}
img{
	width: 100%;
}
li{
	list-style: none;
}
/* Navbar Start */
.profile-menu { 
	.dropdown-menu{
	  right: 0;
	  left: unset;
	}
	.fa-fw{
	  margin-right: 10px;
	}  
  }
  .toggle-change{
	  &::after {
	  border-top: 0;
	  border-bottom: .3em solid;
	  }
  } 
  
  @media(min-width:992px){
	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		justify-content: end !important;
	}
  }
  .navbar-brand img{
	width: 18%;
  }
  @media(min-width:320px){
	.navbar-brand img{
		width: 50%;
	  }
  }
  @media(min-width:690px){
	.navbar-brand img{
		width: 100%;
	  }
  }
  @media(min-width:1020px){
	.navbar-brand img{
		width: 25%;
	  }
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-dark .navbar-toggler {
    border-color: transparent;
   }
   .navbar-background{
		background-color: #fff5e1;
   }
   #navbar-background{
	display: none;
   }
   @media(min-width:320px){
	#navbar-background{
		display: block;
	   }
   }
   @media(min-width:690px){
	#navbar-background{
		display: none;
	   }
   }
   @media(min-width:1020px){
	#navbar-background{
		display: none;
	   }
   }
   .navbar-dark .navbar-nav .nav-link {
    color: rgb(0 0 0);
}
.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link {
    color: #FFAA05;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 1, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #BDBDBD;
}
.navbar-nav .nav-item .nav-link{
	background-color: transparent;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	color: #000;
}
@media(min-width:992px){
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 1.0rem;
		font-family: "Lato", sans-serif;
	}
}
#header{
	display: block !important;
}
@media(min-width:320px){
	#header{
		display: none !important;
	}
}
@media(min-width:690px){
	#header{
		display: block !important;
	}
}
@media(min-width:1020px){
	#header{
		display: block !important;
	}
}
.navbar {
	padding: 0px 30px 0px 30px;
}
  @media(min-width:320px){
  .navbar {
		padding: 0px 0px 0px 0px;
	}
  }
  @media(min-width:690px){
  .navbar {
		padding: 0px 30px 0px 30px;
	}
  }
   @media(min-width:1020px){
	.navbar {
		padding: 0px 30px 0px 30px;
	}
   }
  .navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: end;
  }
  
  .navbar li {
	position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;          /* fixed – “end” is incorrect */
    padding: 10px 20px;
    color: #111111;               /* charcoal black (cleaner than #000) */
    font-size: 14px;              /* updated as per header UI rules */
    font-weight: 500;             /* modern, not too heavy */
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: color 0.3s ease;  /* smoother transition */
  }
  
  .navbar a i,
  .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
	color: #FFAA05;
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
	background: #009970;
	padding: 10px 25px;
	margin-left: 30px;
	margin-right: 15px;
	border-radius: 50px;
	color: #fff;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
	color: #fff;
	background: #00b383;
  }
  
  .navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
	min-width: 200px;
  }
  
  .navbar .dropdown ul a {
	padding: 10px 20px;
	text-transform: none;
	font-weight: 500;
  }
  
  .navbar .dropdown ul a i {
	font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
	color: #009970;
  }
  
  .navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
  }
  
  @media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}
  
	.navbar .dropdown .dropdown:hover>ul {
	  left: -100%;
	}
  }
  #header {
  background: #ffffff; /* white background */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* soft shadow */
    transition: all 0.5s ease;
    z-index: 997;
    top: 0px;
  }
  
  #header .header-container {
	background: #fff;
	border-radius: 5px;
  }
  
  #header.header-scrolled {
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	top: -10px;
  }
  
  #header .logo {
	padding: 15px 30px 15px 30px;
  }
  @media(min-width:320px){
	#header .logo {
	padding: 20px 30px 20px 30px;
  }
  }
  @media(min-width:690px){
	#header .logo {
	padding: 15px 0px 15px 15px;
  }
  }
  @media(min-width:1020px){
	#header .logo {
	padding: 15px 30px 15px 30px;
  }
  }
  #header .logo h1 {
	font-size: 26px;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
  }
  
  
  @media (max-width: 600px) {
	#header {
	  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	  top: 0;
	  background: #009970;
	}
  
	#header.header-scrolled,
	#header .header-container {
	  background: #009970;
	}
  
	#header .logo {
	  padding-left: 0;
	}
  
	#header .logo h1 {
	  font-size: 24px;
	}
  }
/* Navbar End */






/* Hero section Start url(../images/hero-section-background.webp);*/

@media(min-width:320px){

	.hero-section{
	background-image: url(../images/mobile.jpg);
	min-height: 80vh;
	background-color: #661c10;
	padding: 20px;
	background-size:cover;
	margin-top: 30px;
	
}
}
@media(min-width:690px){

	.hero-section{
	background-image: url(../images/mobile.jpg);
	min-height: 80vh;
	background-color: #661c10;
	padding: 20px;
	background-size:cover;
	margin-top: 30px;
	
}
}
@media(min-width:1020px){
    
    .hero-section{
	background-image: url(../images/web.jpg);
	min-height: 80vh;
	background-color: #661c10;
	padding: 20px;
	background-size:cover;
	
}
    
	.hero-section{
		min-height: 100vh;
	}
}
.hero-section-all{
	justify-content: space-between;
	padding-top: 150px;
	height: initial;
	min-height: initial;
}
@media(min-width:320px){
	.hero-section-all{
		padding-top: 100px;
	}
}
@media(min-width:690px){
	.hero-section-all{
		padding-top: 150px;
	}
}
@media(min-width:1020px){
	.hero-section-all{
		padding-top: 150px;
	}
}
.hero-section-heading{
	color: #fff;
	font-size: 45px;
	line-height: 70px;
	text-align: left;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.hero-section-heading{
		font-size: 25px;
		line-height: 30px;
	}
}
@media(min-width:690px){
	.hero-section-heading{
		font-size: 30px;
		line-height: 55px;
	}
}
@media(min-width:1020px){
	.hero-section-heading{
		font-size: 45px;
		line-height: 70px;
	}
}
.hero-section-heading-area{
	color: #111111;
}
.hero-section-lists{
	display: flex;
    flex-direction: column;
    gap: 15px;
	margin-top: 30px !important;
}
@media(min-width:320px){
	.hero-section-lists{
		margin-top: 0px !important;
	}
}
@media(min-width:690px){
	.hero-section-lists{
		margin-top: 30px !important;
	}
}

@media(min-width:1020px){
	.hero-section-lists{
		margin-top: 30px !important;
	}
}
.hero-section-lists li{
	color: #fff;
    font-size: 22px;
    font-weight: 400;
	display: flex;
    align-items: center;
    gap: 15px;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.hero-section-lists li{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.hero-section-lists li{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.hero-section-lists li{
		font-size: 22px;
	}
}
.hero-section-button{
	margin: 40px 0px 0px 30px;
	background:#8A1E1E;
    color: #111111;
	font-weight: 600;
	font-size: 16px;
    padding: 0 25px;
	text-decoration: none;
    border-radius: 4px;
	font-family: "Poppins", sans-serif;
    display: flex;
    max-width: fit-content;
    line-height: 50px;
}
@media(min-width:320px){
	.hero-section-button{
		font-size: 12px;
        padding: 0px 15px;
        line-height: 35px;
		margin: 0px;
	}
}
@media(min-width:690px){
	.hero-section-button{
        font-size: 12px;
        padding: 0 20px;
        line-height: 50px;
		margin: 40px 0px 0px 30px;
	}
}
@media(min-width:1020px){
	.hero-section-button{
	   font-size: 16px;
       padding: 0 25px;
	   line-height: 50px;
	   margin: 40px 0px 0px 30px;
	}
}
.hero-section-button:hover{
	color: #00000082;
}
.hero-section-second-half-all{
	justify-content: space-between;
	padding-top: 188px;
	height: initial;
	min-height: initial;
}
@media(min-width:320px){
	.hero-section-second-half-all{
		padding-top: 25px;
	}
}
@media(min-width:690px){
	.hero-section-second-half-all{
		padding-top: 150px;
	}
}
@media(min-width:1020px){
	.hero-section-second-half-all{
		padding-top: 150px;
	}
}
.hero-section-second-half-all-content{
	padding: 0 25px 40px;
	position: relative;
	z-index: 9999999999;
}
.carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0%;
    color: #fff;
}
.hero-section-second-half-image{
	border-radius: 20px;
    overflow: hidden;
}
.hero-section-second-half-image-linear{
	z-index: 1;
    background: linear-gradient(176.79deg, rgba(255, 255, 255, 0.24) 10.6%, #111 137.35%);
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
	border-radius: 20px;
}
.hero-section-second-half-image img{
	border: 10px solid #fff;
	border-radius: 20px;
}


.hero-section-button:hover {
    
    color:#fff;
    background:black;
}
/* Hero section End*/











/* About us section Start*/
.about-us-section{
	padding: 40px 0px 40px 0px;
}
.about-us-section-image {
	position: relative;
}
.about-us-section-image-logo{
	position: absolute;
    bottom: 150px;
    left: 200px;
}
@media(min-width:320px){
	.about-us-section-image-logo{
		bottom: 150px;
		left: 150px;
	}	
}
@media(min-width:690px){
	.about-us-section-image-logo{
		bottom: 150px;
		left: 150px;
	}	
}
@media(min-width:1020px){
	.about-us-section-image-logo{
		bottom: 150px;
		left: 200px;
	}	
}
.about-us-section-image-logo img{
    width: 40% !important;
    background-color: #fff;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
}
@media(min-width:320px){
	.about-us-section-image-logo img{
		width: 65% !important;
	}
}
@media(min-width:690px){
	.about-us-section-image-logo img{
		width: 65% !important;
	}
}
@media(min-width:1020px){
	.about-us-section-image-logo img{
		width: 40% !important;
	}
}
.about-us-section-image img{
	width: 100%;
}
@media(min-width:320px){
	.about-us-section-image img{
		width: 100%;
	}
}
@media(min-width:690px){
	.about-us-section-image img{
		width: 100%;
	}
}
@media(min-width:1020px){
	.about-us-section-image img{
		width: 75%;
	}
}
.about-us-order-first{
	order: 1;
	padding: 15px 0px 0px 0px;
}
@media(min-width:320px){
	.about-us-order-first{
		order: 2;
	}
}
@media(min-width:690px){
	.about-us-order-first{
		order: 1;
	}
}
@media(min-width:1020px){
	.about-us-order-first{
		order: 1;
	}
}
.about-us-order-second{
	order: 2;
}
@media(min-width:320px){
	.about-us-order-second{
		order: 1;
	}
}
@media(min-width:690px){
	.about-us-order-second{
		order: 2;
	}
}
@media(min-width:1020px){
	.about-us-order-second{
		order: 2;
	}
}
.about-us-section-full-content-head{
	display: flex;
}
.about-us-section-full-content-head p {
    background-color: #FFAA05;
    width: 50px;
    height: 5px;
    border-radius: 25px;
    margin: 15px 8px 0px 0px;
}
.about-us-section-full-content-head span {
    color: #F5A623;
	font-size: 20px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}
@media(min-width:320px){
	.about-us-section-full-content-head span {
		font-size: 16px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-head span {
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-head span {
		font-size: 20px;
	}
}
.about-us-section-full-content-head-sub h3 {
    color: #000000;
	font-size: 58px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	padding: 10px 0px 0px 0px;
}
@media(min-width:320px){
	.about-us-section-full-content-head-sub h3 {
		font-size: 20px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-head-sub h3 {
		font-size: 25px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-head-sub h3 {
		font-size: 58px;
	}
}
.about-us-section-full-content-head-sub p {
    color: #555555;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	padding: 10px 0px 0px 0px;
}
@media(min-width:320px){
	.about-us-section-full-content-head-sub p {
		font-size: 14px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-head-sub p {
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-head-sub p {
		font-size: 18px;
	}
}
.about-us-section-full-content-head-sub-2{
	display: flex;
}
.about-us-section-full-content-head-sub-2 p {
    width: 10px;
    height: 70px;
    background-color: #FFAA05;
    border-radius: 25px;
    margin: 15px 10px 0px 29px;
}
.about-us-section-full-content-head-sub-2 span {
    color: #000000;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	padding: 10px 0px 0px 0px;
}
@media(min-width:320px){
	.about-us-section-full-content-head-sub-2 span {
		font-size: 14px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-head-sub-2 span {
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-head-sub-2 span {
		font-size: 18px;
	}
}
.about-us-section-full-content-para-sub h3{
	color: #FFAA05;
	font-size: 58px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	padding: 10px 0px 0px 0px;
}
@media(min-width:320px){
	.about-us-section-full-content-para-sub h3{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-para-sub h3{
		font-size: 25px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-para-sub h3{
		font-size: 58px;
	}
}
.about-us-section-full-content-para-sub p{
	color: #000000;
	font-size: 20px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}
@media(min-width:320px){
	.about-us-section-full-content-para-sub p{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.about-us-section-full-content-para-sub p{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.about-us-section-full-content-para-sub p{
		font-size: 20px;
	}
}

#more {
	display: none;
}

#myBtn {
    color: #f1faff;
    border: none;
    font-size: 15px;
	font-family: "Poppins", sans-serif;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
	background:#FFAA05;
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
}


#myBtn:hover{
	color: #fff;
	background:black;
}
.about-us-section-full-content-head-sub p{
	font-size: 16px;
}
/* About us section End*/









/* Project section Start*/
.prefered-option-section{
	padding: 40px 0px 40px 0px;
	background-color: #F5F5F5;
}
.prefered-option-head {
    color: #8A1E1E;
    font-size: 24px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 0px 0px 10px 0px;
}
@media(min-width:320px){
	.prefered-option-head{
		font-size: 18px;
	}
}
@media(min-width:690px){
	.prefered-option-head{
		font-size: 20px;
	}
}
@media(min-width:1020px){
	.prefered-option-head{
		font-size: 24px;
	}
}
.prefered-option-sub-head h3{
    color: #000;
    font-size: 30px;
	font-family: "Poppins", sans-serif;
    padding: 0px 0px 15px 0px;
    font-weight:600;
}
@media(min-width:320px){
	.prefered-option-sub-head h3{
		font-size: 18px;
	}
}
@media(min-width:690px){
	.prefered-option-sub-head h3{
		font-size: 20px;
	}
}
@media(min-width:1020px){
	.prefered-option-sub-head h3{
		font-size: 30px;
	}
}
.prefered-option-background{
	background-color: #fff;
	box-shadow: 0 8px 16px #00000040;
	border-radius: 10px;
	padding: 10px;
	margin-top: -20px;
	height: 100px;
}
.prefered-option-image img{
	width: 100%;
	border-radius: 5px;
	padding: 5px;
}
.prefered-option-content h4{
	color: #000;
	font-size: 14px;
	font-weight: 500;
    font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.prefered-option-content h4{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.prefered-option-content h4{
		font-size: 14px;
	}
}
@media(min-width:1020px){
	.prefered-option-content h4{
		font-size: 14px;
	}
}
.prefered-option-content i {
    color: #959595;
    padding: 0px 10px 0px 0px;
}
.prefered-option-content p{
	color: #7D7D7D;
	font-size: 12px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.prefered-option-content p{
		font-size: 13px;
	}
}
@media(min-width:690px){
	.prefered-option-content p{
		font-size: 12px;
	}
}
@media(min-width:1020px){
	.prefered-option-content p{
		font-size: 12px;
	}
}
.prefered-option-content-icon {
	display: grid;
	justify-content: center;
}
.prefered-option-content-icon img {
    width: 50% !important;
    margin: auto;
}

.prefered-option-content-icon p {
    color: #000;
    font-size: 10px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding: 10px 0px 0px 0px;
    text-align: center;
}
.prefered-option-brucher a{
	background-color: #fff;
	border: 2px solid #AB5D24;
	text-decoration: none;
	color: #AB5D24;
	font-size: 10px;
	padding: 5px 5px 5px 5px;
	border-radius: 25px;
}
@media(min-width:320px){
	.prefered-option-brucher a{
		font-size: 12px;
	}
}
@media(min-width:690px){
	.prefered-option-brucher a{
		font-size: 8px;
	}
}
@media(min-width:1020px){
	.prefered-option-brucher a{
		font-size: 10px;
	}
}
.prefered-option-section-button {
	display: flex;
	justify-content: center;
}
.prefered-option-section-button a {
	color: #fff;
	border: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
	background:#FFAA05;
	background-position: right bottom;
	transition: all .5s ease-out;
} 
.prefered-option-section-button a i{
	font-size: 16px;
} 
.prefered-option-section-button a:hover{
    color: #fff;
    background: black;
}
.project-section-last-project-tab-hide{
	display: block;
}
@media(min-width:320px){
	.project-section-last-project-tab-hide{
		display: block;
	}
}
@media(min-width:690px){
	.project-section-last-project-tab-hide{
		display: none;
	}
}
@media(min-width:1020px){
	.project-section-last-project-tab-hide{
		display: block;
	}
}
/* Project section End*/










/*  Why Choose section Start*/
.why-choose-section{
	padding: 40px 0px 40px 0px;
}
.why-choose-first-half{
	text-align: start;
}
@media(min-width:320px){
	.why-choose-first-half{
		text-align: center;
	}
}
@media(min-width:690px){
	.why-choose-first-half{
		text-align: start;
	}
}
@media(min-width:1020px){
	.why-choose-first-half{
		text-align: start;
	}
}
.why-choose-first-half h4{
	color: #8A1E1E;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 500;
}
@media(min-width:320px){
	.why-choose-first-half h4{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.why-choose-first-half h4{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.why-choose-first-half h4{
		font-size: 20px;
	}
}
.why-choose-first-half h3 {
    color: #F5A623;
    font-family: "Poppins", serif;
    font-size: 42px;
    font-weight: 700;
    padding: 20px 0px 0px 0px;
}
@media(min-width:320px){
	.why-choose-first-half h3{
		font-size: 20px;
		padding: 10px 0px 0px 0px;
	}
}
@media(min-width:690px){
	.why-choose-first-half h3{
		font-size: 35px;
		padding: 20px 0px 0px 0px;
	}
}
@media(min-width:1020px){
	.why-choose-first-half h3{
		font-size: 42px;
		padding: 20px 0px 0px 0px;
	}
}
.why-choose-first-half p{
	color: #555555;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding: 20px 0px 20px 0px;
}
@media(min-width:320px){
	.why-choose-first-half p{
		font-size: 14px;
		padding: 10px 0px 0px 0px;
	}
}
@media(min-width:690px){
	.why-choose-first-half p{
		font-size: 16px;
		padding: 20px 0px 20px 0px;
	}
}
@media(min-width:1020px){
	.why-choose-first-half p{
		font-size: 18px;
		padding: 20px 0px 20px 0px;
	}
}
.why-choose-first-half-button {
	display: flex;
	justify-content: start;
}
@media(min-width:320px){
	.why-choose-first-half-button {
		display: flex;
		justify-content: center;
	}
}
@media(min-width:690px){
	.why-choose-first-half-button {
		display: flex;
		justify-content: start;
	}
}
@media(min-width:1020px){
	.why-choose-first-half-button {
		display: flex;
		justify-content: start;
	}
}
.why-choose-first-half-button a {
    color: #fff;
	border: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
	background: #FFAA05;
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
}
.why-choose-first-half-button a:hover{
	color: #fff;
	background:black;
}
@media(min-width:320px){
	.why-choose-first-half-button a{
		font-size: 12px;
	}
}
@media(min-width:690px){
	.why-choose-first-half-button a{
		font-size: 14px;
	}
}
@media(min-width:1020px){
	.why-choose-first-half-button a{
		font-size: 16px;
	}
}
.why-choose-third-half-image {
    background-color: #fff;
    box-shadow: 0 8px 16px #00000040;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
}
@media(min-width:320px){
	.why-choose-third-half-image {
		height: 65px;
		width: 65px;
	}
}
@media(min-width:690px){
	.why-choose-third-half-image {
		height: 50px;
		width: 50px;
	}
}
@media(min-width:1020px){
	.why-choose-third-half-image {
		height: 80px;
		width: 80px;
	}
}
.why-choose-third-half img {
    width: 100%;
    padding: 15px 10px 15px 12px;
}

.why-choose-third-half-content h3{
	color: #000;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
    font-weight: 700;
}
@media(min-width:320px){
	.why-choose-third-half-content h3{
		font-size: 18px;
	}
}
@media(min-width:690px){
	.why-choose-third-half-content h3{
		font-size: 20px;
	}
}
@media(min-width:1020px){
	.why-choose-third-half-content h3{
		font-size: 24px;
	}
}
.why-choose-third-half-content p{
	color: #555555;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
    font-weight: 400;
}
@media(min-width:320px){
	.why-choose-third-half-content p{
		font-size: 11px;
	}
}
@media(min-width:690px){
	.why-choose-third-half-content p{
		font-size: 12px;
	}
}
@media(min-width:1020px){
	.why-choose-third-half-content p{
		font-size: 14px;
	}
}
/* Why Choose section End*/




/* Gallery section Start*/
.gallery-section{
	padding: 60px 0px 40px 0px;
	background:#f5f5f5;
}
@media(min-width:320px){
	.gallery-section{
		padding: 40px 0px 0px 0px;
	}
}
@media(min-width:690px){
	.gallery-section{
		padding: 40px 0px 0px 0px;
	}
}
@media(min-width:1020px){
	.gallery-section{
		padding: 60px 0px 40px 0px;
	}
}
.gallery-section-head{
	text-align: left;
}
@media(min-width:320px){
	.gallery-section-head{
		text-align: center;
	}
}
@media(min-width:790px){
	.gallery-section-head{
		text-align: left;
	}
}
@media(min-width:1020px){
	.gallery-section-head{
		text-align: left;
	}
}
.gallery-section-head h4{
	font-size: 20px;
	font-family: "Poppins", sans-serif;
	color: #8E4916;
	font-weight: 600;
}
@media(min-width:320px){
	.gallery-section-head h4{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.gallery-section-head h4{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.gallery-section-head h4{
		font-size: 20px;
	}
}
.gallery-section-head h3{
	font-family: "Poppins", serif;
	color: #000;
	font-weight:600;
}
@media(min-width:320px){
	.gallery-section-head h3{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.gallery-section-head h3{
		font-size: 30px;
	}
}
@media(min-width:1020px){
	.gallery-section-head h3{
		font-size: 30px;
	}
}
.gallery-section-head p{
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	color: #000;
	font-weight: 500;
}
@media(min-width:320px){
	.gallery-section-head p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.gallery-section-head p{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.gallery-section-head p{
		font-size: 18px;
	}
}
.gallery-section-image a img{
	width: 100%;
	padding: 4px;
	border-radius: 15px;
}
/* Gallery section End*/


/* Location section Start*/
.location-section{
	padding: 60px 0px 40px 0px;
}
@media(min-width:320px){
	.location-section{
		padding: 40px 0px 0px 0px;
	}
}
@media(min-width:690px){
	.location-section{
		padding: 40px 0px 0px 0px;
	}
}
@media(min-width:1020px){
	.location-section{
		padding: 60px 0px 40px 0px;
	}
}
.location-section-first-half{
	background-color: #AB5D24;
	box-shadow: 0 8px 16px #00000040;
	padding: 15px;
	border-radius: 15px;
	margin: 5px 0px 20px 0px;
}
.location-icon {
    text-align: center;
}
.location-icon img{
	width: 50%;
}
@media(min-width:320px){
	.location-icon img{
		width: 25%;
	}	
}
@media(min-width:690px){
	.location-icon img{
		width: 40%;
	}	
}
@media(min-width:1020px){
	.location-icon img{
		width: 50%;
	}	
}
.location-icon p{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 10px;
}
@media(min-width:320px){
	.location-icon p{
		font-size: 8px;
	}
}
@media(min-width:690px){
	.location-icon p{
		font-size: 10px;
	}
}
@media(min-width:1020px){
	.location-icon p{
		font-size: 14px;
	}
}
.location-section-second-half {
    background-color: #661c10;
	box-shadow: 0 8px 16px #00000040;
    padding: 15px;
    margin-top: 8%;
	margin-bottom: 5px;
    position: relative;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
@media(min-width:320px){
	.location-section-second-half {
		border-radius: 15px;
		margin-top: 0%;
	}
}
@media(min-width:690px){
	.location-section-second-half {
		border-top-right-radius: 15px;
		border-bottom-right-radius: 15px;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		margin-top: 5%;
	}
}
@media(min-width:1020px){
	.location-section-second-half {
		border-top-right-radius: 15px;
		border-bottom-right-radius: 15px;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		margin-top: 8%;
	}
}
.location-section-second-half-title{
	text-align: center;
	color: #fff;
	font-size: 36px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.location-section-second-half-title{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.location-section-second-half-title{
		font-size: 25px;
	}
}
@media(min-width:1020px){
	.location-section-second-half-title{
		font-size: 36px;
	}
}
.location-para {
    padding: 30px 30px 0px 0px;
}
.location-para p{
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.location-para p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.location-para p{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.location-para p{
		font-size: 20px;
	}
}
.location-para span{
	color: #fff;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}
.location-section-second-half-image img {
    width: 30%;
    position: absolute;
    top: 33%;
    left: 31%;
}
@media(min-width:320px){
	.location-section-second-half-image img {
		width: 30%;
		position: absolute;
		top: 40%;
		left: 28%;
	}
}
@media(min-width:690px){
	.location-section-second-half-image img {
		width: 35%;
		position: absolute;
		top: 36%;
		left: 24%;
	}	
}
@media(min-width:1020px){
	.location-section-second-half-image img {
		width: 30%;
		position: absolute;
		top: 33%;
		left: 31%;
	}	
}
/* Location  section End*/


/* ============================
   TESTIMONIAL SECTION START
   ============================ */

.testimonial-section {
    padding: 60px 0;
}

/* Section Sub-title */
.testimonial-section-head h4 {
    font-family: "Poppins", sans-serif;
    color: #8A1E1E; /* brand maroon */
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

@media (min-width: 320px) { .testimonial-section-head h4 { font-size: 16px; } }
@media (min-width: 690px) { .testimonial-section-head h4 { font-size: 18px; } }
@media (min-width: 1020px){ .testimonial-section-head h4 { font-size: 20px; } }

/* Section Main-title */
.testimonial-section-head h3 {
    font-family: "Poppins", sans-serif;
    color: #000; /* charcoal black */
    font-size: 32px;
    font-weight: 600;
}

@media (min-width: 320px) { .testimonial-section-head h3 { font-size: 22px; } }
@media (min-width: 690px) { .testimonial-section-head h3 { font-size: 28px; } }
@media (min-width: 1020px){ .testimonial-section-head h3 { font-size: 30px; } }

/* Testimonial Card */
.testimonial-section-background {
    background-color: #ffffff;
    padding: 25px;
    cursor: pointer;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

/* Hover Effect */
.testimonial-section-background:hover {
    background-color: #8A1E1E; /* brand maroon */
    color: #ffffff;
    transform: translateY(-5px);
}

/* User Image */
.testimonial-section-background img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: -30px;
    margin-left: 10px;
    border: 3px solid #ffffff;
}

/* Testimonial Text */
.testimonial-section-background p {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 20px 10px 0 10px;
    transition: color 0.3s ease;
}

.testimonial-section-background:hover p {
    color: #ffffff;
}

/* Responsive font sizes */
@media (min-width: 320px) { .testimonial-section-background p { font-size: 14px; } }
@media (min-width: 690px) { .testimonial-section-background p { font-size: 16px; } }
@media (min-width: 1020px){ .testimonial-section-background p { font-size: 18px; } }

/* Star Icons */
.testimonial-section-background i {
    color: #F5A623; /* brand gold */
    padding-left: 10px;
    transition: color 0.3s ease;
}

.testimonial-section-background:hover i {
    color: #ffffff;
}

/* Divider */
.testimonial-section-background hr {
    border-color: #DDDDDD;
    margin: 15px 0 15px 10px;
}

/* Name */
.testimonial-section-background h2 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-left: 10px;
    transition: color 0.3s ease;
}

.testimonial-section-background:hover h2 {
    color: #ffffff;
}

/* Role / Designation */
.testimonial-section-background h3 {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding-left: 10px;
    transition: color 0.3s ease;
}

.testimonial-section-background:hover h3 {
    color: #ffffff;
}

/* ============================
   TESTIMONIAL SECTION END
   ============================ */






/* talk to us Page Start */
.talk-to-us-section {
    padding: 40px 0px 40px 0px;
    background-color: rgb(248, 248, 248);
	position: relative;
	z-index: 10;
}
.talk-to-us-section .talk-to-us-section-background {
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: -1;
}
.talk-to-us-section-background img{
	width: 100%;
}
.talk-to-us-section-image img{
	width: 100%;
}
.talk-to-us-section-position{
	position: relative;
}
.talk-to-us-section-second-image{
	position: absolute;
	bottom: 250px;
	right: 0;
}
@media(min-width:320px){
	.talk-to-us-section-second-image{
		bottom: 43px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-second-image{
		bottom: 170px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-second-image{
		bottom: 250px;
	}
}
.talk-to-us-section-second-image img{
	width: 28%;
	padding: 10px;
}
@media(min-width:320px){
	.talk-to-us-section-second-image img{
		width: 45%;
	}
}
@media(min-width:690px){
	.talk-to-us-section-second-image img{
		width: 50%;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-second-image img{
		width: 28%;
	}
}
.talk-to-us-section-image-content h2{
	font-size: 40px;
	font-family: "Poppins", sans-serif;
    font-weight: 700;
}
@media(min-width:320px){
	.talk-to-us-section-image-content h2{
		font-size: 25px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-image-content h2{
		font-size: 30px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-image-content h2{
		font-size: 40px;
	}
}
.talk-to-us-section-image-content{
	padding: 0px 0px 0px 10px;
}
@media(min-width:320px){
	.talk-to-us-section-image-content{
		padding: 0px 0px 0px 10px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-image-content{
		padding: 0px 0px 0px 10px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-image-content{
		padding: 0px 0px 0px 10px;
	}
}
.talk-to-us-section-image-content p{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
    font-weight: 700;
	margin-bottom: 0px;
}
@media(min-width:320px){
	.talk-to-us-section-image-content p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-image-content p{
		font-size: 12px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-image-content p{
		font-size: 16px;
	}
}
.talk-to-us-section-second-image{
	background-color: #fff;
	box-shadow: 0px 0px 5px #0000001a;
	border-radius: 10px;
	padding: 10px;
}
.talk-to-us-section-content p{
	font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #ff6647;
    margin-bottom: 10px;
	padding: 30px 0px 0px 0px;
}
@media(min-width:320px){
	.talk-to-us-section-content p{
		font-size: 12px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-content p{
		font-size: 14px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-content p{
		font-size: 16px;
	}
}
.talk-to-us-section-content h2{
	font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 54px;
    margin-bottom: 20px;
    color: #1f313f;
}
@media(min-width:320px){
	.talk-to-us-section-content h2{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-content h2{
		font-size: 35px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-content h2{
		font-size: 38px;
	}
}
.talk-to-us-section-form-input input{
    font-size: 18px;
    height: 70px;
	width: 100%;
    border-radius: 5px;
    border: 0.990476px solid #E3E3E3;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
	font-family: "Poppins", sans-serif;
}
@media(min-width:320px){
	.talk-to-us-section-form-input input{
		font-size: 12px;
		height: 45px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-form-input input{
		font-size: 14px;
		height: 45px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-form-input input{
		font-size: 18px;
		height: 70px;
	}
}
.talk-to-us-section-form-input input:focus-visible{
	outline: none;
}
.talk-to-us-section-form-input textarea {
    height: 132px;
	width: 100%;
    resize: none;
    margin-bottom: 20px;
	font-size: 18px;
    border-radius: 5px;
    border: 0.990476px solid #E3E3E3;
    padding-left: 20px;
    padding-right: 20px;
}
@media(min-width:320px){
	.talk-to-us-section-form-input textarea {
		font-size: 12px;
		height: 100px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-form-input textarea {
		font-size: 14px;
		height: 100px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-form-input textarea {
		font-size: 18px;
		height: 132px;
	}
}
.talk-to-us-section-form-input textarea {
	outline: none;
}
.talk-to-us-section-form-button button{
     display: inline-block;
	font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
	border: none;
    color: #fff;
    padding: 18px 28px;
    border-radius: 5px;
	background:#FFAA05;
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all .5s ease-out;
}
@media(min-width:320px){
	.talk-to-us-section-form-button button{
		font-size: 14px;
		padding: 10px 20px;
	}
}
@media(min-width:690px){
	.talk-to-us-section-form-button button{
		font-size: 14px;
		padding: 12px 15px;
	}
}
@media(min-width:1020px){
	.talk-to-us-section-form-button button{
		font-size: 16px;
		padding: 18px 28px;
	}
}
.talk-to-us-section-form-button button:hover{
	color: #fff;
	background-position: left bottom;
}
/* talk to us Page End */





















/* Project Page Start */
.project-page-section{
	padding: 125px 0px 0px 0px;
	background-color: #f8eae0;
}
@media(min-width:320px){
	.project-page-section{
		padding: 60px 0px 0px 0px;
	}
}
@media(min-width:690px){
	.project-page-section{
		padding: 125px 0px 0px 0px;
	}
}
@media(min-width:1020px){
	.project-page-section{
		padding: 125px 0px 0px 0px;
	}
}
.project-page-section .nav-pills {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 30px;
	box-shadow: 0 8px 16px #00000040;
    width: fit-content;
    margin: auto;
    margin-top:40px;
}
.project-page-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #cf834c;
    border-radius: 25px;
	font-weight: 700;
}
.project-page-section .nav-pills .nav-link {
    color: #000000;
	font-weight: 700;
	font-size: 16px;
}
@media(min-width:320px){
	.project-page-section .nav-pills .nav-link {
		font-size: 14px;
	}
}
@media(min-width:690px){
	.project-page-section .nav-pills .nav-link {
		font-size: 15px;
	}
}
@media(min-width:1020px){
	.project-page-section .nav-pills .nav-link {
		font-size: 16px;
	}
}
.project-page-project-background {
    background-color: #fff;
	box-shadow: 0 8px 16px #00000040;
    border-radius: 15px;
    padding: 15px;
    margin: 10px 0px;
}
.project-page-project-background-image img{
	width: 100%;
	border-radius: 20px;
}
figure {
	position: relative;
}
/*figure::before {*/
/*    content: "";*/
/*    background-image: linear-gradient(#00000087, #00000087);*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    opacity: 0;*/
/*    border-radius: 20px;*/
/*    z-index: 0;*/
/*    transition: opacity, 200ms;*/
/*}*/
/*figure:hover figcaption{*/
/*	display: block;*/
/*}*/
 /* figure:hover {*/
	/*cursor: pointer;*/
 /* }*/
  
 /* figure:hover::before {*/
	/*opacity: 1;*/
 /* }*/
  
  figcaption {
    position: absolute;
    font-weight: bold;
    font-size: 20px;
    bottom: 25px;
    left: 20px;
	display: none;
    color: white;
    font-family:"Poppins", sans-serif;
}
@media(min-width:320px){
	figcaption {
		font-size: 16px;
	}
}
@media(min-width:690px){
	figcaption {
		font-size: 18px;
	}
}
@media(min-width:1020px){
	figcaption {
		font-size: 20px;
	}
}
figure:hover .year-build-figcaption{
	display: block;
}
.year-build-figcaption {
    font-weight: bold;
    font-size: 20px;
	display: none;
    color: #adadad;
}
@media(min-width:320px){
	.year-build-figcaption {
		font-size: 16px;
	}
}
@media(min-width:690px){
	.year-build-figcaption {
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.year-build-figcaption {
		font-size: 20px;
	}
}
figcaption i{
	padding: 0px 10px 0px 0px;
}
.project-page-project-content p i{
	padding: 0px 10px 0px 0px;
}
.project-page-project-content p {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 20px;
	padding: 0px 0px 0px 20px;
}
@media(min-width:320px){
	.project-page-project-content p {
		font-size: 16px;
	}
}
@media(min-width:690px){
	.project-page-project-content p {
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.project-page-project-content p {
		font-size: 20px;
	}
}

/* Project Page End */











/* Project Detail Page Start */

.project-detail-page-section {
    padding: 125px 0px 0px 0px;
    background-color: #f8eae0;
}
@media(min-width:320px){
	.project-detail-page-section {
		padding: 60px 0px 0px 0px;
		background-color: #f8eae0;
	}
}
@media(min-width:690px){
	.project-detail-page-section {
		padding: 125px 0px 0px 0px;
		background-color: #f8eae0;
	}
}
@media(min-width:1020px){
	.project-detail-page-section {
		padding: 125px 0px 0px 0px;
		background-color: #f8eae0;
	}
}
.project-detail-page-head h3{
	color: #000;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 25px;
	margin-top:50px;
}
.project-detail-page-head p {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0px 0px 0px;
}
.project-detail-page-icon{
	font-size: 18px;
}
.project-detail-page-head img{
	width: 100%;
	padding: 10px;
	border-radius: 20px;
}
.project-detail-page-form{
		position: sticky;
		top: 25%;
		display: block;
		margin-bottom: 10px;
}
@media(min-width:320px){
	.project-detail-page-form{
		display: block;
}
}
@media(min-width:690px){
	.project-detail-page-form{
		display: block;
}
}
@media(min-width:1020px){
	.project-detail-page-form{
		display: block;
}
}
.project-detail-page-contact-form {
    background-color: #fff;
    margin: 0;
    padding: 15px;
	box-shadow: 0px 0px 4px #d3d3d3;
    border-top: none;
    width: 100%;
    border-radius: 20px;
}
.project-detail-page-form-title h6 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 0px 0px 10px 0px;
}
.project-detail-page-form-input{
	margin-bottom: 5px;
    position: relative;
}
.project-detail-page-form-input i{
	position: absolute;
    left: 15px;
    top: 13px;
    color: #d5d5d5;
    display: none;
}
.project-detail-page-form-input input{
    font-size: 14px;
    line-height: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    color: #999;
    border: 1px solid #e4e4e4;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.project-detail-page-form-input input:focus-visible{
	outline: none;
}
.project-detail-page-form-input select{
    font-size: 14px;
    line-height: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    color: #999;
    border: 1px solid #e4e4e4;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.project-detail-page-form-input select:focus-visible{
	outline: none;
}
.project-detail-page-form-input label{
    font-size: 12px;
	display: flex;
}
.project-detail-page-form-input input[type="checkbox"]{
    width: 30%;
    height: 20px;
}
.project-detail-page-form-input-button input {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 20px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid transparent;
    background-color: #d64521;
    width: 100%;
    height: 44px;
    margin: 0;
}
.project-detail-page-key-reason {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
	margin: 10px;
}
.project-detail-page-key-reason h3{
	font-size: 20px;
	font-family: "Poppins", sans-serif;
    font-weight: 800;
}
@media(min-width:320px){
	.project-detail-page-key-reason h3{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.project-detail-page-key-reason h3{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.project-detail-page-key-reason h3{
		font-size: 20px;
	}
}
.project-detail-page-key-reason-para ul li{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
    font-weight: 500;
	padding: 0px 0px 10px 0px;
}
@media(min-width:320px){
	.project-detail-page-key-reason-para ul li{
		font-size: 13px;
	}
}
@media(min-width:690px){
	.project-detail-page-key-reason-para ul li{
		font-size: 15px;
	}
}
@media(min-width:1020px){
	.project-detail-page-key-reason-para ul li{
		font-size: 16px;
	}
}
.project-detail-page-project-overview {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
	margin: 10px;
}
.project-detail-page-project-overview h3{
	font-size: 20px;
	font-family: "Poppins", sans-serif;
    font-weight: 800;
}
@media(min-width:320px){
	.project-detail-page-project-overview h3{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.project-detail-page-project-overview h3{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.project-detail-page-project-overview h3{
		font-size: 20px;
	}
}
.project-detail-page-project-overview-para p{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
    font-weight: 500;
	padding: 0px 0px 10px 0px;
}
@media(min-width:320px){
	.project-detail-page-project-overview-para p{
		font-size: 13px;
	}
}
@media(min-width:690px){
	.project-detail-page-project-overview-para p{
		font-size: 15px;
	}
}
@media(min-width:1020px){
	.project-detail-page-project-overview-para p{
		font-size: 16px;
	}
}
.project-detail-page-approval {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
	margin: 10px;
}
.project-detail-page-approval h3{
	font-size: 20px;
	font-family: "Poppins", sans-serif;
    font-weight: 800;
}
@media(min-width:320px){
	.project-detail-page-approval h3{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.project-detail-page-approval h3{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.project-detail-page-approval h3{
		font-size: 20px;
	}
}
.project-detail-page-approval-para ul li{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
    font-weight: 500;
	padding: 0px 0px 10px 0px;
}
@media(min-width:320px){
	.project-detail-page-approval-para ul li{
		font-size: 13px;
	}
}
@media(min-width:690px){
	.project-detail-page-approval-para ul li{
		font-size: 15px;
	}
}
@media(min-width:1020px){
	.project-detail-page-approval-para ul li{
		font-size: 16px;
	}
}

.project-detail-page-features {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
	margin: 10px;
}
.project-detail-page-features h3{
	font-size: 20px;
	font-family: "Poppins", sans-serif;
    font-weight: 800;
}
@media(min-width:320px){
	.project-detail-page-features h3{
		font-size: 16px;
	}
}
@media(min-width:690px){
	.project-detail-page-features h3{
		font-size: 18px;
	}
}
@media(min-width:1020px){
	.project-detail-page-features h3{
		font-size: 20px;
	}
}
.project-detail-page-features-para ul li{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
    font-weight: 500;
	padding: 0px 0px 10px 0px;
}
@media(min-width:320px){
	.project-detail-page-features-para ul li{
		font-size: 13px;
	}
}
@media(min-width:690px){
	.project-detail-page-features-para ul li{
		font-size: 15px;
	}
}
@media(min-width:1020px){
	.project-detail-page-features-para ul li{
		font-size: 16px;
	}
}
/* Project Detail Page End */































/* Footer section Start*/
.footer{
	background-color: #5A2A27;
	padding: 40px 0px 20px 0px ;
	background-image: url(../images/footer-background.webp);
	background-size: cover;
	background-position: center;
	/* margin: 10px 0px 0px 0px; */
}
.footer-first-half img{
	width: 30%;
}
@media(min-width:320px){
	.footer-first-half img{
		width: 30%;
	}
}
@media(min-width:690px){
	.footer-first-half img{
		width: 50%;
	}
}
@media(min-width:1020px){
	.footer-first-half img{
		width: 30%;
	}
}
.footer-first-half p{
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	padding: 15px 0px 0px 0px;
}
@media(min-width:320px){
	.footer-first-half p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.footer-first-half p{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.footer-first-half p{
		font-size: 16px;
	}
}
.footer-second-half h2{
	color: #fff;
	font-family: "Poppins", serif;
	font-weight: 600;
	font-size: 25px;
}
@media(min-width:320px){
	.footer-second-half h2{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.footer-second-half h2{
		font-size: 24px;
	}
}
@media(min-width:1020px){
	.footer-second-half h2{
		font-size: 25px;
	}
}
.footer-second-half ul{
	padding: 15px 0px 0px 0px;
}
.footer-second-half ul li{
	list-style: none;
	line-height: 40px;
	font-family: "Poppins", sans-serif;
}
.footer-second-half ul li a{
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	text-decoration: none;
	font-size: 16px;
}
@media(min-width:320px){
	.footer-second-half ul li{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.footer-second-half ul li{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.footer-second-half ul li{
		font-size: 16px;
	}
}
.footer-second-half ul li a:hover{
	color: #f3d5d5;
}
.footer-third-half h2{
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 25px;
}
@media(min-width:320px){
	.footer-third-half h2{
		font-size: 20px;
	}
}
@media(min-width:690px){
	.footer-third-half h2{
		font-size: 24px;
	}
}
@media(min-width:1020px){
	.footer-third-half h2{
		font-size: 25px;
	}
}
.footer-third-half p{
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
@media(min-width:320px){
	.footer-third-half p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.footer-third-half p{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.footer-third-half p{
		font-size: 16px;
	}
}
.footer-third-half a{
	color: #fff;
	text-decoration: none;
}
.footer-third-half a:hover{
	color: #f1d1d1;
}
/* Footer section End*/









/* Copyright section Start*/
.copyrights {
    padding: 15px 0px 6px 0px;
}
.copyrights-content p{
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
}
@media(min-width:320px){
	.copyrights-content p{
		font-size: 14px;
	}
}
@media(min-width:690px){
	.copyrights-content p{
		font-size: 16px;
	}
}
@media(min-width:1020px){
	.copyrights-content p{
		font-size: 16px;
	}
}
.copyrights-content img{
   width: 5%;
}
@media(min-width:320px){
	.copyrights-content img{
		width: 15%;
	}
}
@media(min-width:690px){
	.copyrights-content img{
		width: 5%;
	}
}
@media(min-width:1020px){
	.copyrights-content img{
		width: 5%;
	}
}

/* Copyright section End*/





