* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: #720d8b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.4rem;
  font-weight: 300;
}

h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

h5 {
  font-size: 1rem;
  font-family: "Playfair Display", serif;
}

button.rounded {
  background-color: #720d8b;
  border: none;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  line-height: 1.5;
  cursor: pointer;
}

li {
  list-style-type: none;
}
li a {
  text-decoration: none;
}

body {
  font-family: "Roboto", "Helvetica", "Sans-serif";
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.flex {
  display: flex;
  justify-content: space-between;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.header_section {
  height: 100vh;
}
.header_section .navHeader {
  width: 100%;
  max-width: 100vw;
  background: transparent;
  padding: 1.5rem 0;
  position: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
  transition: padding 0.3s ease-in-out, background 0.3s ease-in-out;
}
.header_section .navHeader .logoBox {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-40px);
}
.header_section .navHeader .logoBox #logoImg {
  width: 50px;
}
.header_section .navHeader .logoBox #logo {
  font-size: 2rem;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(90deg, #3945e7, #720d8b); /* Example blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}
.header_section .navHeader nav {
  display: flex;
  align-items: center;
  position: static;
  transition: transform 0.3s ease-out;
}
.header_section .navHeader nav ul {
  justify-content: center;
}
.header_section .navHeader nav ul li {
  display: inline-block;
  padding: 0 1.5rem;
}
.header_section .navHeader nav ul li a {
  color: #e4e5e6;
  font-size: 1rem;
  font-weight: 400;
}
.header_section .navHeader nav ul li a:hover, .header_section .navHeader nav ul li a:active {
  color: #720d8b;
  border-bottom: 1px solid #720d8b;
}
.header_section .navHeader nav.scrolled a {
  color: #ffffff;
  font-weight: 300;
}
.header_section .navHeader nav #closeBtn {
  display: none;
}
.header_section .navHeader #barBtn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  border-radius: 0 10px;
  display: none;
}
.header_section .navHeader #barBtn:hover {
  background-color: #333;
}
.header_section .navHeader #barBtn:hover .barline {
  background-color: #fff;
}
.header_section .navHeader #barBtn:active {
  outline: none;
}
.header_section .navHeader #barBtn .barline {
  width: 80%;
  height: 2px;
  background-color: rgba(52, 58, 64, 0.9);
  margin: 20% auto;
}
.header_section #hero-container {
  height: 100%;
  width: 100%;
  background: url("./images/bg-01.jpg") center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.header_section #hero-container .fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 74, 82, 0.336);
}
.header_section #hero-container .hero-text {
  position: absolute;
  top: 40%;
  margin: -100px auto 0;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  max-width: 800px;
  line-height: 30px;
}
.header_section #hero-container .hero-text h1 {
  background: linear-gradient(90deg, #720d8b, #778eff); /* Example blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}
.header_section #hero-container .hero-text p {
  color: #e4e5e6;
}

.how-it-works {
  padding: 4rem 0;
  background: #f8f9fa;
}
.how-it-works h2 {
  text-align: center;
}
.how-it-works .flex div {
  padding: 0 2rem;
  text-align: center;
}
.how-it-works .flex div span {
  color: #720d8b;
  font-size: 2rem;
  margin: 1rem 0;
}
.how-it-works .flex div h4,
.how-it-works .flex div p {
  margin: 1rem 0;
}
.how-it-works .flex div p {
  line-height: 30px;
  color: #999;
}

.properties {
  padding: 4rem 0;
}
.properties .container {
  position: relative;
}
.properties .container h2 {
  margin-bottom: 1.5rem;
}
.properties .container .slidersClick .slider-arrow {
  border: none;
  padding: 0 1rem;
  background: transparent;
  color: #720d8b;
  font-size: 1rem;
  position: absolute;
  top: 1rem;
  right: 0;
  cursor: pointer;
}
.properties .container .slidersClick .slider-prev {
  margin-right: 4rem;
  border-right: solid 1px black;
}
.properties .container .slider-viewport {
  overflow: hidden;
  width: 100%;
}
.properties .container .slider-viewport #properties-slider {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.properties .container .slider-viewport #properties-slider .single-slider {
  background-color: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.properties .container .slider-viewport #properties-slider .single-slider img {
  object-fit: cover;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details {
  bottom: 10px;
  width: 100%;
  max-height: 20%;
  padding: 1rem;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details .price {
  font-size: 1rem;
  font-weight: 800;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details span {
  color: #999;
  padding-right: 10px;
  margin-left: 5px;
  border-right: 1px solid #999;
  font-size: 0.8rem;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details span:first-of-type {
  margin-left: 0 !important;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details span:last-of-type {
  border-right: none;
}
.properties .container .slider-viewport #properties-slider .single-slider .property-details address {
  color: #999;
  padding: 5px 0;
  font-size: 0.8rem;
}
.properties .container .btn-box {
  display: flex;
  justify-content: center;
}
.properties .container .btn-box .btn {
  padding: 1rem 5rem;
  background-color: #720d8b;
  border: none;
  outline: none;
  border-radius: 25px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 3rem;
}

.agent-section {
  margin: 1rem 0;
}
.agent-section .container {
  display: felx;
}
.agent-section .container h2 {
  text-align: center;
}
.agent-section .container p {
  color: #999;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.5rem;
  text-align: center;
}
.agent-section .container .agent-box {
  margin-top: 2rem;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}
.agent-section .container .agent-box img {
  width: 100%;
  aspect-ratio: 1/1;
}
.agent-section .container .agent-box h3 {
  font-size: 1rem;
  color: #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}
.agent-section .container .agent-box p {
  font-size: 0.9rem;
  text-align: start;
}

.the-best {
  margin: 6rem 0;
  padding: 5rem 0;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.the-best .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.the-best .container .left-box {
  width: 48%;
}
.the-best .container .left-box img {
  width: 100%;
  object-fit: cover;
}
.the-best .container .right-box {
  width: 42%;
  padding: 2rem 0;
}
.the-best .container .right-box p {
  color: #999;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.5rem;
}
.the-best .container .right-box ul {
  padding-left: 1rem;
  margin-top: 1rem;
}
.the-best .container .right-box ul li {
  list-style-type: disc;
  color: #333;
  padding-top: 0.8rem;
  font-size: 1rem;
  opacity: 0.8;
}
.the-best .container .right-box .btn {
  margin-top: 2rem;
}

.services {
  margin: 5rem 0;
  padding-bottom: 4rem;
  border-bottom: 1px solid #ccc;
}
.services h2 {
  text-align: center;
  margin: 2rem 0;
}
.services .container {
  flex-wrap: wrap;
}
.services .container .service-box {
  margin-bottom: 1.5rem;
  max-width: 30%;
  font-family: "Roboto", "Helvetica", "Sans-serif";
}
.services .container .service-box .icon {
  color: #720d8b;
  font-size: 2rem;
  float: left;
  padding-top: 20px;
  width: 20%;
  text-align: center;
}
.services .container .service-box .content {
  float: right;
  width: 75%;
}
.services .container .service-box .content h5 {
  font-family: "Roboto", "Helvetica", "Sans-serif";
  font-size: 1.3rem;
  font-weight: 300;
  color: #333;
  padding: 0.8rem 0;
  opacity: 0.8;
}
.services .container .service-box .content p {
  font-size: 1rem;
  line-height: 1.8rem;
  color: #333;
  opacity: 0.7;
}
.services .container .service-box .content a {
  text-decoration: none;
  color: #720d8b;
  margin: 1rem 0;
  display: block;
}

.client .swiper h2 {
  text-align: center;
}
.client .swiper .swiper-wrapper {
  margin: 2rem 0;
}
.client .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client .swiper .swiper-wrapper .swiper-slide p {
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
  color: #333;
  opacity: 0.7;
}
.client .swiper .swiper-wrapper .swiper-slide .details {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.client .swiper .swiper-wrapper .swiper-slide .details img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.client .swiper .swiper-button-next::after,
.client .swiper .swiper-button-prev::after {
  font-size: 20px;
  color: #720d8b;
  font-weight: 600;
}

.contact-Us {
  padding: 3rem 0;
  background-color: #f8f9fa;
}
.contact-Us h2 {
  text-align: center;
  margin: 3rem 0;
}
.contact-Us .container {
  display: flex;
  justify-content: space-between;
}
.contact-Us .container .left-side {
  background-color: #fff;
  width: 60%;
  padding: 3rem;
}
.contact-Us .container .left-side h5 {
  font-size: 1.5rem;
  font-weight: 200;
  padding-bottom: 2rem;
}
.contact-Us .container .left-side form > div > label {
  display: block;
  margin: 10px 0;
}
.contact-Us .container .left-side form > div > input,
.contact-Us .container .left-side textarea {
  border: solid 1px #ccc;
  font-size: 1rem;
  padding: 0.8rem 0.6rem;
  width: 100%;
  border-radius: 30px;
  color: #333;
  opacity: 0.9;
  outline: none;
}
.contact-Us .container .left-side textarea {
  height: 200px;
  resize: none;
}
.contact-Us .container .left-side .sendBtn {
  margin-top: 2rem;
}
.contact-Us .container .right-side {
  width: 35%;
  padding-left: 10px;
}
.contact-Us .container .right-side div {
  margin: 2rem 0;
}
.contact-Us .container .right-side div > h5 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #333;
  opacity: 0.8;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-Us .container .right-side div > p {
  font-size: 1rem;
}
.contact-Us .container .right-side .address p {
  font-style: italic;
  color: #999;
}
.contact-Us .container .right-side .phone p,
.contact-Us .container .right-side .email p {
  color: #720d8b;
}

.footer {
  padding: 6rem 0;
  background-color: #333;
}
.footer .container .upperSection {
  display: flex;
  padding-bottom: 3rem;
  border-bottom: 1px solid #777;
}
.footer .container .upperSection div > h5 {
  color: #fff;
  padding: 1rem 0;
  opacity: 0.9;
  font-size: 1.2rem;
  font-weight: 200;
}
.footer .container .upperSection .about {
  width: 45%;
}
.footer .container .upperSection .about p {
  width: 80%;
  color: #999;
  opacity: 0.9;
  line-height: 30px;
}
.footer .container .upperSection .links {
  width: 20%;
}
.footer .container .upperSection .links ul li {
  color: #999;
  opacity: 0.9;
  padding: 0.8rem 0;
  cursor: pointer;
}
.footer .container .upperSection .subscribe {
  width: 35%;
}
.footer .container .upperSection .subscribe .input-Div {
  overflow: hidden;
  display: flex;
}
.footer .container .upperSection .subscribe .input-Div input {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 66%;
  float: left;
  padding: 1rem;
  background-color: transparent;
  border: solid 1px #999;
  font-size: 1rem;
  color: #999;
  outline: none;
}
.footer .container .upperSection .subscribe .input-Div input::placeholder {
  color: #999;
  font-weight: 300;
  letter-spacing: 1px;
}
.footer .container .upperSection .subscribe .input-Div button {
  width: 35%;
  border: none;
  outline: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}
.footer .container .upperSection .subscribe .followH {
  margin-top: 1rem;
}
.footer .container .upperSection .subscribe .icons {
  display: flex;
  width: 70%;
  justify-content: space-between;
  color: #720d8b;
}
.footer .container .underSection {
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}
.footer .container .underSection p {
  width: 100%;
  color: #999;
  text-align: center;
}
.footer .container .underSection p .fa-heart {
  color: #720d8b;
}

@media (max-width: 991px) {
  .header_section .navHeader nav {
    display: inline;
    background-color: #333;
    width: 30%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 5;
    transition: ease-in-out 0.4s;
  }
  .header_section .navHeader nav ul li {
    display: block;
    padding: 1.5rem 0;
    text-align: center;
  }
  .header_section .navHeader nav ul li a {
    color: #fff;
  }
  .header_section .navHeader nav ul li:first-child {
    padding-top: 5rem;
  }
  .header_section .navHeader nav.open {
    right: 0;
  }
  .header_section .navHeader nav #closeBtn {
    display: flex;
    color: #999;
    float: right;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .header_section .navHeader nav #closeBtn:hover {
    color: #720d8b;
  }
  .header_section .navHeader #barBtn {
    display: inline;
  }
  .how-it-works {
    padding: 2rem 0;
  }
  .how-it-works .flex div {
    padding: 0 1.5rem;
  }
  .agent-section .container p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .agent-section .container .agent-box p {
    font-size: 0.8rem;
  }
  .the-best .container .right-box {
    padding: 1rem 0;
    width: 45%;
  }
  .the-best .container .right-box h2 {
    font-size: 2rem;
  }
  .the-best .container .right-box p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2rem;
  }
  .the-best .container .right-box ul {
    margin-top: 0.3rem;
  }
  .the-best .container .right-box ul li {
    padding-top: 0.3rem;
  }
  .the-best .container .right-box .btn {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .header_section #hero-container .hero-text {
    margin: -130px auto 0;
    width: 500px;
  }
  .header_section #hero-container .hero-text h1 {
    font-size: 3rem;
  }
  .header_section #hero-container .hero-text p {
    font-size: 1rem;
  }
  .how-it-works {
    padding: 3rem 0;
  }
  .how-it-works .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .how-it-works .flex div {
    padding: 0 1.5rem;
  }
  .how-it-works span,
  .how-it-works h4,
  .how-it-works p {
    margin: 0.8rem 0;
  }
  .properties {
    padding: 2rem 0;
  }
  .properties .container h2 {
    font-size: 2.5rem;
  }
  .properties .container .slidersClick .slider-arrow {
    padding: 0 0.8rem;
    font-size: 0.8rem;
    top: 1.5rem;
  }
  .properties .container .slidersClick .slider-prev {
    margin-right: 3.2rem;
    border-right: solid 1px black;
  }
  .properties .container .btn-box {
    display: flex;
    justify-content: center;
  }
  .properties .container .btn-box .btn {
    padding: 0.8rem 3rem;
    border-radius: 25px;
    font-size: 0.8rem;
    margin-top: 2rem;
  }
  .agent-section .container h2 {
    font-size: 2rem;
  }
  .agent-section .container p {
    max-width: 80%;
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
  .agent-section .container .agent-box {
    margin-top: 1.7rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .agent-section .container .agent-box .agent h3 {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .the-best {
    padding: 4rem 0;
    margin: 2rem 0;
  }
  .the-best .container .left-box {
    display: none;
  }
  .the-best .container .right-box {
    width: 100%;
    padding: 2rem;
  }
  .the-best .container .right-box p {
    color: #999;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2.5rem;
  }
  .the-best .container .right-box ul {
    padding-left: 1rem;
    margin-top: 1rem;
  }
  .the-best .container .right-box ul li {
    list-style-type: disc;
    color: #333;
    padding-top: 0.8rem;
    font-size: 1rem;
    opacity: 0.8;
  }
  .the-best .container .right-box .btn {
    margin-top: 2rem;
  }
  .services .container {
    padding: 0 1rem;
  }
  .services .container .service-box {
    margin-bottom: 1.3rem;
    max-width: 48%;
  }
  .client .container h2 {
    font-size: 2rem;
  }
  .footer .container .upperSection {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .container .upperSection .about {
    width: 70%;
    padding: 0 2rem;
  }
  .footer .container .upperSection .subscribe {
    width: 70%;
    padding: 0 2rem;
  }
  .footer .container .upperSection .subscribe .icons {
    display: flex;
    width: 40%;
    color: #999;
  }
}
@media (max-width: 556px) {
  .header_section .navHeader nav ul li {
    padding: 1rem 0;
  }
  .header_section .navHeader nav ul li a {
    font-size: 1rem;
  }
  .header_section .navHeader nav ul li:first-child {
    padding-top: 4rem;
  }
  .header_section .navHeader nav.open {
    right: 0;
  }
  .header_section .navHeader nav #closeBtn {
    color: #999;
    float: right;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .header_section .navHeader nav #closeBtn:hover {
    color: #720d8b;
  }
  .header_section .navHeader #barBtn {
    display: inline;
  }
  .header_section #hero-container .hero-text {
    margin: -100px auto 0;
    width: 90%;
  }
  .header_section #hero-container .hero-text h1 {
    font-size: 2rem;
  }
  .header_section #hero-container .hero-text p {
    font-size: 0.8rem;
  }
  .how-it-works {
    padding: 2rem 0;
  }
  .how-it-works h2 {
    font-size: 2rem;
  }
  .how-it-works span,
  .how-it-works h4,
  .how-it-works p {
    margin: 0.6rem 0;
  }
  .agent-section .container p {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .agent-section .container .agent-box {
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .agent-section .container .agent-box .agent h3 {
    font-size: 0.9rem;
    font-weight: 400;
  }
  .agent-section .container .agent-box .agent p {
    font-size: 0.7rem;
  }
  .the-best {
    margin: 2rem 0;
  }
  .the-best .container .left-box {
    display: none;
  }
  .the-best .container .right-box {
    width: 100%;
    padding: 1rem;
  }
  .services h2 {
    font-size: 1.8rem;
  }
  .services .container {
    padding: 0 1rem;
  }
  .services .container .service-box {
    margin-bottom: 1.3rem;
    max-width: 100%;
  }
  .client .swiper h2 {
    font-size: 1.5rem;
  }
  .client .swiper .swiper-wrapper {
    margin-top: 0;
  }
  .client .swiper .swiper-wrapper .swiper-slide p {
    max-width: 80%;
    font-size: 1rem;
  }
  .client .swiper .swiper-wrapper .swiper-slide .details {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .client .swiper .swiper-wrapper .swiper-slide .details img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .contact-Us h2 {
    font-size: 1.5rem;
  }
  .contact-Us .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contact-Us .container .left-side {
    width: 95%;
  }
  .contact-Us .container .left-side h5 {
    font-size: 1.3rem;
  }
  .contact-Us .container .left-side form > div > label {
    font-size: 1rem;
    display: block;
    margin: 7px 0;
  }
  .contact-Us .container .left-side form > div > input,
  .contact-Us .container .left-side textarea {
    border: solid 1px #ccc;
    font-size: 1rem;
    padding: 0.8rem 0.6rem;
    width: 100%;
    border-radius: 30px;
    color: #333;
    outline: none;
    opacity: 0.9;
  }
  .contact-Us .container .left-side textarea {
    height: 170px;
  }
  .contact-Us .container .left-side .sendBtn {
    margin-top: 1.5rem;
  }
  .contact-Us .container .right-side {
    width: 98%;
    padding: 20px 10px;
  }
  .contact-Us .container .right-side div {
    margin: 1.5rem 0;
  }
  .contact-Us .container .right-side div > h5 {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    color: #333;
    opacity: 0.8;
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .contact-Us .container .right-side div > p {
    font-size: 0.9rem;
  }
  .footer .container .upperSection {
    display: flex;
    flex-direction: column;
  }
  .footer .container .upperSection .about {
    width: 100%;
    padding: 0;
  }
  .footer .container .upperSection .about p {
    width: 90%;
  }
  .footer .container .upperSection .links {
    width: 100%;
  }
  .footer .container .upperSection .subscribe {
    width: 100%;
    padding: 0;
  }
}

/*# sourceMappingURL=main.css.map */
