* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: 'Poppins', Arial, sans-serif;
}

:root {
	--fw-5: 500;
	--fw-6: 600;
}

.container,
.container-fluid {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.fs-lg {
		font-size: 28px !important;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1240px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%
}

@media (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

@media (min-width: 992px) {

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}


.row-gap {
	row-gap: 20px;
}

.row-gap-3 {
	row-gap: 30px;
}

.justify-content-between {
	justify-content: space-between !important;
}

.justify-content-center {
	justify-content: center !important;
}

.align-items-center {
	align-items: center !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

img,
svg {
	vertical-align: middle;
	border-radius: 5px;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

input,
:is(select, select span),
textarea {
	width: 100%;
	padding: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1 .h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: var(--fw-6);
	line-height: 1.3;
	margin-bottom: 20px;
	text-transform: capitalize;
}


.btn-grp {
	display: flex;
	align-items: center;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.mt-2 {
	margin-top: 20px;
}

.mt-auto {
	margin-top: 75px;
}

.mt-5 {
	margin-top: 150px;
}

p {
	margin-bottom: 15px;
}

/*------------- Header css starts -------------*/
.toggle-slide-btn,
#cancelBtn {
	display: none;
}

.logo img {
	height: 60px
}

.header {
	position: sticky;
	top:0;
	z-index: 99;
	width: 100%;
	padding-block: 12px;
}

.mob-btn {
	display: none;
}

.header nav ul {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 35px;
}

.header nav ul li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header ul .dropdown ul {
	display: block;
	visibility: hidden;
	position: absolute;
	border-radius: 5px;
	top: 52px;
	padding: 5px 0;
	margin: 0;
	z-index: 99;
	min-width: 200px;
}

.header ul .dropdown ul li {
	padding: 5px 15px;
	white-space: nowrap;
	transition: linear all 0.5s;
}

.dropdown svg {
	transition: transform 0.3s ease;
	margin-top: 3px;
}

.header ul .dropdown li>svg {
	fill: var(--black) !important;
}

.header li.show-dropdown>svg {
	transform: rotate(180deg);
	display: flex;
}

.header .dropdown:hover>ul {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
}

.hero-nav {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 40px;
	justify-content: space-between;
}

/*//site-btn*/

:where([class*="ary-btn"], [class*="ary-btn"] span) {
	display: flex;
	align-items: center;
}

[class*="ary-btn"] {
	border-radius: 50px;
	gap: 10px;
	padding: 10px 20px;
	width: fit-content;
}

/*//hero-banner*/

.hero-banner {
	position: relative;
	padding-block: 80px;
	height: 100%;
	width: 100%;
	background: url(https://www.radiustheme.com/demo/wordpress/themes/homlisti/wp-content/uploads/2021/08/home-3-main-banner.jpg) no-repeat center/cover;
	color: var(--white);
	text-align: center;
	z-index: 0;
	border-radius: 0 0 300px 300px;
}

:is(.peak__demands, .peak__demands li, .peak__demands li span) {
	display: flex;
	align-items: center;
}

.peak__demands {
	gap: 15px 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.peak__demands li span {
	width: 30px;
	height: 30px;
	justify-content: center;
	margin-right: 10px;
}


/*:is(.select2-container .select2-selection--single){
	display: flex !important;
}*/

/* Remove Select2 default styling */
.select2-container--default .select2-selection--single {
	border: none !important;
	display: flex !important;
	align-items: center;
	box-shadow: none !important;
	background: #fff !important;
	height: 100% !important;
	padding: 15px !important;
}

/* Remove padding inside the rendered text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0 !important;
	margin: 0 !important;
	line-height: normal !important;
	cursor: pointer;

}

/* Align the arrow vertically */
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
	top: 0 !important;
	right: 0.5rem;
	/* adjust if needed */
	display: flex;
	align-items: center;
	justify-content: center;
}

.select2-results__option {
	padding: 6px 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	right: 10px !important;
}

.select2-container--open .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: var(--sc);
}

.hero-banner [class*="col-"] {
	padding-inline: 0;
}

.hero-banner [class*="col-"] :is(select, input),
.select2-container--default .select2-selection--single {
	border-radius: 0 !important;
	height: 100%;
	border: 0;
}

.hero-banner form button {
	height: fit-content;
	padding: 15px;
	width: 100%;
}

.seprator-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.seprator {
	position: relative;
	display: grid;
	gap: 10px;
}

.seprator .sub-bg-title {
	position: absolute;
	inset: -10px;
	width: fit-content;
	z-index: -1;
	opacity: .05;
}

.seprator .sub-title {
	position: relative;
}

.seprator .sub-bg-title.center {
	text-align: center;
	margin: auto;
}

.seprator.center {
	place-items: center;
}

/*//property-card____**Start*/

.property-card .property-img {
	aspect-ratio: 16/9;
	background: #c7c7c7;
	position: relative;
}

.property-img,
.property-img img {
	border-radius: 0;
	width: 100%;
}

:where(.sale-tag,
	.property-card .card-rightBar,
	.property-card .price,
	.property-card .cat) {
	position: absolute;
}

:where(.property-card .card-rightBar,
	.property-card .location,
	.single-intenary .location,
	.property-card .property-intenary,
	.property-card .property-intenary .col,
	.property-card .property-intenary .col span) {
	display: flex;
	align-items: center;
}

.sale-tag {
	top: 35px;
	left: 23px;
	padding: 3px 10px;
}

.property-card .card-rightBar {
	right: 20px;
	top: 20px;
	gap: 5px;
}

.property-card .price {
	bottom: 50px;
	left: 25px;
}

.property-card .cat {
	bottom: 0px;
	left: 25px;
	padding: 6px 15px 0;
}

.property-card .property-summary {
	display: grid;
	gap: 15px;
	padding: 20px;
}

[class*="-title"] {
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box !important;
	overflow: hidden;
	text-overflow: ellipsis;
}

.property-card .location,
.property-card .property-intenary .col,
.single-intenary .location {
	gap: 8px;
}

.property-card .property-intenary {
	gap: 10px 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 5px;
}

.property-card .property-intenary .col span {
	height: 30px;
	width: 30px;
	justify-content: center;
}

ul.list-icon li {
	position: relative;
	padding-left: 30px;
}

ul.list-icon {
	display: grid;
	gap: 6px;
	margin-bottom: 20px;
}


.country-card p {
	margin-bottom: 5px;
}

.country-card .country-detl {
	padding: 20px;
	justify-content: space-between;
}

.country-card .country-detl,
.country-card .country-detl .country-icn {
	display: flex;
	align-items: center;
}

.country-card .country-detl>div {
	display: flex;
	flex-direction: column;
}

.country-card .country-detl .country-icn {
	height: 40px;
	width: 40px;
	justify-content: center;
}

/*//vid-parallax**start*/

.vid-parallax {
	min-height: 500px;
	height: 100%;
	background: url('https://www.radiustheme.com/demo/wordpress/themes/homlisti/wp-content/uploads/2021/08/promo-bg-1.jpg') center / cover no-repeat fixed;
	display: flex;
	align-items: center;
}

.vid-parallax .seprator {
	padding: 40px;
}

.play-btn-container {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.circle {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.play-text {
	margin: 0 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 999;
	padding-top: 50px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
	position: relative;
	width: 80%;
	max-width: 45%;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.close {
	position: absolute;
	top: -15px;
	right: -15px;
	color: white;
	font-size: 30px;
	cursor: pointer;
}

iframe {
	width: 100%;
	height: 400px;
}


/*//stats-counter------start***/

.dark-bg {
	background: var(--sc);
	padding-block: 80px 50px;
	z-index: 0;
	position: relative;
	height: 650px;
}

.stats-col {
	margin-top: 30px;
}

.stats-col .circle-1,
.circle-2 {
	position: relative;
}

.stats-content {
	display: grid;
	place-items: center;
	position: relative;
	color: var(--white);
	left: 0;
	top: 70px;
}


ul.review {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.testimonial-card {
	padding-inline: 0 30px;
}

.testimonial-card img {
	height: 350px;
	width: 100%;
	object-fit: cover;
}


/*         footer-start*/

footer {
	background: url(https://www.radiustheme.com/demo/wordpress/themes/homlisti/wp-content/themes/homlisti/assets/img/footer-2-bg.jpg) no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
	padding-block: 50px;
}

footer p {
	margin-block: 15px;
}

.social-media {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

footer .menu-title {
	position: relative;
	padding-bottom: 15px;
}

footer .footer-item {
	display: grid;
	gap: 10px;
}

footer :is(.footer-item, form, .info-wrap) {
	margin-top: 25px;
}

footer form {
	gap: 10px;
	display: grid;
}

footer form button {
	width: fit-content;
	padding: 10px;
}

footer .info-wrap .info-col,
.copyryt ul {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.impo-link {
	gap: 40px !important;
}

.copyryt .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

#breadcrumbs {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

/*//for-single-property---pg..*/

.coll-property-img img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.img-zoom-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.img-zoom-modal .overlay {
	background: rgb(0 0 0 / 82%);
	position: absolute;
	width: 100%;
	height: 100%;
}

.img-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
	z-index: 10000;
}

.img-container img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.close-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	color: #333;
	font-size: 24px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	width: 32px;
	height: 32px;
	z-index: 10001;
}

.seller-form {
	padding: 30px;
	position: sticky;
	top: 50px;
}

.seller-form .seller-info {
	display: grid;
	grid-template-columns: 30% auto;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.seller-form .seller-info img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.seller-form .seller-info .sellery-qry {
	display: grid;
	gap: 10px;
}

.seller-form form {
	margin-top: 40px;
}

.single-intenary .property-intenary {
	margin-bottom: 20px;
}

.property-intenary .h2 {
	margin-bottom: 10px;
}

.single-intenary .location {
	margin-bottom: 30px;
}

.facility-cols {
	display: flex;
	align-items: center;
	gap: 10px;
}

.facility-cols span {
	padding: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 50px;
}

.property-summary .file_attached {
	display: flex;
	align-items: center;
	gap: 20px;
}

.similarJob {
	padding: 10px !important;
}

.contact-info-col {
	padding: 20px 18px;
	gap: 20px;
	flex-wrap: wrap;
}

:is(.contact-info-col, .contact-info-col .info-icn) {
	display: flex;
	align-items: center;
}

.contact-info-col .info-icn {
	width: 60px;
	height: 60px;
	justify-content: center;
}


.single-page-hero a.main-btn {
	margin-top: 30px;
}

.service-col-wrap .service-card {
	height: 100%;
	padding: 25px;
	gap: 20px;
}

.service-col-wrap .service-card,
.service-vr-card {
	display: flex;
	flex-direction: column;
}

.service-vr-card {
	gap: 15px;
	text-align: center;
	padding: 20px;
	align-items: center;
	margin-top: 30px;
}

.service-vr-card span {
	padding: 15px;
	width: fit-content;
}

.service-vr-card span img {
	height: 70px;
	width: 70px;
}

.team-card .team-img {
	position: relative;
}

.team-card .team-img .listing {
	padding: 4px 15px;
	position: absolute;
	bottom: 15px;
	left: 25px;
	width: fit-content;
}

.team-card .team-detl {
	padding: 18px 0;
	display: grid;
	gap: 10px;
}

/*//site-popup*/

.popup-card .property-summary{
            padding: 0 25px 35px;
         }

         .popup-wrap{
            position: fixed;
            z-index: 999999999999;
            max-width: 35%;
            width: 100%;
            top:50%;
            left:50%;
            transform: translate(-50%, -30px);
            opacity: 0;
            visibility: hidden;
            transition: all .4s ease;
         }

          .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
  }

  .popup-wrap .popup-card .cancel__popup{
      position: absolute;
      top: 0;
      right: 0;
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .popup-wrap form .secondary-btn{
  	width: 100%;
  	justify-content: center;
  }
  
  .mob-button{
      display:none;
  }

/*responsisve-query*/

/* -------------- media query starts --------------- */
@media screen and (max-width:1023px) {

	.header nav ul li {
		padding: 10px 0px 0px;
		display: block;
		justify-content: space-between;
	}

	.header nav ul li :is(a, svg) {
		color: var(--black) !important;
		fill: var(--black) !important;
	}

	.show-dropdown ul li {
		margin-bottom: 0;
	}

	.toggle-slide-btn,
	#cancelBtn,
	.header nav ul {
		display: block;
	}

	.toggle-slide-btn,
	#cancelBtn {
		margin-left: auto;
	}

	.header nav {
		position: fixed;
		height: 100%;
		top: 0;
		left: 0;
		transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
		padding: 40px 20px;
		z-index: 99;
	}

	.header .hero-nav {
		gap: 25px !important;
	}

	#cancelBtn {
		position: absolute;
		right: 10px;
		top: 10px;
	}

	.header ul .dropdown ul {
		position: relative;
		height: fit-content;
		left: 0;
		margin-top: 5px;
		top: 0px;
		display: none;
	}

	.header .dropdown#showDropdown ul {
		display: block !important;
		visibility: unset !important;
		opacity: unset !important;
	}

	.header nav {
		transform: translateX(-100%);
		display: block;
		background-color: #f7f5ff;
	}

	.show-ul {
		transform: translateX(0) !important;
	}

	.header .dropdown.show-dropdown>ul {
		transform: scaleY(1);
		visibility: visible;
		opacity: 1;
		display: block;
		width: 100%;
		margin-bottom: 0;
		border: 1px solid #ffffff1a;
	}

	.hero-banner {
		padding-block: 30px !important;
		border-radius: 0 !important;
	}

	.hero-banner:after {
		border-radius: 0 !important;
	}

	.peak__demands {
		display: grid !important;
		padding-inline: 30px;
	}

	.select2-container--open.select2-container--focus,
	.select2 {
		width: 100% !important;
	}

	.hero__form .row {
		justify-content: unset !important;
	}

	.seprator-wrap {
		margin-bottom: 20px;
	}

	.seprator .sub-bg-title {
		font-size: 70px !important;
	}

	.wcu-con .row .col-lg-6:first-child,
	.testimonial-container .col-lg-5,
	.single-page-hero .col-lg-3,
	.abt-content .row .col-lg-5 {
		display: none;
	}

	.site-bg {
		padding-block: 35px !important;
	}

	.site-bg {
		padding-block: 25px;
	}

	.vid-parallax .seprator h2 {
		font-size: 28px !important;
	}

	.vid-parallax {
		min-height: 450px;
	}

	.modal-content {
		min-width: 90% !important;
	}

	.row-gap-stats {
		row-gap: 90px;
	}

	.testimonial-container .testimonial-card,
	.privacy-page {
		padding: 20px !important;
	}

	.coll-property-img img {
		height: 100% !important;
	}

	.single-page-hero {
		padding-block: 40px;
	}

}

@media screen and (min-width:600px) and (max-width:1023px) {
	.header nav {
		width: 50%;
	}

	.peak__demands {
		grid-template-columns: repeat(3, 1fr);
		place-items: center;
	}

	.dark-bg {
		height: 750px !important;
	}

	.sec-img:after {
		height: 100px !important;
	}

	#allPropertyImg {
		height: 500px !important;
	}
}

@media screen and (max-width:600px) {

	.popup-wrap{
		max-width: 100% !important;
	}

	.header nav {
		width: 100%;
	}

	.header .mob-btn {
		border-radius: 50%;
		height: 45px;
		width: 45px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
	}

	.header .main-btn,
	.seprator-wrap .secondary-btn{
		display: none !important;
	}
	
	.mob-button{
      display: flex !important;
      width:100%;
      justify-content:center
  }

	.hero-banner h1 {
		margin: 0;
	}

	h1,
	.h1 {
		font-size: clamp(1.6rem, 0.625rem + 0.9615vw, 2rem) !important;
		line-height: 40px;
	}

	.peak__demands {
		grid-template-columns: 50% auto;
	}

	.country-card .country-detl {
		padding: 10px !important;
	}

	.country-card p {
		margin-bottom: 0;
		font-size: 13px;
	}

	.country-card .country-detl>div a {
		font-size: 18px !important;
	}

	.country-card .country-detl .country-icn {
		display: none;
	}

	.vid-parallax .parallax-ryt-text {
		font-size: 50px !important;
	}

	.dark-bg {
		height: 1200px !important;
	}

	.sec-img:after {
		height: 50px !important;
	}

	#allPropertyImg {
		height: 250px !important;
	}
}