/* General Reset */

:root {
  --orange: #F5821F;
  ;
  /* --yellow: #ffea00; */
  --yellow: #ffc107;
  --dark_yellow: #ffa000;
  /* --dark_yellow: #ffc107; */
  --background_color: #f7f7f7;
  --dark_orange: #ff7f00;
  --text_color: #000929;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text-color{
  color: var(--text_color);
}

h2 {
  color: var(--dark_orange) !important;
}

a {
  cursor: pointer !important;
  text-decoration: none !important;
}

.text-color {
  color: #545454 !important;
}
.text-secondary {
  color: #333 !important;
}
.text-third {
  color: #a6a6a6 !important;
}
body {
  font-family: 'Plus Jakarta Sans', Roboto;
  scroll-behavior: smooth;
  background-color: var(--background_color);
}
.bg{
  background-color: black;
}
/* Navigation Bar */
.logo {
font-size: 21.83px;
font-weight: 800;
line-height: 30.56px;
letter-spacing: -0.04em;
text-align: left;
text-decoration-skip-ink: none;
color:white;

}

/* Navbar Container */
.navbar {
 background: linear-gradient(90deg, #AB67C5 0%, #E9606C 34%, #FAAF5D 69.5%, #FB7A3B 100%);
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar-links li {
  list-style: none;
  position: relative;
}

/* Navbar Links */
.navbar-links a {
  text-decoration: none;
  color: black;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  white-space: nowrap; /* Prevent text from wrapping */
}

.navbar-links a:hover,
.navbar-links a.active {
  color: white;
  background-color: #0000002a;
  border-radius: 7px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark_orange);
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
}

.dropdown-content a {
  display: block;
  margin: 15px;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
  font-weight: normal;
}
.nav-badge{
  background-color: #5851AE;
  font-size: 10px !important;
}

.dropdown-content a:hover {
  background-color: #0000002a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Prevent Dropdown Wrapping */
.navbar-links li.dropdown {
  display: inline-block;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(4px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.652);
}

.orange{
  color: var(--orange);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 75%;
}

.hero-content h1 {
  /* font-size: 3.5rem; */
  margin-bottom: 1.5rem;
}

.hero-content p {
  /* font-size: 1.5rem; */
  margin-bottom: 2rem;
}

/* Categories & Search Bar */

.radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  width: 380px;
}

.radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
}

.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 1rem 1rem;
  color: rgba(51, 65, 85, 1);
  /* transition: color background-color 0.15s ease; */
  user-select: none;
}

.radio-inputs .radio input:checked + .name {
  color: var(--orange);
}
.radio-inputs .radio input:checked + .name {
  border-bottom: 3px solid var(--orange);
}

/* Search Bar */
.search-container {
  display: none;  
  justify-content: center;
  opacity: 2;
  background-color: #f5f5f5;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

        .search-container.active {
            display: flex;
        }

.input-group{
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  text-align: start;
  width:100%;
}

.input-group label{
  color: #001619B2;
  font-size: 1.2rem;
}

.input-group select{
  border: none;
  background-color: #f5f5f5;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.3rem;
}

.input-group select:focus-visible{
  outline: none;
}

.input-group input{
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.3rem;
}

.input-group input:focus-visible{
  outline: none;
}

.search-btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  text-wrap: nowrap;
}

.search-btn {
  background-color: var(--orange);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
}

.search-btn:hover {
  background-color: var(--dark_orange);
}

/* Categories & Search Bar */
.categories {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}


.dark-preview {
  background: #0d0d0d;
}

.white-preview {
  background: #e0e0e0;
}

.orange-btn {
  background-color:#F99245;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  color:white;
  font-weight: 500;
}

.search-input,
.city-filter {
  padding: 0.8rem 2rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.search-input {
  width: 650px;
}

.city-filter {
  width: 150px;
}

/* New Arrivals Section */
.new-arrivals {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0EFFB 100%);
  text-align: center;
}

.new-arrivals h2 {
  color: #333 !important;
  font-weight: 700 !important;
  font-size: 2.5rem;
}

.property-cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.swiper{
  width: 85%;
}
.rotate-180{
  transform: rotateY(180deg);
}

.card {
  background-color: #fff;
  border-radius: 8px !important;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #F0EFFB !important;
}
.card-text-wrapper{
  height: 7rem;
}
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
}

.popular-tag{
  width: 10rem !important;
  height: 3rem !important;
  left: -12px;
  top: 50%;
  z-index: 12;
}
.card-like-icon{
  width: 3.1rem !important;
  height: 3rem !important;
}

.category-icons{
  width: 1.4rem !important;
  height: 1rem !important;
}
.category-icon-bathroom{
  width: 1.4rem !important;
  height: 1.2rem !important;
}
.category-icon-area{
  width: 1rem !important;
  height: 1.2rem !important;
}
.category-font{
  font-size: 12px;
  color: #2c2c2c !important;
  }

/* Trending Projects Section */
.trending-projects {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.trending-projects h2 {
  color: #333 !important;
  font-weight: 700 !important;
  font-size: 2.5rem;
}

.trending-projects p {
  /* font-size: 3rem; */
  /* margin-bottom: 3rem; */
  color: #666;
  background-color: #ffff;
}
.section-side-heading{
  font-family: 'Plus Jakarta Sans';
font-size: 2rem;
font-weight: 700;
line-height: 33.6px;
text-align: left;
text-decoration-skip-ink: none;
}
.top-localities{
  padding: 5rem 2rem;
  background: #F1F0FB;
  text-align: center;
}
.image-dark-filter{
  filter: brightness(60%);
}
.img-text{
bottom: 10%;
font-family: 'Plus Jakarta Sans';
font-size: 1.5rem;
font-weight: 600;
line-height: 19.2px;
text-decoration-skip-ink: none;
width: calc(100% - 1rem);

}
.blur-text-bg{
  backdrop-filter: blur(25px);
font-size: 1rem;
font-weight: 600;
line-height: 18px;
text-decoration-skip-ink: none;
}
.blur-text-bg>span{
font-size:0.8rem;
font-weight: 400;
line-height: 12px;
text-decoration-skip-ink: none;

}
.localities-arrow-icon{
  width: 1rem !important;
  height: 1rem !important;
}
.project-cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 360px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.details-btn {
  background-color: var(--yellow);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
}

.details-btn:hover {
  background-color: var(--dark_yellow);
}
.contact-btn {
  background-color: white;
  border: 1px solid var(--yellow);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--dark_yellow);
  color: white;
    font-weight: bold;
}

.view-all-btn {
  margin-top: 2rem;
  background: #100A55;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background: #241c7d;
}
/* Filter by What Matters Section */
.filter-section {
  padding: 5rem 2rem;
  background-color: #fff;
  box-shadow: 0px 4px 200px 0px #E8F9F733;

}

.filter-section h2 {
  /* font-size: 3rem; */
  margin-bottom: 3rem;
  color: #333;
}

.home-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 3rem;
  justify-items: center;
  align-items: center;
  /* padding: 0 2rem; */
}

.filter-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 3rem;
  justify-items: flex-start;
  align-items: center;
  padding: 0 2rem;
}

/* .filter-card {
    background: linear-gradient(145deg, #FFEA00,  var(--orange));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    width: 350px;
    cursor: pointer;
    color: #fff;
    position: relative;
    overflow: hidden;
} */

.home-card {
  background-color: #fff;
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 320px;
  transition: transform 0.3s ease;
}

.home-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.home-card h3 {
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-card p {
  /* font-size: 1.1rem; */
  /* color: #f5f5f5; */
  color: #666;
}
.quite-video {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the container */
  z-index: 1; /* Places video below the content */
  filter: brightness(50%); /* Darkens the video for better text readability */
}
.filter-card {
  background-color: #fff;
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 365px;
  height: 250px;
  transition: transform 0.3s ease;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.318);
}


.filter-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
.filter-content {
  /* position: absolute; */
  z-index: 100;
  color: white !important;
}

.filter-card h3 {
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.concierge-section{
  padding: 5rem 2rem;
  background: #F7F7F7;
}
.picked-perfected-section{
  padding: 5rem 2rem;
}
.concierge-heading-sub{
font-size: 1rem;
font-weight: 400;
line-height: 30px;
text-decoration-skip-ink: none;
width: 60%;
color: #3F3D56;
}
.sweet-home-section{
  padding: 5rem 2rem;
}
.sweet-home-image-div{
  border: 1.5px solid #E0DEF7;
  border-radius: 8px;
  background-color: #F7F7FD;
}
.sweat-home-heading{
font-size: 3rem;
font-weight: 700;
line-height: 40px;
letter-spacing: -0.01em;
text-align: left;
text-decoration-skip-ink: none;
color: #100A55;
}
.sweet-home-sub{
font-size: 0.9rem;
font-weight: 400;
line-height: 25.6px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#100A55 ;
}
.sweet-home-img{
  width: 30rem;
}
.sweet-detail-heading{
font-size: 1.5rem;
font-weight: 500;
line-height: 36px;
letter-spacing: -0.01em;
text-align: left;
text-decoration-skip-ink: none;
color: #000929;
}

/* redefine section */
.redfine-big-img-div{
width: 100%;
}
.redfine-big-img{
  border-radius: 12px;
  width: 100%;
  height: 43rem;
  transition: transform 0.5s ease;
}
.redfine-small-img-div{
  width: 100%;
}
.redfine-small-img{
  height: 20.7rem;
  border-radius: 12px;
  width: 100%;
  transition: transform 0.5s ease;
}
.redfine-big-img:hover,.redfine-small-img:hover{
  transform: scale(1.04);
}
/* calander section */
.calender-section{
  padding: 5rem 2rem;
  background: #FF9966 !important;
  box-shadow: 0px 4px 200px 0px #E8F9F733;
}
.calander-wrapper{
  border: 1px solid #E5E9EB;
  background-color: #FCFCFC;
  border-radius: 18px;
}
.login-section{
  padding: 5rem 2rem;
  background: #F8F8FF !important;  
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background-color: var(--background_color);
  text-align: center;
}

.contact h2 {
  /* font-size: 2.5rem; */
  margin-bottom: 2rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: auto;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  /* font-size: 1rem; */
}

.contact form textarea {
  height: 150px;
}

.contact form button {
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* Smooth Scrolling and Active Link Styling */
.active {
  color: var(--yellow);
  font-weight: bold;
}

.location-card {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  transition: transform 0.3s ease;
}

.location-btn {
  background-color: #ffff;
  border: 1px solid var(--orange);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333 !important;
  /* transition: background-color 0.3s ease; */
  transition: transform 0.3s ease;
}

.location-btn:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
  gap: 5rem;
}

/* medium and up screens */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

.carousel-item .card {
  /* border: 1px solid var(--dark_orange)!important; */
}

.exclusives-card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 10px;
  width: 100%;
  height: 260px;
  padding-inline: 1rem;
  background-color: white;
  box-shadow: 0 2px 6px #0000000d;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  transition: 0.5s;
  gap: 0.8rem;
}

.exclusives-card img {
  width: 100%;
  height: 35%;
}

.exclusives-card:hover {
  border: 1px solid var(--orange);
  box-shadow: 0 4px 6px #f4711833;
}
.exclusives-card h5 {
  text-align: left;
}

.ol_old-days {
  padding-left: 1rem;
  margin-top: 1rem;
}

.ol_old-days li {
  margin-top: 0.8rem;
}

.contact-projects {
  background-color: #fff;
  text-align: center;
}

.contact-cards {
  display: flex;
  gap: 3rem;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  /* margin-bottom: 1rem; */
}

.full-deatils {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--yellow);
  width: 100%;
  color: white;
  cursor: pointer;
  transition: background-color 1.3s ease;
}
.full-deatils:hover {
  background-color: var(--dark_yellow);
}
.service-div{
  width: 30%;
  align-items: center;
  text-align: center;
}
.service-text{
font-size: 0.9rem;
font-weight: 400;
line-height: 28.5px;
text-decoration-skip-ink: none;
}
.service-heading{
font-size: 1.2rem;
font-weight: 700;
line-height: 30px;
letter-spacing: -0.01em;
text-decoration-skip-ink: none;

}
.service-icon{
  width: 3rem;
  margin-bottom: 15px;
}

.service-cards {
  margin-top: 2rem;
  width: 100%;
}
.service-card {
  background-color: var(--orange);
  color: white;
  padding: 0.9rem;
  /* border-radius: 10px; */
  width: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.service-card + .w-50 {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s ease;
}

.service-card:hover + .w-50 {
  visibility: visible;
  opacity: 1;
}

.city-card {
  position: relative;
  width: 25rem; /* Set card width */
  height:12rem; /* Set card height */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Style the image */
.city-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the card without distortion */
}

/* Add hover effects for the card */
.city-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Overlay text on the image */
.city-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-info h3 {
  margin: 0;
}
.steps-div{
background-color: #F1F0FB;
border-radius: 16px;
}

/* Main Section */

.main-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.main-content p {
  font-size: 18px;
  color: #666;
}

/* Property Types Section */
.property-types {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.property-card {
  background-color: white;
  padding: 20px;
  width: 200px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 8px;
}

.property-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.property-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.carousel-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  ); /* Dark gradient overlay */
  z-index: 1;
}

.carousel-text {
  position: absolute;
  top: 50%; /* Align vertically to the center */
  left: 50%; /* Align horizontally to the center */
  transform: translate(-50%, -50%); /* Adjust position to center */
  z-index: 100;
}

.white {
  color: #fff !important;
}

/* Container styling */
.image-container {
  position: relative;
  border-radius: 10px;
  height: 250px;
  overflow: hidden; /* Ensures zoomed image doesn’t overflow */
}

/* Image styling */
.image-container .image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire container */
  transition: transform 0.5s ease; /* Smooth zoom transition */
  border-radius: 10px;
}

/* Overlay styling */
.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.246); /* Semi-transparent gray */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease; /* Smooth visibility transition */
  opacity: 1;
}

/* Overlay text styling */
.image-container .overlay-text {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  opacity: 1; /* Initially hidden */
  transition: opacity 0.5s ease; /* Smooth visibility transition */
}

/* Hover effects */
.image-container:hover .image {
  transform: scale(1.1); /* Zoom effect */
  border-radius: 10px;
}

.image-container:hover .overlay {
  opacity: 1; /* Show the gray overlay */
}

.image-container:hover .overlay-text {
  opacity: 1; /* Make the text visible */
}

.typewriter {
  background: linear-gradient(to bottom left, #cd8134 0%, #fda751 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* text-transform: uppercase; */
}

.custom-card {
  width: 420px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.custom-card:hover {
  transform: scale(1.03);
}

/* Background Image Styling */
.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.custom-card:hover .card-bg {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* Profile Image Styling */
.profile-img {
  width: 100px;
  height: 100px;
  z-index: 1;
  transition: transform 0.5s ease;
}

.custom-card:hover .profile-img {
  transform: scale(1.5) translate(-6rem, -5rem);
}

/* Info Styling */
.info {
  z-index: 1;
  transition: transform 0.5s ease;
}


.custom-card:hover .text-location {
  width: 100%;
  background-color: #deb887;
}
.location:hover .info {
  transform: translateY(-2.5rem);
}
.location:hover .text-location {
  width: 100%;
  background-color: #deb887;
}
.main-section {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}
.second-heading {
  color: #777 !important;
}

.continue-application {
  --color: #fff;
  --background: #404660;
  --background-hover: #3a4059;
  --background-left: #2b3044;
  --folder: #f3e9cb;
  --folder-inner: #beb393;
  --paper: #ffffff;
  --paper-lines: #bbc1e1;
  --paper-behind: #e1e6f9;
  --pencil-cap: #fff;
  --pencil-top: #275efe;
  --pencil-middle: #fff;
  --pencil-bottom: #5c86ff;
  --shadow: rgba(13, 15, 25, 0.2);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: var(--color);
  background: var(--bg, var(--background));
  width: 100%;
}

.continue-application > div {
  top: 0;
  left: 0;
  bottom: 0;
  width: 53px;
  position: absolute;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  background: var(--background-left);
}

.continue-application > div .folder {
  width: 23px;
  height: 27px;
  position: absolute;
  left: 15px;
  top: 35px;
}

.continue-application > div .folder .top {
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder .top svg {
  width: 24px;
  height: 27px;
  display: block;
  fill: var(--folder);
  transform-origin: 0 50%;
  transition: transform 0.3s ease var(--fds, 0.45s);
  transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application > div .folder:before,
.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  content: "";
  position: absolute;
  left: var(--l, 0);
  top: var(--t, 0);
  width: var(--w, 100%);
  height: var(--h, 100%);
  border-radius: 1px;
  background: var(--b, var(--folder-inner));
}

.continue-application > div .folder:before {
  box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow),
    0 3.5px 7px var(--shadow);
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  --l: 1px;
  --t: 1px;
  --w: 21px;
  --h: 25px;
  --b: var(--paper-behind);
}

.continue-application > div .folder:after {
  transform: translate(var(--pbx, 0), var(--pby, 0));
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .folder .paper {
  z-index: 1;
  --b: var(--paper);
}

.continue-application > div .folder .paper:before,
.continue-application > div .folder .paper:after {
  content: "";
  width: var(--wp, 14px);
  height: 2px;
  border-radius: 1px;
  transform: scaleY(0.5);
  left: 3px;
  top: var(--tp, 3px);
  position: absolute;
  background: var(--paper-lines);
  box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application > div .folder .paper:after {
  --tp: 6px;
  --wp: 10px;
}

.continue-application > div .pencil {
  height: 2px;
  width: 3px;
  border-radius: 1px 1px 0 0;
  top: 8px;
  left: 105%;
  position: absolute;
  z-index: 3;
  transform-origin: 50% 19px;
  background: var(--pencil-cap);
  transform: translateX(var(--pex, 0)) rotate(35deg);
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .pencil:before,
.continue-application > div .pencil:after {
  content: "";
  position: absolute;
  display: block;
  background: var(
    --b,
    linear-gradient(
      var(--pencil-top) 55%,
      var(--pencil-middle) 55.1%,
      var(--pencil-middle) 60%,
      var(--pencil-bottom) 60.1%
    )
  );
  width: var(--w, 5px);
  height: var(--h, 20px);
  border-radius: var(--br, 2px 2px 0 0);
  top: var(--t, 2px);
  left: var(--l, -1px);
}

.continue-application > div .pencil:before {
  -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
  clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application > div .pencil:after {
  --b: none;
  --w: 3px;
  --h: 6px;
  --br: 0 2px 1px 0;
  --t: 3px;
  --l: 3px;
  border-top: 1px solid var(--pencil-top);
  border-right: 1px solid var(--pencil-top);
}

.continue-application:before,
.continue-application:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: var(--color);
  transform-origin: 9px 1px;
  transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
  top: 50px;
  right: 14px;
  transition: transform 0.3s;
}

.continue-application:after {
  --r: 45deg;
}

.continue-application:hover {
  --cx: 2px;
  --bg: var(--background-hover);
  --fx: -40px;
  --fr: -60deg;
  --fd: 0.15s;
  --fds: 0s;
  --pbx: 3px;
  --pby: -3px;
  --pbd: 0.15s;
  --pex: -24px;
}

/* From Uiverse.io by xantha01 */
.swipe {
  position: relative;
  background-color: var(--orange);
  width: 150px;
  height: 50px;
  color: white;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: bolder;
  padding-left: 40px;
  cursor: pointer;
  transition: 0.35s ease;
}

.swipe:hover {
  padding-left: 0;
  padding-right: 40px;
  /* color: #324b4c; */
  color: #fff;
}

.container-swipe {
  position: absolute;
  left: 20px;
  top: 8px;
  /* top: 7px;
  width: 40px;
  height: 40px; */
  /* background: #7ab5b7; */
  border-radius: 50%;
  transition: 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f1f4f7;
}

.swipe:hover .container-swipe {
  left: calc(100% - 55px);
  color: #324b4c;
}

.center{
    display: flex;
    align-items: center;
    justify-content: center;
}



@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
figure.snip1477 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 400px;
  border-radius: 10px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
}
figure.snip1477 *,
figure.snip1477 *:before,
figure.snip1477 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
figure.snip1477 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.9;
}
figure.snip1477 video {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.9;
  height: 100%;
}
figure.snip1477 .title {
  position: absolute;
  /* top: 58%; */
  bottom: 1%;
  left: 25px;
  padding: 5px 10px 10px;
  text-transform: capitalize;
}
figure.snip1477 .title:before,
figure.snip1477 .title:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
figure.snip1477 .title:before {
  top: 0;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
figure.snip1477 .title:after {
  bottom: 0;
  right: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
figure.snip1477 .title div:before,
figure.snip1477 .title div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
figure.snip1477 .title div:before {
  top: 10px;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
figure.snip1477 .title div:after {
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
figure.snip1477 h2,
figure.snip1477 h4 {
  margin: 0;
  text-transform: uppercase;
}
figure.snip1477 h2 {
  font-weight: 400;
}
figure.snip1477 h4 {
  display: block;
  font-weight: 700;
  background-color: var(--orange);
  padding: 5px 10px;
  color: #fff;
}
figure.snip1477 figcaption {
  position: absolute;
  bottom: 42%;
  left: 25px;
  text-align: left;
  opacity: 0;
  padding: 5px 60px 5px 10px;
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 1.5px;
}
figure.snip1477 figcaption p {
  margin: 0;
}
figure.snip1477 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
figure.snip1477:hover img,
figure.snip1477.hover img {
  zoom: 1;
  filter: alpha(opacity=35);
  -webkit-opacity: 0.35;
  opacity: 0.35;
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after,
figure.snip1477:hover .title div:before,
figure.snip1477.hover .title div:before,
figure.snip1477:hover .title div:after,
figure.snip1477.hover .title div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
figure.snip1477:hover .title:before,
figure.snip1477.hover .title:before,
figure.snip1477:hover .title:after,
figure.snip1477.hover .title:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.snip1477:hover figcaption,
figure.snip1477.hover figcaption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}



/* Hover img change */
 .location .image-card {
    position: relative;
    width: 420px; /* Set your desired width */
    height: 400px; /* Set your desired height */
    overflow: hidden;
    border-radius: 8px; /* Optional: for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: for shadow effect */
}

.location .image-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease; /* Smooth transition effect */
}

.location .image-card .hover-image {
    opacity: 0; /* Initially hidden */
}

.location .image-card:hover .hover-image {
    opacity: 1; /* Show hover image on hover */
}

.location .image-card:hover .default-image {
    opacity: 0; /* Hide default image on hover */
}

.default-image{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.location .card-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 5px;
    border-radius: 4px; /* Optional: for rounded corners */
}

.location-bg{
  /* background-color: var(--orange); */
  background-color: #fff;
  color: #000000;
  text-transform: uppercase;
}

.step{
  background-color: #F99245;
  color:white;
font-size: 1rem;
font-weight: 700;
line-height: 24px;
text-align: center;
text-decoration-skip-ink: none;
border-radius: 60px;
width: 8rem;
}
.step-div-option{
  width: 8rem;
}
.step-option-text{
  font-size: 0.9rem;
font-weight: 400;
line-height: 16px;
text-decoration-skip-ink: none;

}
.step-arrows{
  width: 2rem;
  margin-top: 0.5rem;
  vertical-align: top !important;
  align-self: self-start;
}
.step-btn .btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #F99245;
  --color-background: #F99245;
  --color-outline: #9ee5fa80;
  --color-shadow: #F99245;
}

.step-btn .btn-content {
  display: flex;
  align-items: center;
  padding: 0px 3px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: var(--color-text);
  /* background: var(--color-background); */
  transition: 1s;
  border-radius: 100px;
  /* box-shadow: 0 0 0.2em 0 var(--color-background); */
}

.step-btn .btn-content,
.step-btn .btn-content {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  /* box-shadow: 0 0 0.4em 0 var(--color-background); */
}

.step-btn .btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.step-btn .btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.step-btn .icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}

/* SVG */
.step-btn #arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.step-btn #arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.step-btn .btn-content #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.step-btn .btn-content #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.step-btn .btn-content #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: #9ee5fa;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

.card-icon img {
  transition: transform 0.9s ease; /* Smooth transition effect */
}

.home-card:hover .img360 {
  animation: flipRotate 1.5s ease-in-out forwards; /* Trigger animation on hover */
}

.img360 {
  transition: transform 0.6s ease-in-out; /* Smooth animation */
}

@keyframes flipRotate {
  0% {
    transform: scaleX(1); /* Original position */
  }
  50% {
    transform: scaleX(-1); /* Mirror horizontally */
  }
  100% {
    transform: scaleX(1); /* Back to the original position */
  }
}
.choose-card-img{
  align-self: self-start;
  width: 7rem;
}
.choose-card{
  width: 30rem;
  height: 13rem;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.marquee{
  animation: marquee 25s linear infinite;
}
.marquee-wrapper:hover .marquee{
  animation-play-state: paused;
}
.choose-card:hover{
  transition: background-color 0.3s ease; /* Smooth transition for background color */
  background-color: #f9f8f831;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100%{
    transform: translateX(-440%)
  }
}
.join-section{
  padding: 5rem 2rem;
  background: linear-gradient(90deg, rgba(247, 247, 253, 0.5) 0%, #F7F7FD 50.17%, rgba(247, 247, 253, 0.5) 100%);
  box-shadow: 0px 4px 200px 0px #E8F9F733;
}
.join-section a{
  color: #000000 !important;
}
.join-cards {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 1.8rem;
  justify-items: flex-start;
  align-items: center;
  width: 45%;
}
.join-white{
  background-color: #ffff;
  border-radius: 20px;
  width: 50%;
}
.join-orange{
  border-radius: 20px;
  background-color: #FFECDE;
  width: 50%;
}
.join-heading{
  font-size: 1.5rem;
font-weight: 600;
line-height: 30px;
letter-spacing: -0.01em;
text-decoration-skip-ink: none;
}
.join-imgae-div{
  width: 50%;
}
.join-content{
  width: 45%;
}
.join-img{
  align-self: flex-end;
}
.about-section{
  background:url("../images/win-win-img.jpg") no-repeat center center/cover !important;
  padding: 5rem 2rem;
  height: 45rem;
}


/* calender */

.fc-toolbar-title{
  color: #1A252F!important;
  font-weight: normal!important;
  font-size: 2rem!important;
}
.fc-col-header-cell-cushion{
  color: #1A252F!important;
  font-weight: normal!important;
  padding: 1rem 2rem!important;
}

.fc-timegrid-slot-label-cushion, .fc-timegrid-slot{
  padding: 0rem 1.3rem!important;
}
.footer-heading{
font-size: 0.9rem;
font-weight: 700;
line-height: 24px;
text-align: left;
text-decoration-skip-ink: none;
margin-top: 1rem;
}
.footer-content{

}

/* signup and login */

.form {
  /* background: rgba(19, 35, 47, .9); */
  padding: 40px;
  max-width: 600px;
  background-color: #FFF; 
  box-shadow: 4px 6px 18px 0px #02170C1A !important; 
  border: 1px solid #F1F0FB !important; 
  border-radius: 2rem !important;
}

.tab-group {
  list-style: none;
  padding: 10px;
  margin: 0 0 40px 0;
  background-color: #F99245;
  border-radius: 6px;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 7px;
  color: white;
  font-size: 1rem;
  float: left;
  width: 45%;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
  border-radius: 6px;
}
.tab-group .active a {
  color: var(--orange);
  background-color: #ffffff;
}

.tab-content > div:last-child {
  display: none;
}

.form h1 {
  text-align: center;
  color: #777;
  font-weight: 300;
  margin: 0 0 40px;
}

form label {
  position: absolute;
  transform: translateY(1px);
  top: 54%;
  left: 20px;
  color: #777;
  transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 1rem;
  text-wrap: nowrap;
}
label .req {
  margin: 2px;
  color: var(--orange);
}
label.active {
  transform: translateY(62px);
  left: 2px;
  font-size: 14px;
}
label.active .req {
  opacity: 0;
}
label.highlight {
  color: #777;
}

form input, textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  background: none;
  background-image: none;
  border: 1px solid #777;
  color: #666;
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus {
  outline: 0;
  border-color: var(--dark_orange);
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #F99245;
  color: #ffffff;
  transition: all .5s ease;
  -webkit-appearance: none;
}

.button-block {
  display: block;
  width: 100%;
  margin-top: 2rem;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

.custom-width{
  width:50% !important;
}

/* Responsive Styling */
@media (max-width: 575px) {
  
  .navbar-links {
    flex-direction: column;
  }
  .new-arrivals{
    padding: 5rem 0;
  }
  .swiper{
    width: 90% !important;
  }
  .hero-content{
    width: 80%;
  }
  .city-card{
    width: 20rem !important;
    height: 10rem;
  }
  .sweet-home-image{
    overflow: hidden;
  }
  .choose-card{
    width: 18rem;
    height: 20rem;
    background-color: #FFFFFF;
    border-radius: 8px;
  }
  @keyframes marquee {
    0% { transform: translateX(0%); }
    100%{
      transform: translateX(-465%)
    }
  }
}
@media (max-width:500px){
  .swiper{
    width: 85% !important;
  }
}
@media (min-width:500px) and (max-width: 722px) {
  .swiper{
    width: 70% !important;
  }
}
@media (max-width: 768px) {
  
  /* Navbar */
  .navbar{
    padding: 0;
  }
  .navbar-links {
    gap:0.3rem;
    padding: 8px 8px;
  }

  .location .image-card{
    width: 100%;
    height: 300px;
  }
  /* hero */
  .hero{
    height: 90vh;
  }
  .hero-content{
    width: 90%;
  }
  .radio-inputs{
    width: 100%;
    display: flex;
  }

  .radio{
    width: 50%;
  }

  .search-container {
    flex-wrap: wrap;
    border-top-right-radius: 0px;
  }

  .input-group{
    padding: 1rem 1rem;
  }
  .input-group input{
    width: 90%;
  }
  .search-btn {
    width: 100%;
  }
  .city-filter{
    width: 125px;
  }
  .home-cards {
    grid-template-columns: 1fr;
  }
  .home-card {
    width: 90%;
  }
  .filter-cards {
    grid-template-columns: 1fr;
  }
  .filter-cards a{
    width: 100%;
  }

  .filter-card{
    width: 100%;
  }
  .city-card{
    width: 30rem;
    height: 15rem;
  }

  .row>*{
    padding-right: 0!important;
    padding-left: 0!important;
  }

  .snip1477{
    height: 195px;
    
  }
  .snip1477 .title {
    font-size: 14px;
  }
  .snip1477 .title h4{
    font-size: 1.2rem;
  }

  figure.snip1477 figcaption{
    /* padding: 2px 5px; */
  }

  figure.snip1477 video{
    object-fit: cover;
  }
  /* step */
  .step-div{
    width: 9rem;
  }
  .step-div-option{
    margin: 1rem ;
  }
  .step-arrows{
    transform: rotate(90deg) !important;
  }
  .step-card{
    flex-direction: column;
    align-items: center;
  }
  .step-btn{
    transform:  rotate(90deg);
    margin-block: 1rem;
  }

  /* Just like the good old days */
  .service-cards{
    gap: 1rem;
  }

  /* location */
  .location-container a{
    width: 100%;
  }
  .redfine-big-img{
    aspect-ratio: 1.3/1;
    height: 20rem;
    object-fit: cover;
  }
  
  .redfine-small-img{
    height: 24.2rem;
    object-fit: cover;
    }

  /* our service */
  .service-div{
    width: 100%;
  }
  .our-service .filter-cards{
    gap: 0;
  }
  .concierge-heading-sub{
    width: 100%;
    }

    .sweet-home-img{
      width: 27rem !important;
    }

  /* calender */
  .fc-header-toolbar{
    flex-direction: column;
    gap: 1rem;
  }

  /* login */
  #login, #signup{
    text-align:start;
  }

  #login p, #signup p{
    font-size: 1rem !important;
  }
  form label{
    font-size: 0.8rem;
  }
  form input, textarea {
    font-size: 1rem;
  }
  .field-wrap{
    margin-bottom: 0;
  }


  .join-cards {
    width: 100%!important;
    flex-wrap: wrap;
  }
  .join-white{
    width: 100%;
  }.join-orange{
    width: 100%;
  }
  .join-imgae-div{
    width: 100% !important;
  }
  .join-content{
    width: 100%;
  }
  /* About us */
  .about-us .content{
    flex-direction: column-reverse;
  }
  .about-us .content img{
    width: 100%;
  }
}

@media (max-width:925px){
  .hero-content{
    width: 90%;
  }
  .input-group{
    padding: 0.9rem 0.9rem;
  }
  .sweet-home-img{
    width: 15rem;
  }
  .custom-width{
    width: 100% !important;
}
}

@media (min-width:926px) and (max-width:1140px){
  .hero-content{
    width: 90%;
  }
  .sweet-home-section{
    max-width: 90%;
  }
}
@media (min-width:1400px){
  .swiper{
    width: 63%;
  }
  .sweet-home-img{
    width: 25rem;
  }
  .sweet-home-image{
    margin: 0 5rem;
  }
  .sweet-home-section{
    max-width: 80%;
  }
}