* {
  margin: 0;
  padding: 0;
}
:root {
  --bs-golden: #ebd483;
  --bs-white-bg: #ffffff;
  --bs-golden-dark: #4169e1;
  --sans:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
}
body {
  font-family: var(--sans);
  font-weight: 400;
}
body p {
  font-family: var(--sans);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
.defult-btn-cus {
  float: inline-end;
}
.defult-btn-cus a {
  background: var(--bs-white-bg);
  border: 1px solid var(--bs-golden-dark);
  padding: 5px 10px 5px 12px;
  border-radius: 10px;
  color: var(--bs-golden-dark);
  text-decoration: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 190px;
  height: 40px;
  font-size: 15px;
  transition: 500ms;
  font-family: var(--sans);
}
.group-btn .buy-btn {
  background: var(--bs-white-bg);
  padding: 5px 10px 5px 15px;
  border-radius: 10px;
  color: var(--bs-golden-dark);
  border: 1px solid var(--bs-golden-dark);
  text-decoration: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 190px;
  height: 50px;
  font-size: 15px;
  transition: 500ms;
  font-family: var(--sans);
}
.group-btn .buy-btn:hover {
  background: linear-gradient(45deg, #dae0fa, #ffffff);
  color: #000;
}
.accordion-button:focus {
  box-shadow: none !important;
}
header {
  width: 100%;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 7px 0px;
  background-color: #ffffff00;
}
header .navbar,
header .navbar-brand {
  padding: 0px;
}
header .navbar-brand {
  width: 140px;
  height: auto;
  border-radius: 10px;
}
header .navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .navbar-nav {
  background: #ffffff00;
  border-radius: 20px;
  padding: 0px 0px;
  gap: 30px;
}
header .navbar-nav .nav-item .nav-link {
  font-family: var(--sans);
  padding: 0px;
  font-size: 14px;
}
.contact-btn a {
  background: var(--bs-white-bg);
  padding: 5px 10px 5px 12px;
  border-radius: 10px;
  color: var(--bs-golden-dark);
  text-decoration: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150px;
  height: 40px;
  font-size: 15px;
  transition: 500ms;
  font-family: var(--sans);
  border: 1px solid var(--bs-golden-dark);
}
.contact-btn a span img {
  width: 25px;
  height: 25px;
}
.contact-btn a:hover {
  background: linear-gradient(45deg, #dae0fa, #ffffff);
  color: #000;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bs-white-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeDown 0.3s ease-in-out;
  z-index: 9;
}
header.sticky .navbar-nav .nav-item .nav-link {
  color: var(--bs-golden-dark);
}
.phone-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.phone-call {
  height: 35px;
  width: 35px;
  background: var(--bs-golden-dark);
  padding: 5px;
  border-radius: 50%;
  display: none;
}
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu {
  margin-top: 0;
}
.nav-item.dropdown .dropdown-menu {
  background: transparent;
  border: none;
}
.nav-item.dropdown .dropdown-menu ul {
  background-color: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding-left: 0px;
  margin-top: 5px;
  border-radius: 10px;
  padding: 3px 0px;
}
.nav-item.dropdown .dropdown-menu ul li a {
  font-size: 13px;
  padding: 8px;
}
.nav-item.dropdown .dropdown-menu ul li a:hover {
  background-color: #eeeeee;
  color: var(--bs-golden-dark);
}
@keyframes fadeDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
footer {
  padding: 2rem 0px 0px 0px;
}
.second-footer .sd-f {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px 10px 0px;
  border-top: 1px solid #e5e5e5;
}
.second-footer .netsocials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
  gap: 15px;
}
.second-footer .netsocials li a {
  color: var(--bs-golden-dark);
}
.first-footer .logo img {
  width: 180px;
  height: auto;
  margin-bottom: 1.6rem;
}
.first-footer .netabout p {
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
}
.first-footer h3 {
  margin-bottom: 2rem;
  color: var(--bs-golden-dark);
  font-size: 22px;
}
.navigation ul {
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
}
.navigation ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px;
  font-weight: 100;
}
.navigation ul li a:hover {
  color: var(--bs-golden-dark);
}
.twitter-widget.contuct .single-item {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.twitter-widget.contuct .twitter-area .icon-holder svg {
  width: 21px;
  height: 21px;
  color: var(--bs-golden-dark);
}
.twitter-widget.contuct .twitter-area .text {
  padding: 0px 0px 0px 5px;
}
.twitter-widget.contuct .twitter-area .text h4 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 2px;
}
.twitter-widget.contuct .twitter-area .text h5 {
  font-size: 13px;
  color: rgba(245, 255, 255, 0.8);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.3rem;
  font-family: var(--sans);
  margin-bottom: 0px;
}
.navigation ul li {
  margin-bottom: 1rem;
}
.twitter-widget.contuct .twitter-area .text h5 a {
  color: #000;
  text-transform: lowercase;
}
.first-footer .second-footer {
  display: flex;
  text-align: center;
  justify-content: center;
}
.first-footer .second-footer p {
  color: #000;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
}
.home-wrapper {
  position: relative;
  padding: 0px 0px 20px 0px;
  overflow: hidden;
}
.banner-cus {
  position: relative;
  width: 600px;
  height: auto;
}
.banner-cus img {
  position: absolute;
  object-fit: contain;
  right: -0px;
  top: -52px;
}
.content-wrapper .hero-title {
  font-size: 40px;
}
.content-wrapper .hero-title--italic {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  transform: translateY(2px);
  letter-spacing: -0.01em;
  color: var(--bs-golden-dark);
}
.content-wrapper .hero-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(23, 35, 58, 0.75);
  max-width: 48ch;
}
.top-right-banner .carousel-indicators {
  gap: 4px;
}
.top-right-banner {
  height: 100%;
  position: relative;
}
.top-right-banner .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.svg-icon {
  width: 12rem;
  display: block;
  height: 100%;
  bottom: 0;
  top: 0;
  right: -110px;
  z-index: 1;
}
.content-wrapper {
  padding-left: 75px;
  padding-top: 45px;
  padding-bottom: 30px;
}
.about-wrapper {
  padding: 80px 0px;
}
.about-wrapper .nav-tabs {
  justify-content: center;
  border-bottom: 1px solid #ffffff;
  gap: 10px;
  padding-bottom: 20px;
}
.about-wrapper .nav-tabs .nav-item .nav-link {
  font-size: 25px;
  color: #333;
  border: none;
  position: relative;
}
.about-wrapper .nav-tabs .nav-item .nav-link.active {
  border: none;
  color: var(--bs-golden-dark);
}
.about-wrapper .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.about-wrapper .nav-tabs .nav-item .nav-link::before {
  content: none;
  position: absolute;
  right: 0;
  width: 1px;
  height: 20px;
  background: #d9d9d9;
  bottom: 0;
  top: 0;
  margin: auto;
  margin-right: -5px;
}
.about-wrapper .nav-tabs .nav-item:last-child .nav-link::before {
  content: none;
}
.about-wrapper .item .body-content {
  padding: 20px 0;
  text-align: center;
}
.about-wrapper .item .body-content h3 {
  font-size: 25px;
  color: #000;
}
.about-wrapper .item .body-content p {
  font-size: 14px;
  margin-bottom: 0px;
  color: #333;
}
.about-wrapper .item img {
  height: 250px;
  object-fit: cover;
}
.exprience-item .title {
  color: var(--bs-golden-dark);
  font-size: 30px;
  font-family: var(--sans);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 5px;
}
.exprience-item p {
  font-size: 15px;
  margin-bottom: 0px;
}
.our-exprience-cus {
  margin-bottom: 40px;
}
.sign-eco p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sign-eco p span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sign-eco p span svg {
  color: var(--bs-golden-dark);
}
.servies-wrapper {
  padding: 80px 0px;
  background-color: #f0f3ff;
}
.legaladvice-wrapper {
  padding: 80px 0px;
}
.legaladvice-wrapper .title-cus p {
  width: 60%;
  margin: auto;
  text-align: center;
}
.testimonial-wrapper {
  padding: 80px 0px;
}
.blog-wrapper {
  padding: 80px 0px;
  background-color: #f0f3ff;
}
.blog-item {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.blog-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.blog-item .blog-body {
  padding: 12px;
}
.blog-item .blog-body h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  font-family: var(--sans);
  transition: 500ms;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.blog-item .blog-body p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
}
.blog-item:hover h3 {
  color: var(--bs-golden-dark);
}
.title-cus {
  margin-bottom: 50px;
}
.title-cus .small-title {
  font-size: 15px;
  color: #444;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
.title-cus .small-title span {
  color: #d69768;
}
.title-cus h2 {
  color: #000;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 500;
}
.title-cus h2 span {
  color: var(--bs-golden-dark);
  font-family: var(--serif);
  transform: translateY(2px);
  font-style: italic;
}
.title-cus P {
  font-size: 16px;
  margin-bottom: 0px;
  text-align: left;
  line-height: 1.5;
  font-weight: 400;
}
.broker-services {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 20px;
  padding: 20px;
  transition: 500ms;
  min-height: 260px;
}
.broker-services h3 {
  font-size: 20px;
  color: #000;
  line-height: 1.4;
  font-family: var(--sans);
}
.broker-services p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0px;
}
.broker-services:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: rgba(149, 157, 165, 0.568) 0px 8px 24px;
}
.legal-item-cus {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 10px;
  position: relative;
  min-height: 270px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.legal-item-cus::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 25%;
  bottom: -5px;
  right: -5px;
  border-bottom: 5px solid var(--bs-golden-dark);
  border-right: 5px solid var(--bs-golden-dark);
  border-radius: 0 0 19px 0;
}
.legal-item-cus::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 25%;
  top: -5px;
  left: -5px;
  border-top: 5px solid var(--bs-golden-dark);
  border-left: 5px solid var(--bs-golden-dark);
  border-radius: 19px 0 0 0;
}
.legal-cion {
  width: 60px;
  height: 60px;
  box-shadow: 0px 1px 6px 0px #4169e1;
  padding: 10px;
  border-radius: 10px;
}
.legal-item-cus .title {
  font-size: 25px;
  color: #000;
  line-height: 1.5;
}
.legal-item-cus p {
  color: #333;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0px;
}
.customer-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 10px solid #ddd;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px 20px;
}
.customer-item .inner-cus {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.customer-item .inner-cus .profile {
  width: 230px;
  text-align: center;
  margin: auto;
}
.customer-item .inner-cus .contnet h3 {
  font-size: 20px;
  margin-bottom: 0px;
  color: #000;
}
.customer-item .inner-cus .contnet {
  position: relative;
}
.customer-item .inner-cus .contnet .quote-shape-1 {
  position: absolute;
  top: -6px;
  right: 0;
}
.customer-item .inner-cus .contnet .quote-shape-1 img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.customer-item .inner-cus .contnet p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 300;
  color: #333;
}
.customer-item.active {
  border: 1px solid #f7f6f6;
  border-left: 10px solid var(--bs-golden-dark);
}
.testimonial-wrapper .defult-btn-cus {
  margin-top: 10px;
}
.best-serives {
  padding: 80px 0px;
  background-color: #f0f3ff;
}
.best-serives .title-cus p {
  width: 60%;
  margin: auto;
  text-align: center;
}
.best-servie {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 10px;
  padding: 0px;
  background-color: var(--bs-white-bg);
  overflow: hidden;
  min-height: 195px;
}
.best-servie .inner-cus {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.best-servie .inner-cus .content {
  flex: 1;
  padding-left: 15px;
}
.best-servie .inner-cus .content h3 {
  font-size: 22px;
  color: #000;
}
.best-servie .inner-cus .content p {
  font-size: 14px;
  margin-bottom: 0px;
  color: #333;
}
.ab-servis-image {
  width: 190px;
}
.faq-wrapper {
  padding: 0px 0px 80px 0px;
}
.faq-wrapper .title-cus p,
.blog-wrapper .title-cus p {
  width: 50%;
  margin: auto;
  text-align: center;
}
.faq-home-bg .accordion-item {
  border-radius: 10px;
  border: 1px solid var(--bs-golden-dark);
  background: rgba(247, 247, 251, 0.5);
  margin-bottom: 24px;
  box-shadow: none !important;
}
.faq-home-bg .accordion-item:last-child {
  margin-bottom: 0px;
}
.accordion {
  box-shadow: none;
}
.faq-home-bg .accordion-item:focus,
.faq-home-bg .accordion-header {
  box-shadow: none;
}
.faq-home-bg .accordion-header {
  font-family: var(--sans);
  font-weight: 600;
  box-shadow: none !important;
}
.faq-home-bg .accordion-item span {
  color: var(--bs-golden-dark);
  padding: 0px 10px;
}
.faq-content {
  line-height: 23px;
  font-size: 15px;
}
.accordion-button-cus {
  position: relative;
  height: 70px;
  border-radius: 10px !important;
  background: #fff !important;
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.faq-bg {
  height: 460px;
  border-radius: 10px;
  position: relative;
}
.faq-bg::before {
  content: "";
  background: rgba(23, 35, 58, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: inherit;
}
.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.accordion-button:not(.collapsed) {
  color: var(--bs-golden-dark);
}
.inner-banner {
  padding: 120px 0px 50px 0px;
  text-align: center;
  background: linear-gradient(to bottom, #d7def4, #fffdf74a);
  margin-top: -80px;
}
.inner-banner .bred-crm {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
  padding-left: 0px;
  margin-bottom: 0px;
}
.inner-banner .bred-crm li {
  font-size: 14px;
}
.inner-banner .bred-crm li a {
  color: var(--bs-golden-dark);
}
.inner-banner p {
  font-size: 15px;
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
}
.our-vision {
  padding: 80px 0px;
}
.our-vision img {
  height: 450px;
  float: inline-end;
  object-fit: contain;
}
.about-content .title-cus ul,
.our-vision ul {
  list-style: none;
  margin-top: 20px;
  padding-left: 0px;
}
.about-content .title-cus ul li,
.our-vision ul li {
  margin-bottom: 5px;
  font-size: 15px;
}
.about-content .title-cus ul li svg,
.our-vision ul li svg {
  color: var(--bs-golden-dark);
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.blog-cus {
  padding: 80px 0px;
}
.blog-cus .blog-item {
  margin-bottom: 30px;
}
.blog-details-cus {
  padding: 80px 0px;
}
.blog-details-cus p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
}
.blog-details-cus .para-image {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-cus .para-image img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-cus ul {
  list-style: none;
  margin-top: 20px;
  padding-left: 0px;
}
.blog-details-cus ul li {
  margin-bottom: 5px;
  font-size: 15px;
}
.blog-details-cus ul li svg {
  color: var(--bs-golden-dark);
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.recent-blog-cus {
  position: relative;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid var(--bs-golden-dark);
}
.recent-blog-cus img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-blog-cus::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #fdefc5, #ffffff66);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}
.recent-blog-cus .about-recent-content {
  position: relative;
  display: flex;
  align-items: end;
  height: 100%;
  padding: 10px;
  z-index: 9;
}
.about-recent-content h3 {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #000;
}
.about-recent-content p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #000;
  margin-bottom: 0px;
}
.contact-wrapper {
  padding: 80px 0px 80px 0px;
}
.contact-form .form-grup {
  margin-bottom: 20px;
  position: relative;
}
.errror {
  position: absolute;
  font-size: 13px;
  color: #bc1010;
  font-family: var(--sans);
  font-weight: 300;
}
.contact-form .form-label {
  font-size: 14px;
}
.contact-form .form-control {
  height: 45px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}
textarea.form-control {
  min-height: 90px !important;
}
.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--bs-golden-dark);
}
.contact-info {
  padding: 80px 0px;
  background: #fff3ea;
}
.our-location {
  padding: 80px 0px;
}
.contact-info .title-cus p {
  margin: auto;
  width: 60%;
  text-align: center;
}
.info-card {
  border-radius: 6px;
  margin-bottom: 20px;
}
.info-card .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.info-card .inner .icon {
  width: 40px;
  height: 40px;
  background: var(--bs-golden-dark);
  padding: 7px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-card .inner .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info-card .inner .content {
  flex: 1;
}
.info-card .content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #000;
  font-family: var(--sans);
  padding-bottom: 2px;
}
.info-card .content p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.5;
}
.contact-conent h2 {
  font-size: 27px;
}
.contact-conent p {
  font-size: 14px;
  width: 85%;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
}
.contact-form {
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 3px 3px 9px 0px #f1f1f1;
}
.submit-btn,
.submit-btn:hover {
  background: #000;
  padding: 5px 10px 5px 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  font-size: 15px;
  transition: 500ms;
  font-family: var(--sans);
}
.privacy-policy-cus {
  padding: 80px 0px;
}
.privacy-policy-cus h2 {
  font-size: 29px;
  color: #000;
  margin-bottom: 20px;
}
.privacy-policy-cus .polcy-content h3,
.privacy-policy-cus h3 {
  font-size: 22px;
  color: #000;
  line-height: 1.5;
}
.privacy-policy-cus .polcy-content p,
.privacy-policy-cus p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0px;
}
.privacy-policy-cus .polcy-content {
  margin-top: 35px;
}
.privacy-policy-cus .polcy-content ul {
  margin-top: 10px;
}
.privacy-policy-cus .polcy-content ul li {
  font-size: 14px;
  margin-bottom: 10px;
}
.propetys {
  padding: 30px 0px 80px 0px;
}
.propetys .nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: none;
  gap: 15px;
}
.propetys .nav-tabs .nav-link {
  background-color: #fff;
  color: var(--bs-golden-dark);
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 8px 35px;
  font-size: 14px;
}
.propetys .nav-tabs .nav-link.active {
  background-color: var(--bs-golden-dark);
  color: #fff;
  border: 1px solid var(--bs-golden-dark);
}
.propetys .title-cus p {
  text-align: center;
  width: 80%;
  margin: auto;
}
.propaty-card {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.propaty-card .inner-cus {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.propaty-card .inner-cus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.propaty-card.propaty-crd-1 {
  height: 430px;
}
.propaty-card.propaty-crd-2,
.propaty-card.propaty-crd-3,
.propaty-card.propaty-crd-4 {
  height: 205px;
}
.propaty-card.propaty-crd-4 {
  margin-top: 20px;
}
.propaty-card .content-cus {
  position: absolute;
  z-index: 9;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding: 10px;
  background: #ffffff9c;
  height: 40%;
  bottom: 0;
}
.showcase-crd {
  border: 1px solid var(--bs-golden-dark);
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  position: relative;
}
.showcase-crd a .inner-cus {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.showcase-crd a .inner-cus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-crd .content {
  position: absolute;
  z-index: 9;
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding: 10px;
  background: #ffffff;
  height: 30%;
  bottom: 0;
  border-top-right-radius: 10px;
}
.showcase-crd .content h3 {
  font-size: 20px;
  color: #000;
  line-height: 1.5;
}
.thank-you {
  text-align: center;
  padding: 80px 0px;
}
.thank-you h1 {
  font-size: 50px;
  font-weight: 600;
}
.thank-you h1 .small-letter-y {
  color: var(--bs-golden-dark);
}
.thank-you .thaku-para {
  width: 50%;
  margin: auto;
  text-align: center;
}
.fixed-chart-box {
  position: fixed;
  bottom: 0;
  margin-bottom: 100px;
  right: 0;
  margin-right: 20px;
  border-radius: 50%;
  background-color: var(--bs-golden-dark);
  width: 60px;
  height: 60px;
  padding: 9px;
  z-index: 9;
}
.fixed-call-box {
  position: fixed;
  bottom: 0;
  margin-bottom: 20px;
  right: 0;
  margin-right: 7px;
  border-radius: 50%;
   z-index: 9;
  &:hover .delay1 {
    animation: waves 2.5s linear;
    animation-delay: 0.1s;
  }
  &:hover .delay2 {
    animation: waves 2.5s linear 0.7s forwards;
  }
  &:hover .delay3 {
    animation: waves 2.5s linear 1.3s forwards;
  }
  &:hover .delay4 {
    animation: waves 2.5s linear 1.9s forwards;
  }
}
.svg-box {
  position: relative;
  z-index: 10;
}
.svg-box:hover {
  animation: bloop 1s linear;
}
.svg-box img {
  padding: 15px;
}
.circle {
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: var(--bs-golden-dark);
  border: 1px solid var(--bs-white-bg);
  margin: 10px;
  transition: 5s ease;
  position: absolute;
  top: 0px;
}
@-webkit-keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes bloop {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.popup-logo {
  margin: auto;
  text-align: center;
  padding-bottom: 25px;
}
.popup-logo img {
  width: 120px;
}
.home-modal .modal-content {
  width: 90%;
  margin: auto;
  background-image: url(../image/modal-bg-2.webp);
  background-size: cover;
  background-position: center;
}
.home-modal .modal-body {
  padding: 30px 35px 5px 35px;
}
.home-modal .form-grup {
  margin-bottom: 20px;
  position: relative;
  padding: 0px 3px;
}
.home-modal .form-grup .form-control {
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #79aaf5;
  border-radius: 0px;
  padding: 0px 10px;
  border-radius: 4px;
}
.home-modal .form-grup .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--bs-golden-dark);
}
.home-modal .form-grup .form-label {
  font-size: 14px;
  margin-bottom: 2px;
}
.home-modal .modal-footer {
  padding: 7px;
  background: #f3f3f3;
}
.home-modal .modal-header {
  padding: 10px 13px 0px 13px;
  border-bottom: 0px;
}
.home-modal .modal-footer a {
  color: var(--bs-golden-dark);
  font-size: 24px;
  margin: 0px;
}
.home-modal .modal-footer a img {
  width: 28px;
  height: auto;
}
.home-modal .modal-title {
  font-size: 17px;
  color: var(--bs-golden-dark);
  font-weight: 600;
  font-family: "Inter";
  padding-top: 4px;
}
.home-modal .btn-close {
  background: red;
  opacity: 1;
  border-radius: 50px;
  margin-right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -5px;
  top: -3px;
}
.home-modal .btn-close::before {
  box-shadow: none;
}
.owl-carousel .item img {
  width: 100%;
  border-radius: 12px;
}
.owl-nav button {
  font-size: 30px !important;
}
.residential-item .residential-inner {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.9s;
}
.residential-item .residential-inner .residential-image {
  overflow: hidden;
  position: relative;
}
.residential-item .residential-inner .residential-image::before {
  content: "";
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgb(35 35 37 / 66%) 0%,
    rgb(35 35 37 / 0%) 35%,
    rgb(22 22 23 / 0%) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 4px 4px 0 0;
  opacity: 1;
}
.read-to-move {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-size: 11px;
  color: rgb(255, 255, 255);
  background: var(--bs-golden-dark);
  border-radius: 3px;
  padding: 3px 15px 4px;
  font-weight: 400;
}
.price-ratings-box {
  color: white;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 20;
  text-align: right;
}
.price-ratings-box .price {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  color: #fff;
}
.residential-inner .residential-image .property-overflow-wrap {
  position: relative;
  transform: scale(1);
  transition: 1s;
}
.residential-inner .residential-image .property-overflow-wrap img {
  height: 265px !important;
  object-fit: cover;
}
.residential-item .residential-inner .body-card {
  padding: 15px 15px 15px;
  background: white;
}
.residential-item .residential-inner .body-card h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: "Inter";
  color: #000;
}
.residential-item .residential-inner .body-card .location {
  margin: 0 0 9px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.residential-item .residential-inner .body-card .location img {
  width: 18px;
  height: auto;
}
.residential-item .residential-inner .body-card .location a {
color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    min-height: 70px;
}
.residential-item .residential-inner .body-card .facilities-list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 10px;
}
.residential-item .residential-inner .body-card .facilities-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
  gap: 10px;
}
.residential-item .residential-inner .body-card .facilities-list li img {
  width: 20px;
  height: auto;
}
.move-toaction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.move-toaction .more-about-link {
  display: flex;
  background: transparent;
  border: 1px solid var(--bs-golden-dark);
  padding: 7px 30px;
  color: var(--bs-golden-dark);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}
.move-toaction .visit-site-link {
  display: flex;
  background: var(--bs-golden-dark);
  border: 1px solid var(--bs-golden-dark);
  padding: 7px 30px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}
.property-details {
  padding: 25px 25px;
  border-radius: 5px;
  box-shadow: 2px 3px 10px gainsboro;
}
.property-details .location-wrap {
  padding-bottom: 20px;
}
.location-wrap .name-propaty {
  font-weight: 300;
  color: var(--bs-golden-dark);
  font-size: 21px;
}
.location-wrap .location {
  font-size: 17px;
  line-height: 26px;
  color: #000000e0;
}
.basic-details .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #8080805c;
}
.basic-details .item .details-cus {
  color: #222020;
  margin: 16px 0px 0px 10px;
  font-size: 16px;
}
.basic-details .item .icon img {
  width: 45px;
}
.enroll-wra {
  margin-top: 30px;
}
.enroll-wra a {
  background-color: var(--bs-golden-dark);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 2px;
}
.propaty-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.propaty-image video {
  height: 400px;
}
.submit-btn-modal {
  width: 100%;
  margin: auto;
  border-radius: 3px;
  padding: 5px 10px 5px 12px;
  height: 47px;
  background: var(--bs-golden-dark);
  margin-top: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  transition: 500ms;
}
.submit-btn-modal:hover {
  background: blue;
  color: #fff;
}
.project-details .nav .nav-link {
  padding: 0px;
  margin-bottom: 10px;
  width: fit-content;
  height: 71px;
  border-radius: 4px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.project-details .nav .nav-link.vido-tb {
  position: relative;
}
.project-details .nav .nav-link.vido-tb::before {
  content: "";
  background-image: url(../image/play-icon.png);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.project-details .nav .nav-link.active {
  border: 2px solid var(--bs-golden-dark) !important;
}
.project-details .nav .nav-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bulder-crd {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgb(237 245 255);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 24px;
  gap: 10px;
  background: #f7f8ff;
      min-height: 225px;
}
.bulder-crd .bulider-logo{
  flex: 1;
}
.bulder-crd .contentwrap{
  flex: 2;
}
.bulder-crd .contentwrap h3 {
  font-size: 18px;
  font-weight: 600;
}
.bulder-crd .contentwrap p {
  font-size: 13px;
}
.bulder-crd .contentwrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 20px 7px 20px;
  border: 1px solid var(--bs-golden-dark);
  border-radius: 4px;
  width: 120px;
  font-size: 13px;
  color: var(--bs-golden-dark);
  transition: 500ms;
}
.bulder-crd .contentwrap a:hover {
  background: var(--bs-golden-dark);
  color: #fff;
}
.about-wrapper .owl-dots{
display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}
.about-wrapper .owl-dots .owl-dot{
     width: 15px;
    height: 15px;
    background: #cdcdcd;
    border-radius: 50%;
}
.about-wrapper .owl-dots .owl-dot.active{
  background-color: var(--bs-golden-dark);
}
@media screen and (max-width: 912px) {
  .phone-call {
    display: block;
  }
  .phone-call img {
    filter: brightness(0) invert(1);
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
  }
  .inner-banner {
    padding: 60px 0px 50px 0px;
    text-align: center;
    margin-top: 65px;
  }
  .navbar-collapse {
    padding-top: 30px;
  }
  .nav-contact-cus {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .navbar-nav {
    gap: 20px;
  }
  .propaty-image {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .home-wrapper {
    padding: 70px 0px 0px 0px;
  }
  .svg-icon {
    width: 10rem;
    display: block;
    height: 198%;
    bottom: -59px;
    top: 0;
    right: 117px;
    z-index: 1;
    transform: rotate(75deg);
  }
  .content-wrapper {
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 0px;
    position: relative;
    z-index: 2;
  }
  .banner-cus {
    padding-top: 20px;
    width: auto;
  }
  .banner-cus img {
    position: static;
  }
  .content-wrapper .hero-title {
    font-size: 40px;
  }
  .content-wrapper .hero-title--italic {
    font-size: 40px;
  }
  .about-wrapper {
    padding: 40px 0px;
  }
  .about-cus-image {
    padding-bottom: 30px;
  }
  .about-wrapper .row-revers {
    flex-direction: column-reverse;
  }
  .title-cus {
    margin-bottom: 25px;
  }
  .defult-btn-cus {
    float: inline-start;
    margin-bottom: 30px;
  }
  .broker-services {
    margin-bottom: 20px;
    min-height: auto;
  }
  .servies-wrapper,
  .legaladvice-wrapper,
  .best-serives,
  .testimonial-wrapper,
  .blog-wrapper,
  .faq-wrapper {
    padding: 40px 0px;
  }
  .title-cus .small-title {
    padding-bottom: 0px;
  }
  .margi-bottom {
    margin-bottom: 20px;
  }
  .best-serives .title-cus p,
  .blog-wrapper .title-cus p {
    width: auto;
  }
  .best-servie {
    margin-bottom: 30px;
  }
  .ab-servis-image {
    width: 125px;
  }
  .best-servie .inner-cus .content {
    flex: 1;
    padding-left: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .blog-item {
    margin-bottom: 30px;
  }
  .faq-wrapper .title-cus p {
    width: auto;
  }
  .accordion-button-cus {
    font-size: 15px;
    padding: 10px;
    line-height: 1.3;
  }
  .faq-home-bg .accordion-item span {
    padding: 0px 10px 0px 0px;
  }
  .faq-bg {
    height: 260px;
    border-radius: 10px;
    position: relative;
  }
  .title-cus h2 {
    font-size: 25px;
  }
  .second-footer .sd-f {
    display: block;
  }
  .second-footer .netsocials {
    justify-content: center;
  }
  .first-footer h3 {
    margin-bottom: 1rem;
  }
  footer {
    padding: 2rem 0px 0px 0px;
  }
  .navigation ul li {
    margin-bottom: 0.5rem;
  }
  .navigation {
    margin-bottom: 1.5rem;
  }
  .faq-home-bg .accordion-item {
    margin-bottom: 15px;
  }
  .gap-5 {
    gap: 1.5rem !important;
  }
  .exprience-item .title {
    font-size: 25px;
  }
  .legal-item-cus {
    background: #f5f5f5;
    padding: 20px 15px;
  }
  .legaladvice-wrapper .title-cus p {
    width: auto;
  }
  .our-vision {
    padding: 0px 0px;
    padding-bottom: 40px;
  }
  .inner-banner p {
    width: auto;
  }
  .inner-banner {
    padding: 40px 0px 10px 0px;
    margin-top: 65px;
  }
  .our-vision img {
    height: auto;
  }
  header .navbar-nav {
    padding: 0px 0px;
    gap: 12px;
  }
  .navbar-toggler {
    border: none;
    padding: 0px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .blog-cus,
  .blog-details-cus {
    padding: 40px 0px;
  }
  .inner-banner .bred-crm {
    flex-wrap: wrap;
  }
  .knowledge-details {
    padding-bottom: 30px;
  }
  .fixed-call-box {
    position: fixed;
    margin-bottom: 50px;
    margin-right: 10px;
    border-radius: 50%;
  }
  .us-promis-wrap {
    gap: 3px;
    padding-top: 5px;
    padding-bottom: 20px;
  }
  .about-wrapper .nav-tabs .nav-item .nav-link {
    font-size: 14px;
    position: relative;
    padding: 10px;
  }
  .about-wrapper .nav-tabs {
    gap: 3px;
    padding-bottom: 0px;
  }
  .about-wrapper .item img {
    height: auto;
  }
  .about-wrapper .item .body-content {
    padding: 10px 0;
  }
  .home-modal .modal-title {
    font-size: 14px;
  }
  .home-modal .btn-close {
  padding: 9px;
  width: 10px;
  height: 10px;
  }
  .submit-btn-modal {
    margin-top: 10px;
  }
  .contact-form {
    padding: 15px;
  }
  .contact-wrapper {
    padding: 40px 0px 40px 0px;
  }
  .propetys {
    padding: 40px 0px 40px 0px;
  }
  .property-details {
    box-shadow: none;
    padding: 25px 15px;
  }
  .project-details .overview .bold-para {
    padding-top: 20px;
  }
  .promis-item img {
    width: 25px;
  }
  .promis-item .title-2 {
    font-size: 11px;
    color: #082ce7;
    padding-top: 2px;
    text-align: left;
    line-height: normal;
  }
  .fixed-chart-box {
    margin-bottom: 124px;
    margin-right: 13px;
  }
  .project-details .nav .nav-link {
    padding: 0px;
    margin-bottom: 10px;
    width: 60px;
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-right: 4px;
  }
  .home-modal .modal-body {
    padding: 30px 25px 5px 25px;
  }
}
@media screen and (max-width: 390px) {
  .content-wrapper .hero-title {
    font-size: 30px;
  }
  .content-wrapper .hero-title--italic {
    font-size: 30px;
  }
  .about-cus-image {
    padding-bottom: 0px;
  }
  .accordion-button-cus {
    font-size: 13px;
  }
  footer {
    padding: 0rem 0px 0px 0px;
  }
  .move-toaction .visit-site-link,
  .move-toaction .more-about-link {
    padding: 7px 15px;
    width: 49%;
  }
  .move-toaction {
    gap: 10px;
  }
  .promis-item .title-2 {
    font-size: 10px;
  }
  .group-btn .buy-btn {
    width: 170px;
    height: 45px;
  }
  .group-btn .buy-btn img {
    width: 24px;
  }
}
