/*-----------------------------------------------------------------------------------

 Theme Name: SGA Globe
 Description: SGA Globe is an international consulting firm made up of a dedicated team of Chartered Accountants and financial experts. Our diverse expertise allows us to offer comprehensive solutions tailored to your business needs.
 Author: Kapil Prajapati
-----------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --primary-background: #004A87;
  --secondry-background: #3892C6;
  --theme-color: #F7DEA7;
  --secondry-color: #3892C6;
  --heading-color: #211C52;
  --white-background: #fff;
  --black-background: #000;
  --primary-color: #004A87;
  --black-color: #000;
  --white-color: #fff;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-10: 10px;
  --font-11: 11px;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-17: 17px;
  --font-18: 18px;
  --font-19: 19px;
  --font-20: 20px;
  --font-21: 21px;
  --font-22: 22px;
  --font-23: 23px;
  --font-24: 24px;
  --font-25: 25px;
  --font-26: 26px;
  --font-27: 27px;
  --font-28: 28px;
  --font-29: 29px;
  --font-30: 30px;
  --font-31: 31px;
  --font-32: 32px;
  --font-33: 33px;
  --font-34: 34px;
  --font-35: 35px;
  --font-36: 36px;
  --font-37: 37px;
  --font-38: 38px;
  --font-39: 39px;
  --font-40: 40px;
  --font-41: 41px;
  --font-42: 42px;
  --font-43: 43px;
  --font-44: 44px;
  --font-45: 45px;
  --font-46: 46px;
  --font-47: 47px;
  --font-48: 48px;
  --font-49: 49px;
  --font-50: 50px;
  --font-60: 60px;
  --font-70: 70px;
  --font-80: 80px;
  --font-90: 90px;
  --font-100: 100px;
  --justify-center: center;
  --justify-space: space-between;
  --justify-end: flex-end;
  --justify-start: flex-start;
  --align-center: center;
  --primary-display: block;
  --secondary-display: flex;
  --display-inline: inline-block;
  --text-uppercase: uppercase;
  --text-capital: capitalize;
  --width: 100%;
  --height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
}

h5 {
  font-family: "Montserrat", sans-serif;
}

h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  font-family: "Montserrat", sans-serif;
}

li {
  font-family: "Montserrat", sans-serif;
}

div {
  font-family: "Montserrat", sans-serif;
}

input {
  font-family: "Montserrat", sans-serif;
}

span {
  font-family: "Montserrat", sans-serif;
}

label {
  font-family: "Montserrat", sans-serif;
}

button {
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/*=======================header ccss start============================*/
/* sticky menu css */
.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
  background-color: #fff;
}

.is-sticky {
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-150px);
  }

  100% {
    transform: translateY(0px);
  }
}


.top-bar-right .dropdown-toggle {
  background-color: unset;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 15px;
}

.top-bar-right .dropdown-toggle:hover {
  color: #fff;
}

.top-bar-right .dropdown-toggle:focus {
  outline: none;
  box-shadow: unset;
}

.top-bar-right .dropdown-toggle:after {
  margin-left: auto;
}

.top-bar-right .dropdown-menu {
  min-width: 160px;
  border-radius: 0;
  border: none;
  top: 36% !important;
}

.top-bar-right .dropdown-item img {
  width: 20px;
  margin-right: 8px;
}

.top-bar-right .dropdown-item {
  font-size: var(--font-15);
  color: var(--black-color);
}

.top-bar-right .dropdown-item:hover {
  background-color: var(--primary-background);
  color: #fff;
}

.top-bar-right .dropdown-toggle img {
  width: 24px;
}

.top-bar-wrapp {
  background-color: var(--primary-background);
  padding: 8px 0px;
}

.top-bar-left {
  display: var(--secondary-display);
  height: var(--height);
}

.top-bar-left ul {
  list-style-type: none;
  margin-bottom: 0px;
  display: var(--secondary-display);
  align-items: var(--align-center);
  gap: 20px;
  padding-left: 0px;
}

.top-bar-left ul li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: var(--font-15);
}

.top-bar-left ul li a i {
  color: var(--theme-color);
  margin-right: 5px;
}

.top-bar-right {
  display: var(--secondary-display);
  gap: 16px;
  justify-content: var(--justify-end);
  align-items: var(--align-center);
  height: var(--height);
}

.top-follow ul {
  list-style-type: none;
  margin-bottom: 0px;
  display: var(--secondary-display);
  align-items: var(--align-center);
  gap: 15px;
}

.top-follow ul li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: var(--font-17);
}

.top-follow ul li h5 {
  color: var(--theme-color);
  font-size: var(--font-15);
  margin-bottom: 0px;
}

.navbar-brand {
  width: 6%;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  padding: 1px;
}

.navbar-nav li a {
  color: var(--primary-color);
  font-size: var(--font-15);
  font-weight: var(--font-weight-500);
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav li a.active {
  font-weight: var(--font-weight-600);
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}




/*========================header css end===========================*/

/*========================main banner css start===========================*/

.banner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.main-banner-content {
  width: 65%;
}

.main-banner-image {
  width: 50%;
}

.main-banner-image img {
  width: 100%;
}

.banner-main-image {
  width: 100%;
}

.home-slider-inner {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0px 0px 0px;
}

#home-slider .owl-dots button {
  border: 1px solid #fff !important;
  background-color: unset !important;
  width: 50px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

#home-slider .owl-dots button.active {
  background-color: #fff !important;
  height: 8px;
}

#home-slider .owl-dots {
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  position: absolute;
  display: flex;
  bottom: 19px;
  left: 80px;
}

#home-slider .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

#home-slider {
  position: relative;
}

.main-banner-content h3 {
  color: #212754;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 500;
  text-shadow: 0px 7px #dee4f4;
}

.main-banner-content h2 {
  font-weight: 700;
  font-size: 70px;
  color: #212754;
  text-shadow: 0px 8px #dee4f4;
}

.main-banner-content p {
  font-size: 21px;
  color: #212754;
  margin-top: 15px;
}

.main-banner-content {
  padding-right: 70px;
}

.banner-main-button a {
  background-color: #dee4f4;
  padding: 10px 30px;
  color: #212754;
  text-transform: uppercase;
  font-size: 1vw;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
}

.banner-main-button {
  margin-top: 40px;
}

#home-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(255 255 255 / 50%) !important;
  width: 60px;
  cursor: pointer;
  height: 60px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50px;
  border: 1px solid #ccc;
}

#home-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

#home-slider .owl-nav .owl-prev:focus {
  outline: 0;
}

#home-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
  color: #fff;
}

#home-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(255 255 255 / 50%) !important;
  width: 60px;
  cursor: pointer;
  height: 60px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50px;
  border: 1px solid #ccc;
}

#home-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

#home-slider .owl-nav .owl-next:focus {
  outline: 0;
}

#home-slider .owl-nav .owl-next:hover {
  background: #000 !important;
  color: #fff;
}

#home-slider:hover .owl-prev {
  left: 15px;
  opacity: 1;
}

#home-slider:hover .owl-next {
  right: 15px;
  opacity: 1;
}

#home-slider .item {
  height: 465px;
}

#home-slider .item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: right;
}

#home-slider .item .cover {
  padding: 75px 0 150px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
  display: flex;
  align-items: center;
}

#home-slider .item .cover .header-content {
  position: relative;
  padding: 0px;
  overflow: hidden;
  width: 60%;
}

#home-slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

#home-slider .item .cover .header-content h1 {
  font-size: 51px;
  margin: 0px 0 20px;
  word-spacing: 3px;
  color: #000;
  text-align: left;
}

#home-slider .item .cover .header-content h2 {
  font-size: 30px;
  margin: 0px 0 23px;
  word-spacing: 3px;
  text-align: left;
  font-weight: 700;
  color: var(--white-color);
  text-transform: uppercase;
  line-height: 44px;
  text-shadow: 0px 4px 4px #0000009c;
}

#home-slider .item .cover .header-content h2 span {
  color: var(--theme-color);
}

#home-slider .item .cover .header-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0 20px;
  word-spacing: 3px;
  color: #41b1b3;
  text-align: left;
}

/*header .item .cover .header-content h2 {color: #ff0200; padding: 0px 20px; font-size: 61px;}*/
#home-slider .item .cover .header-content p {
  color: #fff;
  font-size: 15px;
  text-align: left;
  width: 83%;
  font-weight: 400;
  margin-top: 13px;
}

#home-slider .item .cover .header-content h3 {
  font-size: 23px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
  text-shadow: 0px 4px 4px #0000009c;
}

#home-slider .item .cover .header-content h4 {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  line-height: 36px;
  text-shadow: 0px 4px 4px #0000009c;
}

#home-slider .item .cover .header-content h4 span {
  color: var(--theme-color);
}

#home-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active .banner_button {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active h3 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#home-slider .item .cover .header-content .banner-read-more {
  color: #000;
  line-height: 15px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  background-color: #fff;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px;
  padding: 14px 24px;
  display: inline-block;
  font-size: 15px;
}

#home-slider .item .cover .header-content .banner-contact-us {
  color: #ffffff;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  background-color: unset;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px;
  padding: 14px 24px;
  margin-left: 20px;
  display: inline-block;
  font-size: 15px;
}

#home-slider .item .cover .header-content .banner_buttons {
  margin-top: 20px;
}

#home-slider .item .cover .header-content ul {
  padding-left: 0px;
  list-style-type: none;
  margin-top: 33px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
}

#home-slider .item .cover .header-content ul li {
  margin-bottom: 0px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

#home-slider .item .cover .header-content ul li img {
  margin-right: 10px;
  width: auto;
}

#home-slider .owl-item.active ul li {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active .banner-contact-us {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

#home-slider .owl-item.active .banner-read-more {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.at-header-social {
  left: -120px;
  top: 50%;
  z-index: 50;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.hero-social-2>span {
  color: #fff;
}

.at-header-social>span {
  color: #fff;
  position: relative;
  padding-left: 20px;
  font-weight: 600;
}

.hero-social-2>span::before {
  background-color: #fff;
}

.at-header-social>span::before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: 11px;
  width: 15px;
  height: 2px;
  background: #ff8057;
}

.at-header-social .social-list li {
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 12px;
}

.hero-social-2 .social-list li a {
  color: #fff;
}

.at-header-social .social-list li a {
  color: #001042;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  margin: 5px;
}

.at-header-social .social-list li a i {
  color: #fff;
}

.social-list {
  margin-bottom: 0px;
}

#home-slider .item .cover .header-content .banner-read-more:hover {
  background-color: var(--primary-background);
  color: var(--white-color);
  border-color: var(--primary-color);
}

#home-slider .item .cover .header-content .banner-contact-us:hover {
  background-color: var(--primary-background);
  color: var(--white-color);
  border-color: var(--primary-color);
}

/*========================main banner css end===========================*/

/*========================property search css start===========================*/
.property-form-wrapp {
  background-color: var(--primary-background);
  padding: 12px 0;
}

.prop-form-main form input {
  border: none;
  border-radius: 0px;
  padding: 12px 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  font-size: var(--font-15);
}

.prop-form-main form input:focus {
  box-shadow: unset;
  outline: none;
}

.prop-form-main form select {
  border: none;
  border-radius: 0px;
  padding: 12px 30px 12px 20px;
  border-left: 1px solid #ccc;
  font-size: var(--font-15);
}

.prop-form-main form select:focus {
  box-shadow: unset;
  outline: none;
}

.prop-form-main form button {
  background-color: #239D3B;
  width: var(--width);
  font-size: var(--font-15);
  font-weight: var(--font-weight-500);
  border-radius: 50px;
  height: var(--height);
  color: var(--white-color);
}

.prop-form-main form button:hover {
  background-color: var(--secondry-color);
  color: #fff;
}

.prop-form-main form button:focus {
  box-shadow: unset;
  outline: none;
}

.prop-search-btn {
  height: var(--height);
  background-color: var(--white-background);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.prop-form-main {
  width: 80%;
  margin: 0 auto;
}

/*========================property search css end===========================*/

/*========================home about css start===========================*/

.home-abt-img img {
  width: var(--width);
}

.home-about-wrapp {
  padding: 50px 0px;
}

.home-abt-con {
  display: var(--secondary-display);
  height: var(--height);
  align-items: var(--align-center);
}

.home-abt-con h2 {
  font-size: var(--font-25);
  font-weight: var(--font-weight-800);
  color: var(--primary-color);
  margin-bottom: 12px;
}

.home-abt-con h4 {
  font-size: var(--font-24);
  font-weight: var(--font-weight-400);
  color: var(--black-color);
  border-top: 1px solid var(--primary-color);
  display: inline-block;
  padding-right: 11px;
  padding-top: 9px;
  margin-bottom: 14px;
}

.home-abt-con p {
  font-size: var(--font-14);
  color: var(--black-color);
}

.home-abt-con a {
  display: var(--display-inline);
  background-color: var(--secondry-background);
  text-decoration: none;
  color: var(--white-color);
  font-size: var(--font-14);
  font-weight: var(--font-weight-500);
  padding: 10px 40px;
  border-radius: 50px;
  margin-top: 5px;
}

.home-abt-con a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*========================home about css end===========================*/

/*========================new property css start===========================*/
.new-prop-wrapp {
  background-color: #F3F3F3;
  padding: 50px 0px;
}

.new-prop-con {
  display: var(--secondary-display);
  height: var(--height);
  align-items: var(--align-center);
}

.new-prop-con h2 {
  font-size: var(--font-25);
  font-weight: var(--font-weight-800);
  color: var(--primary-color);
  margin-bottom: 12px;
}

.new-prop-con h4 {
  font-size: var(--font-24);
  font-weight: var(--font-weight-400);
  color: var(--black-color);
  border-top: 1px solid var(--primary-color);
  display: inline-block;
  padding-right: 11px;
  padding-top: 9px;
  margin-bottom: 14px;
}

.new-prop-con h6 {
  background-color: var(--secondry-background);
  padding: 8px 25px;
  color: var(--white-color);
  font-size: var(--font-15);
  font-weight: var(--font-weight-500);
  display: var(--display-inline);
  border-radius: 50px;
  margin: 12px 0px 22px;
}

.new-prop-con h3 {
  font-size: var(--font-24);
  font-weight: var(--font-weight-600);
  color: var(--black-color);
}

.new-prop-con h5 {
  font-size: var(--font-20);
  color: var(--primary-color);
}

.new-prop-con h5 span {
  font-size: var(--font-24);
  font-weight: var(--font-weight-800);
}

.new-prop-con p.location {
  display: var(--secondary-display);
  align-items: var(--align-center);
  font-size: var(--font-15);
  color: var(--black-color);
  margin: 25px 0px;
  border-bottom: 1px solid #3892c6;
  padding-bottom: 27px;
}

.new-prop-con p.location i {
  color: #239d3b;
  font-size: var(--font-32);
  margin-right: 11px;
}

.new-prop-con p.location span {
  width: 70%;
}

.new-prop-con p {
  color: var(--black-color);
  font-size: var(--font-14);
}

.new-prop-con ul {
  padding-left: 0px;
  list-style: none;
  display: var(--secondary-display);
  gap: 50px;
  margin-top: 43px;
}

.new-prop-con ul li {
  display: var(--secondary-display);
  gap: 15px;
}

.new-prop-con ul li .new-feat-img img {
  width: 50px;
}

.new-prop-con ul li .new-prop-feat h4 {
  border: none;
  padding: 0;
  margin-bottom: 0;
  font-weight: var(--font-weight-600);
  font-size: var(--font-17);
}

.new-prop-con ul li .new-prop-feat p {
  font-size: var(--font-14);
  font-weight: var(--font-weight-500);
  color: #9A9A9A;
  margin-bottom: 0px;
}

.property-slider .owl-dots button {
  border: 1px solid var(--secondry-color) !important;
  background-color: unset !important;
  width: 40px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

.property-slider .owl-dots button.active {
  background-color: var(--secondry-background) !important;
  height: 8px;
}

.property-slider .owl-dots {
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  display: var(--secondary-display) !important;
  bottom: 0px;
  left: 0px;
}

.property-slider .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

/*========================new property css end===========================*/

/*========================explore property css start===========================*/
.explore-prop-wrapp {
  padding: 50px 0px;
}

.explore-prop-head {
  text-align: center;
  margin-bottom: 40px;
}

.explore-prop-head h2 {
  font-size: var(--font-25);
  font-weight: var(--font-weight-800);
  color: var(--primary-color);
  margin-bottom: 12px;
}

.explore-prop-head h4 {
  font-size: var(--font-24);
  font-weight: var(--font-weight-400);
  color: var(--black-color);
  border-top: 1px solid var(--primary-color);
  display: inline-block;
  padding-right: 11px;
  padding-top: 9px;
  margin-bottom: 14px;
}

.exp-prop-box img {
  width: 100%;
}

.exp-prop-box {
  position: relative;
  margin-bottom: 30px;
}

.exp-prop-con {
  display: var(--secondary-display);
  align-items: var(--align-center);
  justify-content: var(--justify-space);
  padding: 13px 20px;
  background: var(--secondry-background);
  color: var(--white-color);
  position: absolute;
  width: var(--width);
  bottom: 0;
}

.exp-prop-con h3 {
  font-size: var(--font-24);
  margin-bottom: 4px;
  font-weight: var(--font-weight-600);
}

.exp-prop-con p {
  font-size: var(--font-17);
  font-weight: var(--font-weight-500);
  margin-bottom: 0;
}

.exp-prop-con a {
  display: var(--display-inline);
  font-size: var(--font-15);
  font-weight: var(--font-weight-500);
  color: var(--white-color);
  text-decoration: none;
  border: 1px solid var(--white-color);
  padding: 8px 27px;
  border-radius: 50px;
}

.exp-up-title {
  border: 1px solid #ccc;
}

.exp-up-title h3 {
  color: var(--secondry-color);
  text-align: center;
  padding: 19px;
  margin-bottom: 0;
  font-size: var(--font-24);
}

.exp-up-title img {
  width: var(--width);
}

.exp-prop-con a:hover {
  background-color: var(--primary-background);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.exp-slide .owl-dots button {
  border: 1px solid var(--secondry-color) !important;
  background-color: unset !important;
  width: 40px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

.exp-slide .owl-dots button.active {
  background-color: var(--secondry-background) !important;
  height: 8px;
}

.exp-slide .owl-dots {
  justify-content: center;
  margin-top: 0;
  position: absolute;
  display: var(--secondary-display) !important;
  bottom: 20px;
  left: 0px;
  right: 0;
}

.exp-slide .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

.exp-slide {
  padding-bottom: 50px;
}

/*========================explore property css end===========================*/

/*========================Home cta css start===========================*/

.cta-main {
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 68px 0px;
}

.cta-button {
  margin-top: 30px;
}

.cta-button .banner-read-more {
  color: #000;
  line-height: 15px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  background-color: #fff;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px;
  padding: 14px 24px;
  display: inline-block;
  font-size: 15px;
}

.cta-button .banner-contact-us {
  color: #ffffff;
  line-height: 15px;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  background-color: unset;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 50px;
  padding: 14px 24px;
  margin-left: 20px;
  display: inline-block;
  font-size: 15px;
}

.cta-main h3 {
  color: var(--white-color);
  font-size: var(--font-27);
  font-weight: var(--font-weight-400)
}

.cta-main h3 span {
  font-weight: var(--font-weight-800);
}

.cta-main h2 {
  font-size: var(--font-29);
  font-weight: var(--font-weight-700);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 13px;
  text-shadow: 0px 4px 4px #00000078;
}

.cta-button .banner-read-more:hover {
  background-color: #239D3B;
  color: #fff;
  border-color: #239D3B;
}

.cta-button .banner-contact-us:hover {
  background-color: #239D3B;
  color: #fff;
  border-color: #239D3B;
}

/*========================Home cta css end===========================*/

/*========================Home faq css start===========================*/
.faq-image img {
  width: var(--width);
}

.faq-wrapp {
  padding: 50px 0px;
}

.faq-con-main {
  display: var(--secondary-display);
  align-items: var(--align-center);
  height: var(--height);
}

.faq-wrapp .accordion-item {
  background-color: #E4F4FF;
  margin-bottom: 15px;
  border: none;
  border-radius: 20px !important;
}

.faq-wrapp .accordion-button:not(.collapsed) {
  background-color: unset;
  color: var(--primary-color);
  box-shadow: unset;
}

.faq-wrapp .accordion-button:focus {
  box-shadow: unset;
  outline: none;
}

.faq-wrapp .accordion-button {
  background-color: #E4F4FF;
  border-radius: 20px !important;
  font-weight: var(--font-weight-600);
  color: var(--primary-color);
  font-size: var(--font-18);
  padding: 11px 15px;
}

.faq-wrapp .accordion-header {
  border-radius: 20px !important;
}

.faq-wrapp .accordion-body {
  padding: 0 20px 15px;
}

.faq-wrapp .accordion-body p {
  font-size: var(--font-15);
  color: var(--black-color);
}

.faq-wrapp .accordion-button::after {
  background-image: url(../images/arrow.svg);
  width: 40px;
  height: 40px;
  background-size: cover;
}

.faq-wrapp .accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow.svg);
}

/*========================Home faq css end===========================*/

/*========================Home testimonial css start===========================*/

.testimonial-wrapp {
  background-color: #F3F3F3;
  padding: 50px 0px 100px;
}

.testi-box {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 30px;
}

.testi-auth {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testi-auth img {
  width: 80px !important;
  height: 80px;
  border-radius: 50px;
  margin-right: 15px;
}

.testi-auth-con h3 {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  margin-bottom: 2px;
}

.testi-auth-con p {
  font-size: 14px;
  margin-bottom: 6px;
}

.testi-auth-con ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
  gap: 5px;
}

.testi-auth-con ul li {}

.testi-auth-con ul li i {
  color: #ffa500;
  font-size: 14px;
}

.test-con p {
  font-size: 15px;
  color: #000;
  margin-bottom: 0px;
}

.test-con {
  position: relative;
}

.test-con .test-shape-one {
  width: auto !important;
  margin-bottom: 6px;
}

.test-con .test-shape-two {
  width: auto !important;
  margin-top: 6px;
  margin-left: auto;
}

.testi-slider .owl-dots button {
  border: 1px solid var(--secondry-color) !important;
  background-color: unset !important;
  width: 40px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

.testi-slider .owl-dots button.active {
  background-color: var(--secondry-background) !important;
  height: 8px;
}

.testi-slider .owl-dots {
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  display: var(--secondary-display) !important;
  bottom: -70px;
  left: 0px;
  right: 0;
}

.testi-slider .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

/*========================Home testimonial css end===========================*/


/*========================footer css start===========================*/
.footer-main {
  padding: 40px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.quick-contact {
  padding-right: 40px;
}

.quick-contact h3 {
  width: auto;
  font-size: 22px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 27px;
  display: inline-block;
  position: relative;
}

.quick-contact h3:after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 100%;
  background: #f0d9a5;
  height: 1px;
}

.quick-contact p {
  color: #fff;
  font-size: 15px;
}

.quick-contact a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.quick-contact a i {
  color: var(--theme-color);
  margin-right: 5px;
}

.useful-serv h3 {
  width: auto;
  font-size: 22px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 27px;
  display: inline-block;
  position: relative;
}

.useful-serv h3:after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 100%;
  background: #fff;
  height: 1px;
}

.useful-links ul {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}

.useful-links ul li {
  margin-bottom: 10px;
}

.useful-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.useful-links ul li a i {
  color: var(--theme-color);
  margin-right: 10px;
}



.news-letter h3 {
  width: auto;
  font-size: 22px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 27px;
  display: inline-block;
  position: relative;
}

.news-letter h3:after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 100%;
  background: #fff;
  height: 1px;
}

.news-letter {
  padding-left: 30px;
}

.news-letter p {
  color: #fff;
  font-size: 15px;
}

.news-letter form {
  margin-top: 4px;
}

.news-letter .input-group input {
  border: gainsboro;
  border-radius: 0;
  padding: 13px;
}

.news-letter .input-group input:focus {
  box-shadow: unset;
  outline: none;
}

.news-letter .input-group button {
  background-color: var(--theme-color);
  border: none;
  color: #211c52;
  padding: 12px 19px;
  border-radius: 0;
}

.news-letter .input-group button:focus {
  box-shadow: unset;
  outline: none;
}

.news-letter .header-social-links-style3 ul {
  overflow: hidden;
  text-align: left;
  margin-bottom: 0px;
  padding-left: 3px;
}

.news-letter .header-top-right {
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 8px;
  margin-top: 34px;
}

.footer-bottom-content {
  display: flex;
  height: 100%;
  align-items: center;
}

.footer-bottom-content p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0px;
  line-height: 27px;
}

.copyright {
  background-color: #031321;
  padding: 20px;
}

.copyright p {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0px;
}

.copyright p a {
  color: #fff;
  text-decoration: none;
}

.foot-social {
  margin-top: 25px;
}

.foot-social ul {
  padding-left: 0px;
}

/*========================footer css end===========================*/

/*==========================Inner banner section css start==========================*/

.inner-banner-inner {
  background-position: 100%;
  background-size: cover;
  height: 500px;
  position: relative;
}

.inner-banner-main {
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
}

.inner-banner-content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  padding-top: 80px;
  text-transform: uppercase;
}

.inner-banner-img {
  width: 100%;
}

.inner-banner-img img {
  width: 100%;
  height: 250px;
  border-radius: 0px;
  object-fit: cover;
  object-position: center;
}

.inner-banner-img {
  position: relative;
}

.inner-banner-con-inn h2 {
  color: #f7dea7;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}

ol.breadcrumb li {
  display: inline;
  font-size: 18px;
  color: #fff !important;
  font-weight: 500;
}

ol.breadcrumb li+li:before {
  padding: 0px;
  color: #fff !important;
  content: "/\00a0";
}

ol.breadcrumb li a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
}

ol.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}

.bread-crumbs {
  margin-bottom: 0;
}

ol.breadcrumb li a i {
  margin-right: 7px;
}

.inner-banner-wrapper {
  padding-top: 0px;
}

.inner-banner-con {
  text-align: center;
}

.breadcrumb {
  justify-content: center;
}

/*==========================Inner banner section css end===========================*/

/*==========================about features section css start===========================*/

.about-features-wrapp {
  background-color: #F3F3F3;
  padding: 50px 0px 80px;
}

.why-card-1.style-2 {
  position: relative;
  text-align: start;
  background-size: cover !important;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #D8DDE161;
  border-radius: 16px;
}

.why-card-1.style-2.style-4 {
  border: 0;
  background: var(--white-color);
  padding: 19px;
  box-shadow: 0px 0px 10px #ccc;
  margin: 10px;
}

.why-card-1.style-2::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: -webkit-linear-gradient(right, transparent, #D8DDE1);
  background: -webkit-linear-gradient(right, transparent, rgba(216, 221, 225, 0.2));
  background: linear-gradient(to left, transparent, rgba(216, 221, 225, 0.2));
  mask-composite: add, add;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: .99;
}

.why-card-1.style-2 .count {
  position: absolute;
  right: 40px;
  font-size: 57px;
  color: #554B4B;
  opacity: .2;
  top: 37px;
  font-weight: 700;
}

.why-card-1.style-2.style-4 .why-card-1__icon {
  background: #F6F2F1;
  height: 64px;
  width: 64px;
  line-height: 64px;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-card-1.style-2 .why-card-1__icon {
  text-align: start;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #FDEDEC;
  text-align: center;
  line-height: 80px;
  margin-bottom: 25px;
}

.why-card-1__icon {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.why-card-1.style-2 .why-card-1__icon:before {
  left: 0;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
  opacity: 0;
}

.why-card-1__icon:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 6px;
  background: #FDEDEC;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -15px;
}

.why-card-1.style-2.style-4 .why-card-1__icon img {
  width: 39px;
}

.why-card-1:hover .why-card-1__icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.why-card-1__icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.why-card-1__content {
  margin-bottom: 24px;
}

.why-card-1.style-2.style-4 .box-title {
  width: 100%;
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
  font-weight: 700;
}

.box-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.why-card-1__content .box-text {
  color: #1A1A1A;
  font-size: 14px;
}

.th-btn.style3 {
  background-color: transparent;
  color: var(--title-color);
  border: 1px solid var(--primary-color);
}

.th-btn.radius {
  border-radius: 10px;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--primary-background);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 10px;
  min-width: 145px;
  border-radius: 0px;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.th-btn.style3:hover {
  color: var(--white-color);
}

.th-btn:hover,
.th-btn.active {
  color: var(--white-color);
  box-shadow: none;
}

.th-btn:hover::before,
.th-btn.active::before {
  width: 100%;
  background-color: var(--primary-background);
  color: var(--white-color);
}

.th-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}


.features-slider .owl-dots button {
  border: 1px solid var(--secondry-color) !important;
  background-color: unset !important;
  width: 40px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

.features-slider .owl-dots button.active {
  background-color: var(--secondry-background) !important;
  height: 8px;
}

.features-slider .owl-dots {
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  display: var(--secondary-display) !important;
  bottom: -50px;
  left: 0px;
  right: 0;
}

.features-slider .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

/*==========================about features section css end===========================*/

/*==========================about team section css start===========================*/
.team-wrapper {
  padding: 50px 0px 80px;
}

.team-widget-boxarea {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 0px;
}

.team-widget-boxarea .img1 {
  position: relative;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.team-widget-boxarea .img1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-widget-boxarea .share {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.team-widget-boxarea:hover .share a {
  background: var(--primary-color);
  transition: all .4s;
}

.team-widget-boxarea .share a {
  height: 48px;
  width: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  display: inline-block;
  transition: all .4s;
  background: #3892C6;
}

.team-widget-boxarea:hover .share a svg {
  color: #fff;
}

.team-widget-boxarea .share svg {
  transition: all .4s;
}

.team-widget-boxarea:hover ul {
  right: 20px;
  transition: all .6s;
}

.team-widget-boxarea ul {
  position: absolute;
  bottom: 80px;
  right: -100px;
  transition: all .6s;
  z-index: 2;
  list-style-type: none;
}

.team-widget-boxarea ul li a {
  height: 48px;
  width: 48px;
  text-align: center;
  line-height: 48px;
  display: inline-block;
  background: #fff;
  transition: all .4s;
  color: #030e0f;
  font-size: 20px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-widget-boxarea ul li a:hover {
  background: var(--primary-background);
  transition: all .4s;
}

.team-widget-boxarea ul li a:hover i {
  color: #fff;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.team-widget-boxarea .content-area {
  padding-top: 15px;
}

.team-widget-boxarea .content-area a {
  color: #030e0f;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  transition: all .4s;
  text-decoration: none;
  margin-bottom: 10px;
}

.team-widget-boxarea .content-area p {
  font-size: 15px;
  color: #004a87;
  font-weight: 600;
}

.abt-team-slide .owl-dots button {
  border: 1px solid var(--secondry-color) !important;
  background-color: unset !important;
  width: 40px;
  height: 8px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 9px;
}

.abt-team-slide .owl-dots button.active {
  background-color: var(--secondry-background) !important;
  height: 8px;
}

.abt-team-slide .owl-dots {
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  display: var(--secondary-display) !important;
  bottom: -50px;
  left: 0px;
  right: 0;
}

.abt-team-slide .owl-dots button:focus {
  outline: none;
  box-shadow: none;
}

/*==========================about team section css end===========================*/


/*==========================about timeline section css start===========================*/
.timeline-wrapper {
  text-align: center;
  padding: 50px 0px;
}

.timeline-wrapper .timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.timeline-wrapper .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  position: relative;
}

.timeline-wrapper .circle {
  width: 90px;
  height: 90px;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background-color: #004a87;
  color: #fff;
}

.timeline-wrapper .line-connector {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(0 74 135);
  margin: 10px 0;
  position: relative;
}

.timeline-wrapper .line-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.timeline-wrapper .content {
  border: unset;
  border-radius: 8px;
  padding: 28px 10px;
  margin-top: 10px;
  text-align: center;
  background-color: #E4F4FD;
  box-shadow: 0px 0px 6px #004a87;
}

.timeline-wrapper .content h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #004a87;
}

.timeline-wrapper .content p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0px;
}

.developer-vision-wrapp {
  padding: 50px 0px;
  background-color: #F3F3F3;
}

/*==========================about timeline section css end===========================*/

/*==========================properties Listing section css start===========================*/

.property-filter-wrapp {
  padding: 50px 0px;
}

.prop-filter-main {
  background-color: #E4F4FD;
  padding: 20px;
  border-radius: 20px;
}

.prop-filter-main input {
  background-color: unset;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
}

.prop-filter-main select {
  background-color: unset;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
}

.prop-filter-main button {
  background-color: var(--primary-background);
  width: var(--width);
  font-size: var(--font-15);
  font-weight: var(--font-weight-500);
  height: var(--height);
  color: var(--white-color);
  border-radius: 50px;
}

.prop-filter-main button:hover {
  background-color: #239D3B;
  color: #fff;
}

.prop-filter-main input:focus {
  box-shadow: unset;
  outline: none;
  border: 1px solid var(--primary-color);
  background-color: unset;
}

.prop-filter-main select:focus {
  box-shadow: unset;
  outline: none;
  border: 1px solid var(--primary-color);
}

.prop-filter-main button:focus {
  box-shadow: unset;
  outline: none;
}

.prop-list-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.property-list-box {
  border: 1px solid #ccc;
  border-radius: 15px;
}

.prop-list-con {
  padding: 20px;
}

.property-list .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(0 74 135) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50px;
  border: 1px solid #ccc;
  color: #fff !important;
}

.property-list .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.property-list .owl-nav .owl-prev:focus {
  outline: 0;
}

.property-list .owl-nav .owl-prev:hover {
  background: #000 !important;
  color: #fff;
}

.property-list .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgb(0 74 135) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50px;
  border: 1px solid #ccc;
  color: #fff !important;
}

.property-list .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.property-list .owl-nav .owl-next:focus {
  outline: 0;
}

.property-list .owl-nav .owl-next:hover {
  background: #000 !important;
  color: #fff;
}

.property-list:hover .owl-prev {
  left: 15px;
  opacity: 1;
}

.property-list:hover .owl-next {
  right: 15px;
  opacity: 1;
}

.prop-list-con h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.prop-list-con h4 {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

.prop-list-con h4 i {
  color: #239D3B;
  margin-right: 10px;
}

.prop-list-con ul {
  list-style: none;
  display: var(--secondary-display);
  gap: 50px;
  margin-top: 24px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 14px 0px;
  margin-bottom: 24px;
}

.prop-list-con ul li {
  display: var(--secondary-display);
  gap: 15px;
  align-items: center;
}

.prop-list-con ul li .new-feat-img img {
  width: 34px;
}

.prop-list-con ul li .new-prop-feat h4 {
  border: none;
  padding: 0;
  margin-bottom: 0;
  font-weight: var(--font-weight-600);
  font-size: var(--font-15);
}

.prop-list-con ul li .new-prop-feat p {
  font-size: var(--font-13);
  font-weight: var(--font-weight-500);
  color: #9A9A9A;
  margin-bottom: 0px;
}

.price-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-div h3 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 28px;
}

.price-div a {
  display: inline-block;
  border: 1px solid #004a87;
  padding: 8px 23px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.price-div a:hover {
  color: #fff;
  background-color: var(--primary-background);
}

.property-list-box {
  margin-bottom: 30px;
}

/*==========================properties Listing section css end===========================*/

/*==========================gallery page section css start===========================*/
.gallery-box img {
  width: var(--width);
  border-radius: 10px;
}

.gallery-box {
  margin-bottom: 20px;
}

.gallery-middle-wrapp {
  padding: 50px 0px;
}

.testi-page-wrapp {
  padding: 50px 0px;
}

.testi-page-wrapp .test-con .test-shape-two {
  display: block;
}

.testi-page-wrapp .testi-box {
  margin-bottom: 20px;
}

.faq-page-wrapp .explore-prop-head {
  margin-bottom: 21px;
}

/*==========================gallery page section css end===========================*/

/*==========================contact page section css start===========================*/

.contact-add-box {
  background-color: #E4F4FF;
  border: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.contact-add-box i {
  background-color: #004a87;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
  border-radius: 50px;
  font-size: 20px;
}

.contact-add-box p {
  color: var(--primary-color);
  margin-bottom: 0px;
  text-align: center;
}

.contact-add-box p a {
  text-decoration: none;
  color: var(--primary-color);
}

.contact-page-wrapp {
  padding: 50px 0px;
}

.leave-comment {
  background-color: #E4F4FF;
  border: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 0px;
}

.leave-comment h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.leave-comment form input {
  background-color: unset;
  border-radius: 50px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
  padding: 13px 20px;
  border: 1px solid var(--primary-color);
}

.leave-comment form input:focus {
  background-color: unset;
  outline: none;
  box-shadow: unset;
  color: #fff;
  border-color: var(--primary-color);
}

.leave-comment form textarea {
  background-color: unset;
  border-radius: 15px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
  padding: 13px 20px;
  height: 150px;
  border: 1px solid var(--primary-color);
}

.leave-comment form textarea:focus {
  background-color: unset;
  outline: none;
  box-shadow: unset;
  color: #fff;
  border-color: var(--primary-color);
}

.leave-comment form button {
  background-color: var(--primary-background);
  color: #fff;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 16px;
  display: inline-block;
  border-radius: 50px;
}

.leave-comment form button:hover {
  background-color: #239D3B;
  color: #fff;
}

.leave-comment form button:hover {
  color: #fff;
}

.map-div {
  height: 100%;
}

.map-div iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.contact-page-form {
  padding-top: 50px;
}

/*==========================contact page section css end===========================*/
.amenities-page-wrapp {
  padding: 50px 0px;
}

.amenities-add-box {
  background-color: #E4F4FF;
  border: 1px solid var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.amenities-add-box i {
  background-color: #004a87;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
  border-radius: 50px;
  font-size: 20px;
}

.amenities-add-box p {
  color: var(--primary-color);
  margin-bottom: 0px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.amenit-image {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: #004a87;
  border-radius: 50px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amenit-image img {
  filter: brightness(0) invert(1);
  width: 100%;
}

.amenities-gallery-wrapp {
  padding: 50px 0px;
}

/*==========================property detail section css start===========================*/

/*.outer { margin:0 auto; max-width:800px;}*/
#big .item {
  background: #E4F4FF;
  padding: 0px 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  height: 400px;
  border-radius: 15px;
}

#big .item img {
  object-fit: cover;
  border-radius: 15px;
  height: 100%;
}

#thumbs .item {
  background: #E4F4FF;
  height: 100px;
  line-height: 70px;
  padding: 0px;
  margin: 2px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  border-radius: 15px;
}

#thumbs .item img {
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#thumbs .item h1 {
  font-size: 18px;
}

#thumbs .current .item {
  background: #E4F4FF;
}

.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}

#big.owl-theme {
  position: relative;
}

#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
  background: #046ec6;
  width: 40px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
  border-radius: 50px;
  color: #fff;
}

#big.owl-theme .owl-prev {
  left: 10px;
}

#big.owl-theme .owl-next {
  right: 10px;
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  background: #333;
}

.prop-det-img {
  height: 100%;
}

.property-detail-wrapp {
  padding: 50px 0px;
}

.property-feat-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
}

.property-feat-top h4 {
  background-color: var(--primary-background);
  margin-bottom: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 50px;
}

.property-feat-top p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 16px;
}

.property-feat-top p i {
  color: var(--primary-color);
  margin-right: 5px;
}

.prop-det-head-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.prop-det-head-price h2 {
  margin-bottom: 0px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.prop-det-head-price h3 {
  margin-bottom: 0px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 30px;
}

.product-detail-descript {
  padding: 20px 0px;
}

.product-detail-descript h5 {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #000;
  margin-bottom: 17px;
}

.product-detail-descript h5 i {
  color: var(--primary-color);
  margin-right: 7px;
  font-size: 18px;
}

.product-detail-descript p,
li {
  font-size: 15px;
  color: #000;
  line-height: 21px;
}

.property-grid-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #e4f4ff;
  border-radius: 8px;
  padding: 27px 23px;
  list-style: none;
  margin: 0;
  gap: 29px
}

@media (max-width: 1500px) {
  .property-grid-list {
    grid-template-columns: repeat(5, 1fr)
  }
}

@media (max-width: 1399px) {
  .property-grid-list {
    grid-template-columns: repeat(5, 1fr)
  }
}

@media (max-width: 1299px) {
  .property-grid-list {
    grid-template-columns: repeat(5, 1fr)
  }
}

@media (max-width: 767px) {
  .property-grid-list {
    padding: 30px
  }
}

@media (max-width: 575px) {
  .property-grid-list {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 375px) {
  .property-grid-list {
    grid-template-columns: repeat(1, 1fr)
  }
}

.property-grid-list li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px
}

.property-grid-list li .property-grid-list-icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 44px;
  height: 44px;
  line-height: 39px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  text-align: center;
  background-color: #004a87;
}

.property-grid-list li .property-grid-list-icon img {
  filter: brightness(0) invert(1);
}

.property-grid-list li .property-grid-list-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.property-grid-list li .property-grid-list-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  margin-bottom: -0.3em;
}

.prop-detail-highlight h2 {
  margin-bottom: 23px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.property-detail-gallery {
  padding: 20px 0px 0px;
}

.property-detail-gallery h2 {
  margin-bottom: 23px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.property-detail-aminit .amenities-add-box {
  background-color: #E4F4FF;
  border: 1px solid var(--primary-color);
  padding: 9px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.property-detail-aminit .amenit-image {
  width: 40px;
  height: 40px;
  margin: unset;
  background-color: #004a87;
  border-radius: 50px;
  padding: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px !important;
}

.property-detail-aminit .amenities-add-box p {
  color: var(--primary-color);
  margin-bottom: 0px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.property-detail-aminit h2 {
  margin-bottom: 23px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.location-project-detail {
  padding: 20px 0px;
}

.location-project-detail h2 {
  margin-bottom: 23px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.location-project-detail iframe {
  border-radius: 15px;
  width: 100%;
}

.featured-properties {}

.featured-properties h4 {
  margin-bottom: 23px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
}

.featured-properties ul {
  list-style: none;
  padding-left: 0px;
}

.featured-properties ul li {
  display: flex;
  align-items: center;
}

.featured-properties .prop-feat-image {}

.featured-properties .prop-feat-image img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.featured-properties .prop-feat-con {
  margin-left: 10px;
}

.featured-properties .prop-feat-con h2 {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 17px;
}

.featured-properties .prop-feat-con h3 {
  margin-bottom: 0px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 20px;
}

.prop-detail-cta {
  margin-top: 20px;
  border-radius: 10px;
}

.prop-detail-cta .cta-main {
  border-radius: 15px;
  padding: 38px 0px;
}

.prop-detail-cta .cta-main h2 {
  font-size: 23px;
}

.prop-detail-cta .cta-main h3 {
  font-size: 17px;
}

/*==========================property detail section css end===========================*/

/*======================== home link  page css start===========================*/
.all-links-inner ul {
  padding-left: 0px;
  margin-left: 0px;
  list-style-type: none;
  margin-top: 0px;
}

.all-links-inner ul li a {
  color: #000;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  text-align: center;
  display: block;
  padding: 10px;
  font-size: 21px;
}

.all-links-inner ul li {
  margin-bottom: 10px;
}

.mecella-heading {
  margin-bottom: 80px;
}

.mecella-heading h3 {
  color: #000;
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
}

.mecella-heading h3 span {
  font-weight: 900;
  color: var(--primary-color);
}

.mecella-heading h3:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100px;
  background-color: var(--primary-background);
  height: 5px;
  margin: 0 auto;
}

.welcome-mecella {
  background-color: #ccc;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-mecella img {
  width: 35%;
}

.all-links-wrapper {
  padding-top: 30px;
  padding-bottom: 50px;
}

/*======================== home link  page css end===========================*/
.row {
  margin: 0;
}

.g-recaptcha {
  transform: scale(.7);
  transform-origin: 0 0
}

.coming-soon-wrapp {
  background-color: #f3f3f3;
  padding: 50px 0
}

.coming-con,
.coming-con a,
.coming-con p {
  text-align: center
}

.error-page h3 {
  font-size: 100px;
  color: #146e25 !important;
  font-weight: 800
}

.error-page h5 {
  font-size: 2.4rem;
  color: #000;
  font-weight: 700
}

.coming-con a {
  display: inline-block;
  margin: 25px auto 0;
  background-color: #146e25;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none
}

/* language change css start  */
body {
  top: 0 !important
}

.skiptranslate {
  display: none !important
}

.custom-translate-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif
}

.custom-translate-dropdown button {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px
}

.lang-options {
  list-style: none;
  margin: 0;
  padding: 5px 0;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 160px;
  z-index: 999
}

.lang-options.show {
  display: block
}

.lang-options li {
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center
}

.lang-options li:hover {
  background-color: #f0f0f0
}

.lang-options img {
  margin-right: 8px
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: 1s linear infinite spin
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.home-abt-con-inn li {
  font-size: 14px;
  color: #000;
}

/* language change css end */