@charset "utf-8";
/* CSS Document */


:root {
  --title-color: #211e1c;
  --body-color: #211e1c;
  --smoke-color: #f6f6f6;
  --light-smoke-color: #fafafa;
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-color: #151515;
  --silver-color: #aeaeae;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(0,0,0,0.10);
  --theme-font1: "Roboto", sans-serif;
  --theme-font2: "Prata", serif;
  --icon-font: "Font Awesome 5 Pro";
  --icon-font2: "Flaticon";
  --moving-ani-duration: 5s;
  --ripple-ani-duration: 5s;
}







#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 10px;
  transition: opacity 0.3s;
}
#backToTopBtn:hover {
  background-color: #555;
}




.play-btn {
  position: relative;
  border-radius: 50%;
  display: inline-block;
}
.play-btn > i {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 120px;
  text-align: center;
  font-size: 26px;
  border-radius: inherit;
  transition: all ease 0.4s;
}

.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color:#006112;
  z-index: 1;
}
.play-btn:after {
  animation-delay: 1s;
}

.play-btn:hover > i, .play-btn.style-white > i {
  background-color: var(--black-color);
  color: var(--body-color);
}
.play-btn > i, .play-btn.style-white:hover > i {
  color: var(--black-color);
  /*background-color: #2f3c4d;*/
}
.play-btn.md-size > i {
  width: 45px;
  height: 45px;
  line-height: 45px;
}



.play-btn:after, .play-btn:before{
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1.7);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.7);
    opacity: 0;
  }
}

.btn-outline-success {
    border: 2px solid #38455a;	
    color: #38455a;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-outline-success i {
    color: #38455a;
}

.btn-outline-success:hover {
    background-color: #38455a;
    color: #fff;
}

.btn-outline-success:hover i {
    color: #fff;
}

/* Ensure proper spacing and responsiveness */
@media (max-width: 768px) {
    .btn-outline-success {
        padding: 8px 12px;
        font-size: 14px;
    }
}


/*Pre approve form*/
	ion-icon {
	  font-size: 20px;
	  color: black; /* Default color for desktop */
	  margin-left: 30px;
	}

	@media (max-width: 992px) { 
	  /* Apply white color to ion-icon inside .test for mobile */
	  ion-icon.test {
		color: rgba(255, 255, 255, 1.00);
		  margin-left: 20px;
	  }
	}


	.search-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.4); /* Slight dark overlay */
		z-index: 9998;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* Floating search form */
	.floating-search {
		position: absolute;
		width: 350px;
		background: rgba(255, 255, 255, 0.95);
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
		z-index: 9999;
	}

	.close-btn {
		position: absolute;
		top: -8px;
		left: -11px;
		width: 30px;
		height: 30px;
		background-color: #FFFFFF; /* Change this to your preferred color */
		border: 2px solid #FFFFFF; /* Border color */
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		color: white;
		cursor: pointer;
		font-weight: bold;
		transition: background 0.3s ease, transform 0.2s ease;
	}


	
.banner_renting{
	position: absolute;
	z-index: 100; /* High enough, but not excessive */
	bottom: 10px;
	left: 10px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 5px;
	white-space: nowrap;
}


/*pre-Approval Start*/

.form-container {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-top: 5px solid #2f4266; /* Dark Blue from logo */
}

.btn-submit {
	background-color: #2f4266; /* Dark Blue */
	color: white;
	font-weight: bold;
	border-radius: 5px;
}

.btn-submit:hover {
	background-color: #1e2e4c;
}

.form-label {
	font-weight: bold;
	color: #2f4266; /* Matching text color */
}

.logo {
	display: block;
	max-width: 80px;
	margin: 0 auto 10px;
}

.contact_wrapper ul {
	list-style: none;
	padding: 0;
}

.contact_wrapper ul li {
	display: inline-block;
	padding: 5px 10px;
}

.contact_wrapper a {
	color: #2f4266;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
}

.contact_wrapper a:hover {
	color: #1e2e4c;
}

/*end Pre-Approval End*/



.floating-search {
	width: 25%; /* Expands form width to 75% of screen */
	margin-left: 150px;

}

/* Ensure responsiveness */
@media (min-width: 360px) and (max-width:433px) {
	.floating-search {
		width:100%; /* Full width on smaller screens */
	}
}


@media (min-width: 434px) and (max-width:607px) {
	.floating-search {
		width:80%; /* Full width on smaller screens */
	}
}

@media (min-width: 608px) and (max-width:991px) {
	.floating-search {
		width:55%; /* Full width on smaller screens */
	}
}

.form-select {
	max-height: 150px; /* Adjust height */
	overflow-y: auto; /* Enables scrolling */
}

		
@media (max-width: 991px) {
    .top_header_wrapper .contact_wrapper ul li.d-none.d-lg-inline-block {
        display: none !important; /* Hides login and search icons on mobile */
    }
}

