.slide {
  position: relative;
  /* width: 150%; */
  height: 550px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  color: var(--white);
  justify-content: center;
  background-image: linear-gradient(to right, #060606b4, rgba(42, 39, 39, 0.915));
}

.ul-banner-2-slide-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    width: -webkit-fill-available;
}

.ul-banner-title {
    font-size: 45px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.breadcrumb-box {
    display: inline-block;
    padding: 0px 25px;
    background-color: rgba(123, 120, 120, 0.292);
	color: white;
}

.ul-banner-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.breadcrumb{
   margin-top: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin-right: 6px;
}

.breadcrumb a:hover {
  color: #a42b13;
}


/*------------------- Responsive -------------------*/

/* Tablet view (≤ 991px) */
@media (max-width: 991px) {
  .slide {
    height: 450px;
    padding: 50px 20px;
  }

  .ul-banner-title {
    font-size: 30px;
	  text-align: center;
  }

  .breadcrumb-box {
    padding: 0px 20px;
  }
}

/* Mobile view (≤ 576px) */
@media (max-width: 576px) {
  .slide {
    height: 350px;
    padding: 30px 15px;
  }

  .ul-banner-title {
    font-size: 20px;
	text-align: center;
  }

  .breadcrumb-box {
		padding: 0px 15px;
        font-size: 14px;
  }

  .breadcrumb a {
    font-size: 0.85rem;
    margin-right: 5px;
  }
}
/*---------------------Content Details---------------------------*/

.dream-home {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 60px 0;
}

.dream-home1 {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem;
    flex-direction: row-reverse;
}
.content {
  flex: 1 1 55%;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2b2b2b;
  font-weight: bold;
	text-transform: uppercase;
}

.content p {
  font-size: 1rem;
  color: #555;
}

.image {
  flex: 1 1 40%;
}

.image img {
  width: 100%;
  object-fit: cover;
}

.images {
  flex: 1 1 40%;
}
.images img {
  width: 100%;
  object-fit: cover;
  margin-top: -0.1rem;
}

/*---------------------------------- Responsive Styling ----------------------------------*/

/* Tablet View */
@media (max-width: 1024px) {
  .dream-home,
  .dream-home1 {
    padding: 3rem 2rem;
    gap: 1.5rem;
  }

  .content h2 {
    font-size: 2rem;
	      text-align: start;
        text-transform: uppercase;

  }

  .content p {
    font-size: 0.95rem;
  }

}

/* Mobile View */
@media (max-width: 768px) {
  .dream-home,
  .dream-home1 {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    text-align: start;
  }

  .content {
    flex: 1 1 100%;
    order: 2;
  }

  .image,
  .images {
    flex: 1 1 100%;
    order: 1;
  }

  .content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
	          text-transform: uppercase;

  }

  .content p {
    font-size: 0.95rem;
  }

  .image img,
  .images img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .dream-home,
  .dream-home1 {
    padding: 2rem 1rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .image img,
  .images img {
  }
}