@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --primary: #306f6e;
  --secondary: #29352f;
  --gap: 4rem;
}

p,
a,
li,
h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  font-family: "Roboto", serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Lora", serif;
  color: #000;
  text-transform: capitalize;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

.preLoader img {
  width: 500px;
}

/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn:hover i {
  background: var(--primary);
  color: var(--white);
}

.themeBtn:hover {
  color: var(--primary);
}

/* btn css */

/* mouse animation css  */

.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

.wrapper {
  position: relative;
}

.mouse {
  position: absolute;
  bottom: 6rem;
  left: 13%;
  z-index: 11;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  transform: scale(-1);
  gap: 8px;
}

/* mouse animation css  */

/* navigation css */

header {
  position: absolute;
  z-index: 11;
  padding: 0 0 0 15rem;
  left: 0;
  right: 0;
}

a.logo img {
  width: 394px;
}

.btnmenu {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  box-shadow: none !important;
  padding: 0 !important;
}

.btnmenu span {
  display: block;
  width: 67px;
  height: 3px;
  border-radius: 6px;
  background-color: var(--white);
  transition: 0.5s ease;
}

.btnmenu span:nth-child(1) {
  width: 85px;
}

.btnmenu span:nth-child(3) {
  width: 85px;
}

.isopen .navbar .themeBtn {
  display: none;
}

.isopen .navbar ul .humburger {
  position: relative;
}

.isopen .btnmenu span:nth-child(1),
.isopen .btnmenu span:nth-child(3) {
  width: 60px;
}

.isopen .btnmenu span:nth-child(2) {
  width: 0;
}

.isopen .btnmenu span:nth-child(1) {
  transform: rotate(-45deg) translate(-15px, 15px);
}

.isopen .btnmenu span:nth-child(3) {
  transform: rotate(45deg) translate(-10px, -10px);
}

.isopen header::before {
  background: unset;
}

.isopen header .logo {
  filter: brightness(0) invert(1);
}

.isopen .menu a {
  color: var(--white) !important;
}

.newMenu {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  right: -101%;
  top: 0;
  background-color: var(--primary);
  z-index: 9;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
  justify-content: center;
}

.newMenu ul {
  width: 100%;
  height: 80%;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.newMenu ul li+li {
  margin-top: 10px;
}

.newMenu li a {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.5rem 0;
}

.newMenu li a:hover {
  background-color: var(--white);
  color: var(--secondary);
}

.newMenu li {
  transform: translateX(50%);
  opacity: 0;
  transition: 0.5s ease;
  width: 100%;
}

.isopen .newMenu {
  right: 0;
}

.isopen .newMenu li {
  transform: translateX(0);
  opacity: 1;
}

.isopen .newMenu li:nth-child(1) {
  transition-delay: 0.2s;
}

.isopen .newMenu li:nth-child(2) {
  transition-delay: 0.4s;
}

.isopen .newMenu li:nth-child(3) {
  transition-delay: 0.6s;
}

.isopen .newMenu li:nth-child(4) {
  transition-delay: 0.8s;
}

.isopen .newMenu li:nth-child(5) {
  transition-delay: 1s;
}

.isopen .newMenu li:nth-child(6) {
  transition-delay: 1.2s;
}

.isopen .newMenu li:nth-child(7) {
  transition-delay: 1.4s;
}

.isopen .newMenu li:nth-child(8) {
  transition-delay: 1.6s;
}

.isopen .newMenu li:nth-child(9) {
  transition-delay: 1.8s;
}

.isopen .newMenu li:nth-child(10) {
  transition-delay: 2s;
}

.isopen .newMenu li:nth-child(11) {
  transition-delay: 2.2s;
}

.isopen .newMenu li:nth-child(12) {
  transition-delay: 2.4s;
}

.isopen .newMenu li:nth-child(13) {
  transition-delay: 2.6s;
}

.isopen .newMenu li:nth-child(14) {
  transition-delay: 2.8s;
}

.isopen .newMenu li:nth-child(15) {
  transition-delay: 3s;
}

.newMenu li .themeBtn {
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-size: 1.125rem;
  letter-spacing: 2px;
  padding: 0.9rem 3rem;
}

.newMenu li .themeBtn::before {
  background-color: var(--black);
}

.newMenu li .themeBtn:hover {
  color: var(--white);
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: -6.3rem;
}

.menu a {
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a span {
  width: 9.73px;
  height: 9.73px;
  border: 1px solid var(--primary);
  transform: rotate(45deg);
}

.menu .themeBtn {
  background: var(--primary);
  padding: 0.5rem 2rem;
  border-radius: 65px;
  color: var(--white);
}

.menu .themeBtn:hover {
  background: var(--secondary);
}

.humburger .btn.btnmenu {
  width: 190px;
  height: 110px;
  background: var(--primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 600;
  font-family: "Roboto", serif;
}

a.logo {
  display: inline-block;
  position: relative;
  top: 1.5rem;
  left: -11rem;
}

figure.right-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}

/* navigation css */

/* slider css */

.mainSlider {
  height: 785px;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 6.78rem 0 0;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.slideContent {
  text-align: left;
  margin-bottom: 2rem;
}

.slideContent h4 {
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: center;
}

.slideContent h4 span {
  width: 370px;
  height: 5px;
  background: var(--primary);
  border-radius: 50px;
}

.slideContent h2 {
  font-size: 8.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  /* display: inline-block; */
  /* box-shadow: 0 0 60px 0 #fff; */
  filter: drop-shadow(0 0 30px white);
  margin: 0;
}

figure.right-img img {
  width: 98%;
  display: table;
  margin-left: auto;
}

.slideContent h3 {
  font-size: 2.375rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 8px;
  margin: 0 0 3.5rem;
}

.right-side {
  padding-left: 17rem;
}

.slideContent h5 {
  font-size: 2.5rem;
  width: 100%;
  font-family: "Roboto", serif;
  color: var(--secondary);
  line-height: 36px;
  margin: 0 0 1rem;
}

.slideContent p {
  font-size: 1.125rem;
  color: #747474;
  margin: 0 0 3rem;
}

.themeBtn {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 1rem;
}

.themeBtn i {
  width: 60px;
  height: 60px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mainSlider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 485px;
  height: 100%;
  background: #f0f4f7;
}

header:before {
  content: "";
  position: absolute;
  left: 0;
  width: 485px;
  height: 100%;
  background: #f0f4f7;
}

.mouse span {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-main {
  position: relative;
  padding: 4rem 0;
}

.logoSlider {
  margin-left: -6.5rem;
  text-align: center;
}

.logo-main:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 485px;
  height: 100%;
  background: #f0f4f7;
}

/* slider css */

.why-work {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 14rem;
  padding-top: 6rem;
}

.why-work:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #f0f4f7;
  width: 88%;
  height: 100%;
  z-index: -1;
}

.work-img {
  position: absolute;
  left: 0;
  width: 46%;
  height: 100%;
}

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

.heading {
  font-size: 2rem;
  width: 65%;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  left: 0rem;
  top: -7rem;
}

.work-content .heading {
  line-height: 1.1;
}

.heading.primary {
  font-size: 3.5rem;
  color: var(--primary);
  margin: 3rem 0 0 4rem;
}

.discover-content {
  padding: 1.5rem 0 0 1rem;
}

.discover-content h6 {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 500;
}

.discover-content ul li {
  font-size: 1.125rem;
  color: #747474;
  font-weight: 500;
  list-style: disc;
}

.discover-content ul {
  padding-left: 20px;
  padding-bottom: 2rem;
}

.agent-card {
  background: #29352f;
  width: 404px;
  height: 222px;
  position: absolute;
  right: -80px;
  bottom: 11rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.agent-card h6 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 5px;
  line-height: unset;
}

.agent-card h2 {
  font-size: 2.625rem;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.work-content {
  padding-top: 3rem;
}

.suporting-main {
  background: var(--primary);
  padding-top: 6rem;
  padding-bottom: 0;
  position: relative;
}

a.themeBtn.whiteBtn {
  color: var(--white);
}

a.themeBtn.whiteBtn i {
  border-color: var(--white);
  color: var(--white);
}

figure.suport-img img {
  width: 100%;
}

figure.suport-img {
  margin-left: -20.2rem;
  position: relative;
}

.suport-content {
  position: relative;
  z-index: 1;
}

.step-content {
  /* padding: 0 9rem; */
}

.step-content p {
  width: 52%;
  font-size: 1.125rem;
  color: var(--white);
  line-height: 2.25rem;
  margin: 0 0 2.5rem;
}

.suport-content .heading.text-white.text-right {
  margin: 0 0 1.6rem;
}

figure.suport-img a {
  width: 138px;
  height: 138px;
  background: #29352f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 3rem;
  left: -65px;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  z-index: 11;
}

.guide-content {
  border-left: 1px solid var(--white);
  position: relative;
  padding: 6rem 2.5rem 5rem;
}

.guide-content span {
  width: 32px;
  height: 32px;
  background: #29352f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  position: absolute;
  top: 0;
  left: -1px;
}

.guide-content h6 {
  font-size: 22px;
  color: var(--white);
  line-height: 28px;
  width: 94%;
  margin: 0 0 1rem;
}

.guide-content p {
  font-size: 14px;
  color: var(--white);
  width: 91%;
  line-height: 25px;
  margin: 0;
}

.guideSlider .swiper-button-prev:after,
.guideSlider .swiper-button-next:after {
  display: none;
}

.guideSlider .swiper-button-prev {
  left: auto;
  right: 45%;
  top: unset;
  bottom: 5px;
  color: var(--white);
  font-size: 2.5rem;
}

.guideSlider .swiper-button-next {
  right: 40%;
  top: unset;
  bottom: 5px;
  color: var(--white);
  font-size: 2.5rem;
}

.suporting-main:before {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  width: 38%;
  height: 58px;
  background: #f0f4f7;
  right: 12%;
}

.suporting-main .row+.row {
  margin-top: 8rem;
}

.marquee {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: var(--gap);
  position: absolute;
  bottom: 14.5rem;
}

.marquee ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: marquee 15s linear infinite;
}

.marquee .text {
  text-align: center;
  font-size: 13.75rem;
  margin: 0;
  font-family: "Lora", serif;
  color: var(--secondary);
  opacity: 20%;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.feature-main {
  position: relative;
}

.feature-main:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #f0f4f7;
  width: 78.2%;
  height: 100%;
}

figure.featureimg {
  position: relative;
}

.feature-heading {
  font-size: 1.5625rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  writing-mode: tb;
  position: absolute;
  bottom: 0;
  left: -6%;
  transform: scale(-1) !important;
  margin: 0;
}

figure.featureimg span {
  width: 370px;
  height: 250px;
  background: #29352f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.125rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Lora", serif;
  line-height: 1.2;
  padding: 0 3.5rem;
  position: absolute;
  right: 0;
  bottom: 3rem;
}

.feature-main .row+.row {
  margin-top: 3rem;
}

.listingSlider {
  margin: 2rem -30rem 0 0;
}

figure.listing-card {
  position: relative;
}

figure.listing-card .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: transparent;
  text-align: center;
  opacity: 0;
}

figure.listing-card .overlay h6 {
  font-size: 1.125rem;
  color: var(--white);
  margin: 0 0 10px;
}

figure.listing-card .overlay h4 {
  font-size: 1.875rem;
  color: var(--white);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

figure.listing-card .overlay p {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
  width: 50%;
  margin: 0 auto 2rem;
}

figure.listing-card .overlay a.themeBtn i {
  border-color: var(--white);
  color: var(--white);
}

.ray-content p {
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 2.25rem;
  width: 82%;
  margin: 0 0 1.5rem;
}

.swiper-slide-active figure.listing-card .overlay {
  background: rgb(48 111 110 / 90%);
  opacity: 1;
}

.financial-head {
  /* display: inline-block; */
  margin-bottom: 9rem;
}

.financial-head .heading.text-right {
  font-size: 3.75rem;
  margin: -30px;
}

.financial-head .heading.primary {
  font-size: 3.75rem;
}

.financial-main {
  position: relative;
  z-index: 1;
  padding-bottom: 7rem;
}

.atorney-content img {
  /* width: 100%; */
  /* height: 499px; */
}

.financial-main:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #f0f4f7;
  width: 48.65%;
  height: 100%;
  z-index: -1;
}

.atorney-content {
  text-align: center;
  margin-top: 6rem;
}

.atorney-content h6 {
  margin: 2rem 0 0;
  font-size: 1.125rem;
  color: var(--secondary);
  text-transform: uppercase;
  line-height: unset;
}

.atorney-content h3 {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 600;
  margin: 1rem 0 0;
  line-height: unset;
}

.mortgage-form form select {
  width: 100%;
  height: 80px;
  border: 0;
  border-bottom: 1px solid #29352f;
  font-size: 1.25rem;
  color: var(--secondary);
  font-family: "Roboto", serif;
  margin-bottom: 1rem;
}

.mortgage-form form .themeBtn {
  border: 0;
  background: transparent;
  margin: 2rem 0 0;
}

.prs-heading {
  font-size: 17.126875rem;
  line-height: 0.77;
  margin: 0;
  font-weight: 600;
  color: #306f6e;
  opacity: 3%;
  position: absolute;
  right: 6%;
  top: 6%;
}

.contact-form {
  margin: 9rem 0 0;
  position: relative;
}

.contact-form form {
  background: url(../images/prsbg.jpg) no-repeat top center/ cover;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 0 6rem;
}

.contact-form form input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  padding: 12px 10px;
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact-form form input::placeholder {
  color: var(--white);
}

.contact-form form button {
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-left: auto;
  margin-top: 1.8rem;
}

span.contact-heading {
  width: 295px;
  height: 185px;
  background: #29352f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.625rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Lora", serif;
  line-height: 1.2;
  padding: 0 3.5rem;
  position: absolute;
  top: -100px;
  right: -200px;
  z-index: 1;
}

figure.cntct-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

p.para {
  margin: 2rem 0 0;
  font-size: 1.125rem;
  color: var(--secondary);
  line-height: 2rem;
  width: 80%;
}

/* footer css start */

footer {
  background: linear-gradient(to left, #306f6e 45.9%, #29352f 44%);
  padding: 6rem 0;
}

.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.quickList h2 {
  font-size: 1.125rem;
  color: var(--white);
  font-family: "Roboto", serif;
  margin: 0 0 1.5rem;
}

.quickList ul li a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}

.quickList ul li+li {
  margin: 7px 0 0;
}

.para-logo {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

.para-logo a {
  flex-shrink: 0;
}

.para-logo p {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 36px;
  margin: 0;
  text-align: left;
}

.copyRight {
  background: #0d1820;
  padding: 14px 0;
}

.copyRight p {
  font-size: 14px;
  color: #8f8f8f;
  margin: 0;
}

.copyRight ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.copyRight ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
}

/* footer css end */

section.mainSlider.slider-inner {
  padding: 18rem 0 00;
}

.aboutwork .discover-content p {
  color: #29352f;
  font-size: 1.128rem;
  line-height: 2;
  width: 89%;
}

section.why-work.aboutwork {
  margin-bottom: 4rem;
}

section.feature-main.featurepage figure.listing-card {
  margin-bottom: 3rem;
}

figure.listing-card:hover .overlay {
  background: rgb(48 111 110 / 90%);
  opacity: 1;
  transition: 0.5s ease;
}

span.sell {
  background: var(--white);
  display: inline-block;
  padding: 10px 13px;
  border-radius: 5px;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 15px;
  position: absolute;
  left: 10px;
  top: 20px;
}

.sellyour {
  font-size: 2rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
}

.financial-head .heading.text-right {
  font-size: 3.75rem;
  margin-left: -19rem;
}

.guide-content {
  transition: all 0.3s ease-in-out;
}

.guide-content__img {
  position: absolute;
  inset: 0;
  user-select: none;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.guide-right {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.guide-content__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(48 111 110 / 90%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.guideSlider .swiper-slide-active .guide-content .guide-content__img::before,
.guideSlider .swiper-slide-active .guide-content .guide-right,
.guide-content:hover .guide-content__img::before,
.guide-content:hover .guide-right {
  opacity: 1;
  visibility: visible;
}

.para-logo img {
  width: 348px;
}

/* Long Term Pge Start */

.longterm-cont {
  text-align: center;
}

.longterm-head {
  color: var(--secondary);
  font-size: 3rem;
}

.longterm-cont h4 {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Roboto", serif;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.longterm-cont h4 span {
  font-weight: 600;
}

.long-why-cont .longterm-head {
  margin-bottom: 2.5625rem;
}

.long-why-cont h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.074375rem;
  font-family: "Roboto", serif;
}

.long-why-cont h3 img {
  margin-right: 2rem;
}

.long-why-cont h3 span {
  font-weight: 600;
}

.long-option {
  background: #f0f4f7;
}

.long-option .longterm-head {
  margin-bottom: 1.9375rem;
}

.long-option p {
  color: #505150;
  margin-bottom: 3rem;
}

.long-option-img-c {
  width: 82%;
  text-align: center;
  margin: auto;
}

.long-option-img-c h4 {
  margin-top: 1rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  text-transform: capitalize;
}

.how-it-wrk .longterm-head {
  margin-bottom: 5.593125rem;
}

.how-it-wrk-img {
  text-align: center;
}

.how-it-wrk-img-c {
  width: 89%;
  margin: 2.3125rem auto;
}

.how-it-wrk-img-c h4 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  color: var(--secondary);
}

.get-strt-today .text-center {
  width: 52%;
  margin: 0 auto;
}

.get-strt-today .text-center p {
  margin: 1rem 0 1.9375rem;
}

.get-strt-today .how-it-wrk-img {
  background: #f0f4f7;
  padding: 2rem 2rem 0rem 2rem;
  height: 100%;
}

.meet-attorny-cont h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Roboto", serif;
  margin-bottom: 2.375rem;
}

.meet-attorny-cont p {
  color: #505150;
  font-weight: 400;
  font-size: 1.125rem;
  font-family: "Roboto", serif;
}

.why-clos-attrny {
  background: #f0f4f7;
}

.why-clos-attrny-list {
  margin-top: 2rem;
}

.why-clos-attrny-list li {
  color: #505150;
  font-size: 1.5rem;
  line-height: 3.541666666666667;
}

.our-closing .long-option-img {
  text-align: center;
}

.our-closing .long-option-img-c {
  width: 100%;
}

.our-closing {
  background: 0;
}

/* Our Lender Page Strt */

.longterm-cont h3 {
  color: var(--primary);
}

.long-prog-img {
  position: relative;
  margin-bottom: 2rem;
}

.long-prog-img-c {
  position: absolute;
  bottom: 0;
  padding: 0rem 1rem;
}

.long-prog-img-c h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", serif;
}

.long-prog-img-c h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}

.lending-partn .text-center {
  width: 72%;
}

.lending-partn .text-center p {
  color: var(--black);
}

.our-lender-img {
  padding: 0;
}

.our-lender-img h5 {
  color: var(--secondary);
  font-weight: 400;
  font-family: "Roboto", serif;
  line-height: 1.9;
  width: 58%;
  margin: auto;
}

.lending-partn {
  padding: 3rem 0;
}

.our-lender-img {
  padding: 0 0 6rem;
}

.our-lender-img-bg {
  margin-top: 2rem;
}

.our-lender-img-bg img {
  position: relative;
}

.our-lender-img-bg img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000020;
}

/* Our Lender Page Strt */

/* Meet The Team */

.team-wrap {
  margin-bottom: 2.1875rem;
  border: 2px solid var(--primary);
  padding: 1rem;
  border-radius: 4px;
}

.team-wrap h5 {
  color: #03251e80;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Roboto", serif;
  letter-spacing: 1px;
  position: relative;
  margin: 0rem 0 1rem 1.5rem;
}

.team-wrap h5::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: -1.5rem;
}

.team-wrap h3 {
  color: #001410;
  font-size: 1.488125rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  margin: 1rem 0;
}

.meet-team-social {
  display: flex;
  gap: 0.3125rem;
}

.meet-team-social li a {
  color: var(--black);
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border: 1px solid var(--black);
  border-radius: 50%;
}

/* Meet The Team */

/* Want To Buy  */
.our-process-cont {
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 1.5rem;
}

.our-process-cont span {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  margin-bottom: 1.626875rem;
}

.our-process-cont h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  margin: 0.8125rem 0 1.0625rem;
}

.our-process-cont p {
  color: #505150;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}

.our-process-img-bg {
  width: 781px;
  height: 954px;
}

.our-process-img-bg img {
  width: 100%;
  height: 100%;
}

.want-to-img {
  padding: 0;
}

/* Want To Buy  */

/* Search Listing */
.serching-form label {
  display: block;
  color: var(--secondary);
  font-size: 1rem;
  font-family: "Roboto", serif;
  text-transform: capitalize;
}

.serching-form :is(input, select) {
  width: 100%;
  height: 63px;
  background: #F8F8F8;
  border: 0;
  padding: 0 1rem;
  margin-bottom: 4.375rem;
}

.serching-form ::-webkit-input-placeholder {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Roboto", serif;
  text-transform: capitalize;
}

.serching-form select {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Roboto", serif;
  text-transform: capitalize;
}

.srchbtn {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  background: var(--primary);
  padding: 0rem 1rem;
  text-transform: capitalize;
}

/* Search Listing */

.ray-cont-text h2 {
  color: var(--primary);
  font-size: 3rem;
  margin: -6rem 0 5rem 8rem;
}

.ray-cont-text h4 {
  font-family: "Roboto", serif;
  /* margin: 1rem 0; */
  margin: -4rem 0 1rem 9rem;
}

.ray-cont-text p {
  color: var(--secondary);
}

/* Long Term Pge Start */
.ray-cont-img img {
  width: 439px;
}

.ray-cont-img {
  text-align: end;
}

.aboutheads .heading {
  width: 100%;
  top: -5rem;
}

.aboutheads .heading.primary {
  margin: 3rem 0 0 0;
}


.team-wrap a {
  color: #001410;
  font-size: 1.488125rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  margin: 1rem 0;
}

.team-wrap a span {
  color: var(--primary);
  font-size: 1rem;
}

.team-wrap p {
  font-size: 1rem;
  line-height: 1.7;
}

.team-wrap p span {
  font-weight: 600;
  color: #000;
}

.memberwrap h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.memberwrap ul li a {
  color: var(--primary);
  font-weight: 600;
}

.team-wrap figure img {
  height: 510px;
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
}

.memberwrap figure img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.bullet-list li {
  list-style: disc;
  margin-left: 20px;
  font-size: 20px;
  color: var(--black);
}
.we-offer-sec .long-option-img {
  margin: 10px 0;
}