@charset "utf-8";
/* CSS Document */

/* CSS Document © 2024 ProWebPrism */
/* @font-face {
    font-family: 'Athelas';
    src: url('../fonts/Athelas-Regular.eot');
    src: url('../fonts/Athelas-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Athelas-Regular.woff2') format('woff2'),
        url('../fonts/Athelas-Regular.woff') format('woff'),
        url('../fonts/Athelas-Regular.ttf') format('truetype'),
        url('../fonts/Athelas-Regular.svg#Athelas-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chap';
    src: url('../fonts/Chap-Regular.eot');
    src: url('../fonts/Chap-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Chap-Regular.woff2') format('woff2'),
        url('../fonts/Chap-Regular.woff') format('woff'),
        url('../fonts/Chap-Regular.ttf') format('truetype'),
        url('../fonts/Chap-Regular.svg#Chap-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
 */
:root {
  --primary: #f3af4a;
}

::-moz-selection {
  background: #7b7d7f;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #7b7d7f;
  color: #ffffff;
  text-shadow: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Jost", sans-serif;
}
strong{font-weight: bold;}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  color: #000;
  background: #ffffff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  /* overflow-y: scroll; */
  position: relative;
}

:root {
  overflow-y: scroll;
}

/* html.cl-loaded.menu-came-in {
  overflow: hidden;
} */

a {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
}

a:hover {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
}
p {
  margin-bottom: 10px;
}
p,
p span {
  font-family: "Jost", sans-serif;
}

img {
  border: 0px;
}

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

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: #ffffff;
}

::-moz-placeholder {
  color: #ffffff;
}

:-ms-input-placeholder {
  color: #ffffff;
}

:-moz-placeholder {
  color: #ffffff;
}

section,
header,
footer {
  width: 100%;
  float: left;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant", serif;
}

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

.nav-bar {
  position: absolute;
  background-color: #000000;
  top: 0;
  right: 105%;
  height: 100vh;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: position 2.9s;
  -webkit-transition: position 2.9s;
  -moz-transition: position 2.9s;
  -ms-transition: position 2.9s;
  -o-transition: position 2.9s;
}

.toggle {
  left: 0;
  box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
}

.toggle-menu {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2px 2px 2px 3px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.line {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  transition: transform 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -ms-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
}

.toggle .line1 {
  background-color: #000000;
  transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
}

.toggle .line2 {
  display: none;
}

.toggle .line3 {
  background-color: #000000;
  transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
}

.toggle .toggle-menu {
  background-color: white;
}

.nav-list {
  list-style: none;
}

.nav-list-item {
  text-align: center;
  padding: 10px 0;
}

.nav-link {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
  transform-origin: left;
  -webkit-transition: transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out;
  -ms-transition: transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.primary-btn {
  margin-top: 40px;
}
.primary-btn a {
  padding: 12px 30px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 17px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  font-weight: 500;
  text-transform: uppercase;
}
.primary-btn a:hover {
  background-color: transparent;
  color: var(--primary);
}

.secondry-btn {
  margin-top: 40px;
}
.secondry-btn a {
  padding: 12px 30px;
  background-color: #ffffff;
  color: var(--primary);
  font-size: 17px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  font-weight: 500;
  text-transform: uppercase;
}
.secondry-btn a:hover {
  background-color: transparent;
  color: #ffffff;
}
.whatsup-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.whatsup-icon img {
  width: 50px;
  height: 50px;
}
/* Home-page */
.logo img {
  width: 170px;
}
.header-sec {
  background-color: #000000;
  padding: 10px 0px;
  position: fixed;
  top: 0;
  z-index: 99999;
}
.header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  position: relative;
}
.heder-left {
  width: 40%;
}
.header-right {
  width: 60%;
}
.header-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-right ul li a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
}
.header-right ul li a:hover {
  color: var(--primary);
}
.dropbtn {
  color: white;
  cursor: pointer;
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown:hover::after {
  border-color: var(--primary);
}
.dropdown::after {
  position: absolute;
  right: -20px;
  content: "";
  bottom: 8px;
  border: solid #ffffff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 215px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 50px;
  right: -18px;
  text-align: right;
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
}

.show {
  display: block;
}

.video-sec {
  margin-top: -100px;
  position: relative;
  z-index: -1;
}
.video-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-color: #000;
}
.banner-img {
  margin-top: -100px;
  position: relative;
  z-index: -1;
}
.banner-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #000;
}
.banner-sec {
  position: relative;
  margin-top: 100px;
}
.banner-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
}
.banner-content h1 {
  font-size: 70px;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
}
.banner-content p {
  font-size: 20px;
  color: var(--primary);
  margin-top: 40px;
  line-height: 1.8;
}
.banner-content .primary-btn a {
  text-transform: uppercase;
}
.banner-content .primary-btn:last-child a{
  background-color: transparent;
  color: var(--primary);
}
.banner-content .primary-btn:last-child a:hover{
  background-color: var(--primary);
  color: #fff;
}
/* about-sec */

.about-sec {
  padding: 80px 0px;
}
.about-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-left {
  width: 40%;
  position: relative;
}
.about-left-img::after {
  position: absolute;
  right: -90px;
  width: 180px;
  height: 180px;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-image: url("../images/about-img-after.svg");
}
.about-left img {
  border-radius: 20px;
}
.about-right {
  width: 48%;
}
.about-sec-content h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-sec-content h2 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 30px;
  color: black;
  text-transform: uppercase;
}
.about-sec-content p {
  font-size: 18px;
  line-height: 1.8;
}

/* property-sec */

.property-sec {
  padding: 80px 0px;
  background-color: #f7f7f7;
}
.property-head {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.property-head h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.property-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.property-section {
  margin-top: 50px;
}
.property-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.property-card {
  width: 32%;
  padding: 10px;
  border: 1px solid #d7d5d5;
  margin-bottom: 25px;
  transition: box-shadow 0.4s;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.property-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  border-radius: 10px;
}
.property-card-img img {
  border-radius: 10px;
  transition: 0.6s all ease-in-out;
}
.property-card:hover {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.property-card:hover .property-card-img img {
  transform: scale(1.2);
  overflow: hidden;
}
.property-card-content {
  text-align: center;
  margin-top: 30px;
}
.property-card-content h3 {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 20px;
  margin: 10px 0px;
  font-weight: 600;
}
.property-card-content h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
}
.property-card-content p {
  text-align: center;
  margin-bottom: 20px;
  color: #7b7d7f;
}
.property-sec .primary-btn {
  text-align: center;
}
.property-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px;
  margin-bottom: 0;
}
.prop-sp img {
  width: 22px;
  opacity: 0.3;
}
.prop-sp {
  display: flex;
  align-items: baseline;
}
.prop-sp p {
  font-weight: 600;
  margin-left: 10px;
  font-size: 18px;
  color: #000;
}

/* team-sec */

/* .team-sec{
  padding: 80px 0px;
}
.team-des{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-des-left{
  width: 60%;
}
.team-des-left h4{
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.team-des-left h2{
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.team-des-right{
  position: relative;
  width: 40%;
}
.team-des-right p{
  font-size: 18px;
  line-height: 1.8;
}
.team-des-right::before{
  position: absolute;
  top: 0;
  left: -80px;
  background-color: var(--primary);
  height: 170px;
  width: 2px;
  content: "";
}
.team-mates-slider{
  margin-top: 100px;
}
.team-card-content{
  position: relative;
}
.team-mate-img::after{
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  background-color: #000000ac;
  width: 100%;
  height: 100px;
}
.team-content{
  color: #ffffff;
  position: absolute;
  bottom: 0;
  text-align: center;
  margin: 30px auto;
  left: 50%;
  transform: translateX(-50%);
}
.team-content h3{
  font-size: 30px;
  margin-bottom: 5px;
}
.team-content p{
  margin-bottom: 0;
}
.team-media{
  background-color: #000000ac;
  width: 0%;
  height: 415px;
  position: absolute;
  top: 0;
  display: none;
  left: 0;
  transition: 0.3s all ease-in-out;
}
.social-media{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  width: 100%;
}
.social-media a{
  display: block;
  width: 50px;
}
.team-card-content:hover .team-media{
  display: flex;
  align-items: center;
  justify-content:center;
  width: 100%;
} */

/* places-sec */

.places-sec {
  padding: 80px 0px;
  background-color: #f7f7f7;
}
.places-head {
  text-align: center;
}
.places-head h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.places-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.places-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0px;
  flex-wrap: wrap;
}
.place-card {
  width: 32%;
  margin-top: 25px;
}
.place-card-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 0 1px #ebebeb;
}
.place-card-left {
  width: 50%;
}
.place-card-left img {
  width: 100%;
  border-radius: 20px 0px 0px 20px;
  object-fit: cover;
  height: 100%;
  display: block;
}
.place-card-right {
  width: 45%;
  margin-left: 20px;
  text-align: center;
}
.place-card-right h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: 0.3s all ease-in-out;
}
.place-card-right h5 {
  font-size: 20px;
  color: #000;
  transition: 0.3s all ease-in-out;
}
.place-card:hover .place-card-right h3 {
  color: #000;
}
.place-card:hover .place-card-right h5 {
  color: var(--primary);
}

/* contact-sec */

.contact-sec {
  padding: 80px 0px;
}
.contact-head h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.contact-left {
  width: 48%;
}
.contact-img {
  margin: 50px 0px;
}
.contact-img img {
  border-radius: 20px;
}
.contact-right {
  width: 48%;
}
.address-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 40px;
}
.contact-address {
  margin-top: 25px;
}
.add-icon {
  background-color: var(--primary);
  width: 60px;
  height: 60px;
  padding: 15px;
  border-radius: 50%;
}
.add-content {
  margin-left: 30px;
}
.add-content h3 {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-address {
  display: flex;
  flex-wrap: wrap;
}
.add-content a {
  color: #000;
  font-size: 16px;
}
.add-content a:hover {
  color: var(--primary);
}
.contact-form-wrap {
  padding: 40px;
  border-radius: 20px;
}
.contact-form-head h2 {
  font-size: 40px;
  color: var(--primary);
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}
.contact-form input {
  height: 45px !important;
  margin-bottom: 20px !important;
  background-color: transparent !important;
}
.contact-form input,
.contact-form textarea {
  border-bottom: 1px solid var(--primary) !important;
  background-color: transparent !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  color: var(--primary) !important;
  font-size: 16px !important;
  border-radius: 0 !important;
}
.contact-form input:focus {
  box-shadow: none;
  border-color: var(--primary) !important;
  background-color: transparent !important;
}
.contact-form input::placeholder {
  color: var(--primary) !important;
  opacity: 1;
}
.contact-form input::-ms-input-placeholder {
  color: var(--primary) !important;
  opacity: 1;
}
.contact-form textarea:focus {
  box-shadow: none !important;
  border-color: var(--primary) !important;
  background-color: transparent !important;
}
.contact-form textarea::placeholder {
  color: var(--primary) !important;
  opacity: 1;
}

.contact-form textarea::-ms-input-placeholder {
  color: var(--primary) !important;
  opacity: 1;
}
.contact-form .secondry-btn a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}
.contact-form .secondry-btn a:hover {
  background-color: transparent;
  color: var(--primary);
}
.everest-forms-submit-button {
  display: inline-block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 20px !important;
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--primary) !important;
  text-transform: uppercase !important;
  font-family: "Jost", sans-serif;
  border-radius: 10px !important;
}
.everest-forms-submit-button:hover {
  background-color: transparent !important;
  color: var(--primary) !important;
}
/* footer-sec */

.footer-sec {
  padding: 80px 0px;
  background-color: #000000f2;
  text-align: center;
}
.footer-logo {
  width: 200px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
.footer-menu-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
.footer-menu-list ul li a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
}
.footer-menu-list ul li a:hover {
  color: var(--primary);
}
.copy-right {
  color: #ffffff; 
}
.copy-right a {
  color: var(--primary);
}
.footer-social-media-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 260px;
  margin: 30px auto;
}
.footer-social-media-icons .social-icon {
  width: 45px;
  height: 45px;
  border: 2px solid #ffffff;
  border-radius: 2px solid #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-social-media-icons .social-icon img {
  width: 20px;
  height: 20px;
  object-fit: fill;
}
.footer-social-media-icons .social-icon:hover {
  border-color: var(--primary);
}

/* property-page */

.property-banner {
  position: relative;
  margin-top: 100px;
}

.property-banner .banner-img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.property-banner .banner-img::after {
  opacity: 0.6;
}
.property-banner .banner-content {
  top: 30%;
  transform: translate(-50%, -30%);
}
.property-banner .banner-content p {
  margin-top: 10px;
}
.property-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-inner-sec {
  margin: 100px 0px;
}
.house-banner {
  position: relative;
}
.house-banner img {
  border-radius: 20px;
}
.property-brief {
  background-color: #000000ee;
  padding: 30px;
  max-width: 1200px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 20px;
  border: 20px solid #ffffff;
}
.prop-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop-data {
  text-align: center;
}
.prop-data h3 {
  font-size: 16px;
  color: var(--primary);
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.prop-data h2 {
  color: #ffffff;
  font-size: 25px;
  text-transform: uppercase;
}
.property-pagination {
  margin-top: 50px;
}
.pagination {
  justify-content: center;
}
.next-pagintion span {
  font-size: 40px;
  color: var(--primary);
}
.prev-pageination span {
  font-size: 40px;
  color: var(--primary);
}
.page-item:last-child .page-link {
  background-color: transparent !important;
  border: none;
}
.page-item:first-child .page-link {
  background-color: transparent !important;
  border: none;
}
.page-link {
  border: none;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0px 30px;
}
.page-link:hover {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.page-link:focus {
  box-shadow: none;
}
/* testimonial-sec */

.testimonial-sec {
  padding: 80px 0px;
}
.testi-head {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.testi-head h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.testi-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.testi-swiper-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.testi-swiper {
  padding: 60px 0px;
  padding-bottom: 30px;
}
.testi-slider-content {
  text-align: center;
  padding: 0px 100px;
}
.testi-avathar {
  border: 5px solid #ffffff;
  box-sizing: border-box;
  height: 100px;
  border-radius: 50%;
  position: relative;
  width: 100px;
  margin: 0 auto;
}
.testi-ava-img {
  width: 100%;
  border-radius: 50%;
}
.testi-avathar::before,
.testi-avathar::after {
  border: 5px solid transparent;
  border-radius: 50%;
  border-top: 5px solid var(--primary);
  content: "";
  display: block;
  height: calc(100% + 10px);
  left: 50%;
  width: calc(100% + 10px);
  position: absolute;
}
.testi-avathar::before {
  top: -10px;
  transform: translateX(-50%);
}
.testi-avathar::after {
  bottom: -10px;
  transform: translateX(-50%) rotate(180deg);
}
.testi-content {
  margin: 30px 0px;
}
.testi-content p {
  line-height: 2;
  margin-bottom: 20px;
  color: #7b7d7f;
}
.testi-content h3 {
  font-size: 28px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testi-content h5 {
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: capitalize;
  text-transform: uppercase;
}
.testi-next:after,
.testi-prev:after {
  color: var(--primary);
}
.testi-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* proprty-inner-page */

.propertyinner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.property-deatil-sec {
  padding: 50px 0px;
  margin-top: 100px;
  position: relative;
}
.property-inner-head-left h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.property-inner-head-left p {
  color: var(--primary);
  font-size: 25px;
}
.property-inner-head-right h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 5px solid var(--primary);
}
.property-inner-detail-images {
  margin: 50px 0px;
}
.property-img-grid > div {
  border: 1px solid var(--primary);
  border-radius: 10px;
  color: #d9480f;
}

.property-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(100px, auto);
}
.property-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.one {
  grid-column: 1 / 3;
  grid-row: 1/5;
}
.two {
  grid-column: 3/ 4;
  grid-row: 1 / 3;
}
.three {
  grid-column: 4/5;
  grid-row: 1 / 3;
}
.four {
  grid-column: 3;
  grid-row: 3/5;
}
.five {
  grid-column: 4;
  grid-row: 3/5;
}

.property-detail-review-sec {
  background-color: #f7f7f7;
  padding: 80px 0px;
}
.property-deatil-review-content {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.property-detail-review-left {
  width: 69%;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 20px;
}
.property-detail-review-right {
  width: 29%;
  background-color: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 20px;
}
.property-inner-specs {
  margin-bottom: 50px;
}
.property-inner-specs ul {
  display: flex;
  align-items: center;
}
.property-inner-specs ul li {
  background-color: #f7f7f7;
  padding: 8px 20px;
  border-radius: 10px;
  margin-right: 20px;
  border: 1px solid #ebebeb;
  font-size: 17px;
  color: #000000ba;
  font-family: "Jost", sans-serif;
}
.property-overview {
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 50px;
}
.property-overview h3 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.property-overview p {
  font-size: 18px;
  color: #000000ae;
}
.property-location h3 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.property-conatct-head h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  padding-bottom: 10px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid var(--primary);
  text-transform: uppercase;
}
.contact-person img {
  border-radius: 10px;
}
.contact-person-deatil {
  margin: 30px 0px;
  text-align: center;
}
.contact-person-deatil h3 {
  font-size: 28px;
  color: var(--primary);
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  text-transform: uppercase;
}
.contact-person-deatil p {
  font-size: 20px;
  color: var(--primary);
  font-weight: 400;
  border-radius: 10px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.contact-person-deatil a {
  display: block;
  margin: 10px 0px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--primary);
  padding: 10px;
  border-radius: 10px;
}

/* blog-page */
.blog-banner {
  margin-top: 100px;
  position: relative;
}
.blog-banner .banner-img img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.blog-banner .banner-img::after {
  opacity: 0.6;
}
.blog-banner .banner-content {
  top: 50%;
  transform: translate(-50%, -50%);
}
.blog-banner .banner-content p {
  margin-top: 10px;
}
.blog-sec {
  margin: 80px 0px;
}
.blog-sec-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.blog-page-left {
  width: 68%;
}
.blog-page-right {
  width: 28%;
}
.blog-list-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-card {
  width: 48%;
  padding: 10px;
  border: 1px solid #d7d5d5;
  margin-bottom: 30px;
  transition: box-shadow 0.4s;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.blog-img {
  position: relative;
  margin-bottom: 10px;
}
.blog-img img {
  border-radius: 10px;
  height: 260px;
  object-fit: cover;
  display: block;
  width: 100%;
}
.blog-cata {
  text-transform: capitalize;
  background-color: var(--primary);
  color: #ffffff;
  padding: 5px;
  max-width: 100px;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-cata p {
  margin-bottom: 0;
}
.blog-card-content {
  margin: 30px 0px;
}
.blog-head {
  margin-bottom: 10px;
}
.blog-head h3 {
  font-size: 25px;
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
}
.blog-date span {
  margin-right: 10px;
  margin-top: 10px;
}
.blog-date span img {
  width: 15px;
  height: 15px;
  opacity: 0.7;
}
.blog-date {
  margin-bottom: 20px;
}
.blog-date h4 {
  font-size: 18px;
  text-transform: capitalize;
  color: #000;
  opacity: 0.7;
}
.blog-para p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #7b7d7f;
  line-height: 1.5;
}
.blog-footer {
  border-top: 1px solid #d7d5d5;
  padding-top: 20px;
}
.blog-footer-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-foot-left {
  width: 50%;
}
.blog-foot-right {
  width: 50%;
}
.blog-foot-right .read-more {
  text-align: right;
  margin-right: 30px;
}
.blog-foot-right .read-more p {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
}
.blog-foot-right .read-more p::after {
  position: absolute;
  right: -18px;
  top: 4px;
  content: "";
  border: solid var(--primary);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.admin-image {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.admin-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #d7d5d5;
  margin-right: 20px;
}
.admin-image p {
  margin-bottom: 0;
  color: #7b7d7f;
}

.catagoery-sec {
  padding: 40px;
  border: 1px solid #d7d5d5;
  border-radius: 10px;
  margin-bottom: 50px;
}
.catagoery-sec h3 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.catagoery-sec ul li a {
  font-size: 16px;
  color: #000;
}
.catagoery-sec ul li.active a {
  color: var(--primary);
}
.catagoery-sec ul li a:hover {
  color: var(--primary);
}
.catagoery-sec ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
}
.catagoery-sec ul li::after {
  position: absolute;
  left: 0;
  content: "";
  top: 2px;
  border: solid var(--primary);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.latest-properties {
  padding: 40px;
  border: 1px solid #d7d5d5;
  border-radius: 10px;
}
.latest-properties h3 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.latest-prop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid var(--primary);
}
.latest-prop-card:last-child {
  border-bottom: none;
}
.latest-prop-card-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}
.latest-pro-card-content h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--primary);
  font-weight: 600;
}
.latest-pro-card-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}
.latest-pro-card-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-pro-card-content p {
  color: #7b7d7f;
  font-size: 14px;
}

/* blog-detail-sec */

.blog-detail-head p {
  background-color: var(--primary);
  color: #ffffff;
  padding: 10px 20px;
  max-width: 120px;
  text-align: center;
  margin-bottom: 25px;
}
.blog-detail-head h2 {
  font-size: 40px;
  font-weight: 600;
}
.blog-inner-admin {
  margin-top: 15px;
  display: flex;
}
.blog-inner-admin p {
  background-color: transparent;
  color: #7b7d7f;
  padding: 0;
  margin-bottom: 0;
}
.blog-inner-admin .admin-image {
  display: flex;
  align-items: center;
}
.blog-inner-admin .admin-date {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.blog-inner-admin .admin-date h4 {
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  color: #7b7d7f;
}
.blog-inner-admin .admin-date span img {
  width: 30px;
  height: 30px;
  opacity: 0.5;
  margin-right: 10px;
}
.blog-inner-image {
  margin: 30px 0px;
}
.blog-inner-image img {
  border-radius: 10px;
}
.content-wrap .content-row {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.content-wrap{
  margin: 30px 0px;
}
.content-wrap h2 {
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 20px;
}

.content-wrap h4 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.46;
  color: #1c1c1c;
}

.content-wrap .date {
  font-size: 14px;
  color: #919191;
  font-weight: 600;
  display: block;
  margin: 0 0 20px;
}

.content-wrap .content-img {
  width: 100%;
  margin: 0 0 27px;
}

.content-wrap p {
  font-size: 16px;
  line-height: 1.67;
  color: #7b7d7f;
  margin: 0 0 22px;
}

.content-wrap img {
  width: auto;
  height: auto;
}

.content-wrap a {
  color: var(--primary);
}

.content-wrap a:hover {
  color: #000;
}

.content-wrap ul {
  width: 100%;
  float: none;
  margin: 0 auto 28px;
  padding-left: 0;
}

.content-wrap ul li {
  font-size: 16px;
  line-height: 1.67;
  position: relative;
  margin: 0;
  padding: 0 0 0 15px;
  color: #7b7d7f;
}

.content-wrap ul li:before {
  content: "•";
  position: absolute;
  left: -1px;
  color: #000;
  font-size: 12px;
  top: 7px;
  line-height: normal;
}

.content-wrap ol {
  width: 100%;
  float: none;
  counter-reset: my-awesome-counter;
  margin: 0 auto 28px;
  position: relative;
}

.content-wrap ol li {
  font-size: 16px;
  line-height: 1.67;
  position: relative;
  margin: 0;
  padding: 0 0 0 4px;
  counter-increment: step-counter;
  color: #7b7d7f;
}

.content-wrap ol li:before {
  content: counter(step-counter) ".";
  margin-right: 0;
  position: relative;
  left: -4px;
  color: #000;
  top: 0;
}

.content-wrap h3 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}


/* .content-wrap {
  margin-bottom: 30px;
}
.content-wrap p {
  font-size: 16px;
  line-height: 1.6;
  color: #7b7d7f;
}
.content-wrap h2 {
  font-size: 32px;
}
.content-wrap h3,
.content-wrap h4 {
  font-size: 28px;
  margin: 20px 0px;
} */
.blog-share-option {
  padding: 20px;
  border: 1px solid #d7d5d5;
  border-left: 0;
  border-right: 0;
  display: flex;
  align-items: center;
}
.blog-share-option p {
  margin-bottom: 0;
}
.blog-share-icons {
  display: flex;
  align-items: center;
}
.blog-share-icons p{
  margin-bottom: 0;
}
.blog-share-icons a {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-left: 20px;
}
.blog-banner .banner-content p a {
  color: #ffffff;
}
.error-page-row {
  max-width: 800px;
  margin: 50px auto;
}
.error-page-col1 h1 {
  font-size: 40px;
}

.error-page-col1 h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--primary);
}
.error-page-col1 p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.67;
  margin: 0 0 22px;
}

.search-form {
  width: 100%;
  display: flex;
  align-items: center;
}
.search-form input {
  width: 197px;
  height: 45px;
  border: 1px solid var(--primary);
  margin: 0 7px 0 0;
  padding: 0 10px;
  color: #000;
  outline: none;
  box-shadow: none;
  display: inline-block;
}
.search-form .search-submit {
  width: auto;
  height: 45px;
  display: inline-block;
  padding: 0 13px;
  color: #ffff;
  border: 1px solid var(--primary);
  background: var(--primary);
  transition: all 0.25s ease-in-out;
}
.search-form .search-submit .screen-reader-text {
  position: relative !important;
  display: block;
  height: auto;
  width: auto;
  color: #ffff;
  clip-path: none;
  transition: all 0.25s ease-in-out;
}
.search-page-section {
  padding: 80px 0px;
}
.search-page-row {
  max-width: 1320px;
  margin: 0 auto;
}
.search-page-row .page-header .page-title {
  font-size: 38px;
  margin: 0 0 35px;
  display: flex;
}
.search-page-card {
  margin: 0 0 50px;
}
.search-page-content {
  padding: 0;
  max-width: inherit;
  width: 100%;
  text-align: left;
  flex: 1 0 0;
}
.search-page-content h3 {
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary);
}
.search-page-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  margin: 0 0 22px;
}
.search-btn1 {
  padding: 12px 24px;
  background-color: var(--primary);
  border-radius: 6px;
  color: #ffffff;
  border: 1px solid var(--primary);
  transition: 0.3s all ease-in-out;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 10px auto 0;
}
.search-btn1:hover {
  background-color: #ffffff;
  color: var(--primary);
}
.blog-inner-para {
  width: 100%;
  padding: 70px 0px;
}

.blog-inner-para .content-row {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.blog-inner-para h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 20px;
}

.blog-inner-para h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.46;
  color: #1c1c1c;
}

.blog-inner-para .date {
  font-size: 14px;
  color: #919191;
  font-weight: 600;
  display: block;
  margin: 0 0 20px;
}

.blog-inner-para .content-img {
  width: 100%;
  margin: 0 0 27px;
}

.blog-inner-para p {
  font-size: 18px;
  line-height: 1.67;
  color: #171a1f;
  margin: 0 0 22px;
}

.blog-inner-para img {
  width: auto;
  height: auto;
}

.blog-inner-para a {
  color: var(--primary);
}

.blog-inner-para a:hover {
  color: #000;
}

.blog-inner-para ul {
  width: 100%;
  float: none;
  margin: 0 auto 28px;
  padding-left: 0;
}

.blog-inner-para ul li {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.67;
  position: relative;
  margin: 0;
  padding: 0 0 0 15px;
}

.blog-inner-para ul li:before {
  content: "•";
  position: absolute;
  left: -1px;
  color: #000;
  font-size: 12px;
  top: 5px;
  line-height: normal;
}

.blog-inner-para ol {
  width: 100%;
  float: none;
  counter-reset: my-awesome-counter;
  margin: 0 auto 28px;
  position: relative;
}

.blog-inner-para ol li {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.67;
  position: relative;
  margin: 0;
  padding: 0 0 0 4px;
  counter-increment: step-counter;
}

.blog-inner-para ol li:before {
  content: counter(step-counter) ".";
  margin-right: 0;
  position: relative;
  left: -4px;
  color: #000;
  font-size: 16px;
  top: 0;
}

.blog-inner-para h3 {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px;
}
#cssmenu ul ul,
#desk-menu ul ul {
  display: none;
}
.blog-banner .banner-content p a {
  color: var(--primary);
}
.has-sub.open a {
  color: var(--primary);
}
.has-sub.open .sub-menu li a {
  color: #fff;
}
.has-sub.open .sub-menu li a:hover {
  color: var(--primary);
}
.sub-menu {
  position: absolute;
  bottom:inherit;
  top: 120%;
  background-color: #222;
  width: max-content;
}
.sub-menu li {
  padding: 10px 16px;
}
.sub-menu li a {
  font-size: 16px !important;
}
.has-sub {
  position: relative;
}
.desktop-menu-items .sub-menu{
  width: 180px;
  padding: 20px;
}
.has-sub:hover::after{
  border-color: var(--primary);
}
.has-sub::after {
  position: absolute;
  right: -20px;
  content: "";
  bottom: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.home-banner-btns {
  display: flex;
  max-width: 480px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.home-banner-btns .primary-btn {
  margin-right: 10px;
}
.home-banner-btns .primary-btn:last-child {
  margin-right: 0;
}
.about-address {
  margin-top: 20px;
  padding-left: 20px;
  position: relative;
}

.about-address::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100px;
  width: 2px;
  background-color: #814e00;
}

.about-address h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #814e00;
}

.about-address p {
  font-size: 16px;
  color: #814e00;
  line-height: normal;
}

.testi-new-sec {
  padding: 80px 0px;
}
.testi-new-head {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.testi-new-head h4 {
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.testi-new-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 600;
}
.testi-new-swiper {
  padding-bottom: 50px;
}
.testimonial-box {
  padding: 20px;
  border: 1px solid #d7d5d5;
  border-radius: 10px;
}
.testi-new-quote {
  width: 40px;
}
.testi-new-content p {
  margin-top: 20px;
  font-size: 14px;
  color: #7b7d7f;
  line-height: 1.6;
  min-height: 65px;
}
.testi-new-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.testi-new-rating {
  margin: 20px 0px;
  width: 100px;
}
.testimonial-new-author {
  display: flex;
  align-items: center;
}
.testi-new-author-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.testi-new-author-image img {
  border-radius: 50%;
  border: 2px solid var(--primary);
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.testi-new-author-details {
  margin-left: 20px;
}
.testi-new-author-details h3 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testi-new-author-details h5 {
  font-size: 16px;
  text-transform: capitalize;
  text-transform: uppercase;
}
.testi-next:after,
.testi-prev:after {
  color: var(--primary);
}
.testi-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  opacity: 0.3;
}
.page-numbers {
  color: var(--primary);
  padding-bottom: 5px;
}
.page-numbers.current {
  border-bottom: 1px solid var(--primary);
}
.next.page-numbers {
  background-color: var(--primary);
  color: #ffff;
  border-radius: 10px;
  padding: 10px 20px;
}
.prev.page-numbers {
  background-color: var(--primary);
  color: #ffff;
  border-radius: 10px;
  padding: 10px 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
  width: 100%;
  border-top: none !important;
}
.custom-select1 {
  width: 100%;
  float: left;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: all 0.25s ease-out 0s;
  margin: 20px 0px;
  position: relative;
  z-index: 99;
  color: #ffffff;
}
/* .custom-select1:hover {
  background: #4a4d56;
  border-color: #4a4d56;
} */
.custom-select1 select {
  display: none;
}
.custom-select1 .select-hide {
  display: none;
}
.custom-select1 .select-items {
  max-height: 175px;
  overflow-y: scroll;
  background: #ffffff;
  position: absolute;
  top: 102%;
  left: 0;
  right: 0;
  z-index: 9;
  border: 1px solid var(--primary);
}
.custom-select1 .select-items div {
  color: var(--primary);
  transition: all 0.25s ease-out 0s;
  padding: 15px 20px 14px 20px;
}
.custom-select1 .select-items div:hover {
  color: #ffffff;
  background: #d0a747;
}
.custom-select1 .select-selected {
  color: #ffffff;
  transition: all 0.25s ease-out 0s;
  padding: 15px 20px 14px 20px;
  font-weight: 400;
}
.custom-select1:hover .select-selected {
  color: #ffffff;
}
.custom-select1 .select-selected::after {
  position: absolute;
  right: 20px;
  content: "";
  bottom: 25px;
  border-width: 0 2px 2px 0;
  border-style: solid; /* Ensure border is solid */
  border-color: #fff;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
.custom-select1:hover .select-selected:after {
  background: url(../images/down-white-plain-arrow.svg) no-repeat center / 100%
    100%;
}
.custom-select1 .select-items div,
.custom-select1 .select-selected {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: "Cormorant", serif;
}

.banner-wrapp .custom-select1 {
  background: #ffffff;
  border: 1px solid #ffffff;
  margin: 0 0 0;
}
/* .banner-wrapp .custom-select1:hover {
  background: #4a4d56;
  border: 1px solid rgba(74, 77, 86, 0.5);
} */

.conten-wrapp .custom-select1 {
  background: #4a4d56;
}
.conten-wrapp .custom-select1:hover {
  background: #ffffff;
  border-color: #4a4d56;
}
.conten-wrapp .custom-select1 .select-selected {
  color: #ffffff;
}
.conten-wrapp .custom-select1:hover .select-selected {
  color: #4a4d56;
}
.conten-wrapp .custom-select1 .select-selected:after {
  background: url(../images/down-white-plain-arrow.svg) no-repeat center / 100%;
}
.conten-wrapp .custom-select1:hover .select-selected:after {
  background: url(../images/down-grey-plain-arrow.svg) no-repeat center / 100%
    100%;
}

.custom-about {
  width: 245px;
  float: left;
  background: none;
  border: 1px solid rgba(74, 77, 86, 0.5);
  border-radius: 24px;
  transition: all 0.25s ease-out 0s;
  margin: 0 10px 0 0;
  position: relative;
  z-index: 9;
}
.custom-about:hover {
  background: #4a4d56;
  border-color: #4a4d56;
}
.custom-about select {
  display: none;
}
.custom-about .select-hide {
  display: none;
}
.custom-about .select-items {
  max-height: 132px;
  overflow-y: scroll;
  background: #ffffff;
  position: absolute;
  top: 102%;
  left: 0;
  right: 0;
  z-index: 9;
}
.custom-about .select-items div {
  color: #d0a747;
  transition: all 0.25s ease-out 0s;
  padding: 15px 20px 14px 20px;
}
.custom-about .select-items div:hover {
  color: #ffffff;
  background: #d0a747;
}
.custom-about .select-selected {
  color: #4a4d56;
  transition: all 0.25s ease-out 0s;
  padding: 15px 20px 14px 20px;
}
.custom-about:hover .select-selected {
  color: #ffffff;
}
.custom-about .select-selected:after {
  content: "";
  width: 7px;
  height: 4px;
  background: url(../images/down-grey-plain-arrow.svg) no-repeat center / 100%;
  transform: translateY(-50%);
  transition: all 0.25s ease-out 0s;
  margin: 0 0 0;
  position: absolute;
  top: 50%;
  right: 20px;
}
.custom-about:hover .select-selected:after {
  background: url(../images/down-white-plain-arrow.svg) no-repeat center / 100%
    100%;
}
.custom-about .select-items div,
.custom-about .select-selected {
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}

.conten-wrapp .custom-about {
  background: #4a4d56;
}
.conten-wrapp .custom-about:hover {
  background: #ffffff;
  border-color: #4a4d56;
}
.conten-wrapp .custom-about .select-selected {
  color: #ffffff;
}
.conten-wrapp .custom-about:hover .select-selected {
  color: #4a4d56;
}
.conten-wrapp .custom-about .select-selected:after {
  background: url(../images/down-white-plain-arrow.svg) no-repeat center / 100%;
}
.conten-wrapp .custom-about:hover .select-selected:after {
  background: url(../images/down-grey-plain-arrow.svg) no-repeat center / 100%
    100%;
}

.custom-select1.custom-selecting-four .select-items {
  max-height: inherit;
  overflow: visible;
}
.conten-wrapp .custom-col1.custom-selecting-four .select-items {
  max-height: inherit;
  overflow: visible;
}
.sub-menu {
	bottom:inherit;
  top: 120%;
}
.home-banner-btns .primary-btn {
	margin-right: 10px !important;
}
.copy-right a:hover{
  color: #fff;
}

@media (max-width: 1440px) {
  .banner-content h1 {
    font-size: 60px;
  }
  .latest-prop-card {
    flex-wrap: wrap;
  }
}

@media (max-width: 1200px) {
  .banner-content {
    max-width: 800px;
    width: 100%;
  }
  .banner-content h1 {
    font-size: 50px;
  }
  .property-card {
    width: 48%;
  }
  .header-right {
    width: 75%;
  }
  .place-card {
    width: 48%;
  }
  .contact-head h2 {
    font-size: 35px;
  }
  .contact-form-head h2 {
    font-size: 35px;
  }
  .property-banner .banner-img img {
    height: 350px;
  }
  .banner-img {
    margin-top: 0;
  }
  .property-detail-review-left {
    width: 66%;
  }
  .property-detail-review-right {
    width: 32%;
  }
  .contact-person-deatil a {
    font-size: 18px;
  }
  .latest-pro-card-content h4 {
    font-size: 18px;
  }
  .latest-properties {
    padding: 20px;
  }
  .catagoery-sec {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  #menu-header-menu-mobile {
    display: none;
  }
  .custom-col1 {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-right ul {
    display: none;
  }
  .logo img {
    width: 140px;
  }
  .banner-content p {
    margin-top: 20px;
  }
  .about-content {
    flex-wrap: wrap;
  }
  .about-left {
    width: 100%;
  }
  .about-left-img::after {
    display: none;
  }
  .about-left-img {
    text-align: center;
  }
  .about-left-img img {
    width: 300px;
  }
  .about-right {
    width: 100%;
    text-align: center;
    margin-top: 50px;
  }
  .about-sec-content h2 {
    font-size: 35px;
  }
  .testi-head h2 {
    font-size: 35px;
  }
  .property-head h2 {
    font-size: 35px;
  }
  .places-head h2 {
    font-size: 35px;
  }
  .place-card-right {
    margin-left: 10px;
  }
  .place-card-right {
    width: 60%;
  }
  .place-card-left {
    width: 40%;
  }
  .place-card-right h3 {
    font-size: 22px;
  }
  .place-card-right h5 {
    font-size: 16px;
  }
  .video-sec {
    margin-top: 0;
  }
  .testi-slider-content {
    padding: 0px 50px;
  }
  .about-sec-content p {
    font-size: 16px;
  }
  .property-card-content p {
    font-size: 16px;
  }
  .contact-content {
    flex-wrap: wrap;
  }
  .contact-left {
    width: 100%;
  }
  .contact-right {
    width: 100%;
  }
  .contact-form-wrap {
    padding: 40px 0px;
    padding-top: 0px;
  }
  .footer-sec {
    padding: 50px 0px;
  }
  .footer-logo {
    width: 150px;
  }
  .copy-right p {
    line-height: 1.6;
  }
  .contact-right {
    margin-top: 40px;
  }
  .property-banner .banner-img img {
    height: 300px;
  }
  .property-banner .banner-content {
    top: 40%;
    transform: translate(-50%, -40%);
  }
  .property-inner-head-left h2 {
    font-size: 30px;
  }
  .property-inner-head-left p {
    font-size: 18px;
  }
  .property-deatil-review-content {
    flex-wrap: wrap;
  }
  .property-detail-review-left {
    width: 100%;
  }
  .property-detail-review-right {
    width: 100%;
  }
  .property-conatct-head h3 br {
    display: none;
  }
  .property-detail-review-right {
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .blog-sec-wrap {
    flex-wrap: wrap;
  }
  .blog-card {
    width: 100%;
  }
  .blog-page-left {
    width: 52%;
  }
  .blog-page-right {
    width: 45%;
  }
  .page-link {
    width: 35px;
    height: 35px;
    margin: 0 15px;
    font-size: 14px;
  }
  .property-pagination {
    margin-top: 30px;
  }
  .catagoery-sec {
    margin-bottom: 30px;
  }
  .blog-banner .banner-img img {
    height: 300px;
  }
  .blog-page-left {
    width: 100%;
  }
  .blog-page-right {
    width: 100%;
    margin-top: 40px;
  }
  .property-pagination {
    margin-top: 0px;
  }
  .latest-prop-card {
    justify-content: unset;
  }
  .latest-pro-card-content {
    margin-left: 50px;
  }
  .blog-sec {
    margin: 50px 0px;
  }
  .blog-detail-head h2 {
    font-size: 35px;
  }
  .catagoery-sec {
    display: none;
  }
  .toggle-menu {
    top: 30px;
  }
  .header-sec {
    padding: 20px 0px;
  }
  .overlay-btn {
    width: 30px;
    height: 30px;
    position: fixed;
    right: 5%;
    top: 25px;
    padding: 0;
    z-index: 10000;
    display: block;
  }
  .overlay-btn .line {
    width: 100%;
    display: inline-block;
    height: 3px;
    background-color: #fff;
    transition: all 0.25s ease-in-out;
    position: relative;
  }
  .overlay-btn .line:before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #fff;
    top: -10px;
    left: 0;
    height: 3px;
    transition: all 0.25s ease-in-out;
  }
  .overlay-btn .line:after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #fff;
    top: 10px;
    left: 0;
    height: 3px;
    transition: all 0.25s ease-in-out;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    padding: 60px 10px 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
    display: block;
  }
  .overlay .overlay-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .overlay .overlay-menu ul {
    display: block;
  }
  .overlay .overlay-menu ul li {
    display: block;
    position: relative;
  }
  .overlay .overlay-menu ul li a {
    display: block;
    color: #fff;
    padding: 15px 10px;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    border-radius: 0;
    font-size: 16px;
  }
  .overlay .overlay-menu ul li a:hover {
    color: var(--primary) !important;
  }
  .overlay.show {
    left: 0;
    opacity: 1;
    z-index: 100000;
  }
  .overlay-btn .active .line {
    background: transparent;
  }
  .overlay-btn .active .line:before {
    transform: rotate(-45deg);
    top: 0;
  }
  .overlay-btn .active .line:after {
    transform: rotate(45deg);
    top: 0;
  }
  .mobile-menu-items .sub-menu{
    position: relative;
    width: 100%;
    background-color: #000;
  }
  .overlay .overlay-menu ul li.has-sub::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    bottom: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .overlay .overlay-menu ul li.has-sub ul li {
    padding: 0;
    padding-left: 20px;
  }
  .overlay .overlay-menu ul li.has-sub ul li a {
    font-size: 14px !important;
  }
  .about-address::before {
    content: none;
  }
}

@media (min-width: 600px) {
  .property-image-mobile-slider {
    display: none;
  }
}

@media (max-width: 600px) {
  .container{
    width: 95%;
  }
  .banner-content.home-banner {
    position: relative;
    top: 120px;
  }
  .blog-banner {
    margin-top: 80px;
  }
  .banner-content.home-banner h1 {
    font-size: 33px;
    color: #000;
  }
  .header-sec {
    padding: 15px 0px;
  }
  .banner-sec {
    margin-top: 80px;
  }
  .banner-content p {
    font-size: 14px;
  }
  .primary-btn a {
    font-size: 13px;
  }
  .about-sec-content h4 {
    font-size: 17px;
  }
  .about-sec-content h2 {
    font-size: 25px;
  }
  .about-sec-content p {
    font-size: 14px;
  }
  .about-sec {
    padding: 50px 0px;
    margin-top: 40px;
  }
  .property-sec {
    padding: 50px 0px;
  }
  .property-head h4 {
    font-size: 17px;
  }
  .property-head h2 {
    font-size: 25px;
  }
  .property-card {
    width: 100%;
  }
  .property-card-content h3 {
    font-size: 16px;
  }
  .property-card-content h2 {
    font-size: 25px;
  }
  .property-card-content p {
    font-size: 14px;
    line-height: 1.8;
  }
  .property-card-content {
    margin-top: 10px;
  }
  .property-sec .primary-btn {
    margin-top: 20px;
  }
  .testimonial-sec {
    padding: 50px 0px;
  }
  .testi-head h4,
  .places-head h4 {
    font-size: 17px;
  }
  .testi-head h2,
  .places-head h2,
  .contact-form-head h2 {
    font-size: 25px;
  }
  .testi-content p {
    line-height: 1.8;
    font-size: 14px;
  }
  .testi-swiper {
    padding-top: 20px;
  }
  .testi-slider-content {
    padding: 0;
  }
  .testi-next:after,
  .testi-prev:after {
    display: none;
  }
  .testi-content h3 {
    font-size: 22px;
  }
  .testi-content h5 {
    font-size: 16px;
  }
  .places-sec {
    padding: 50px 0px;
  }
  .place-card {
    width: 100%;
  }
  .places-row {
    margin: 0;
  }
  .contact-sec {
    padding: 50px 0px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 14px !important;
  }
  .contact-form .secondry-btn a {
    padding: 12px 20px !important;
  }
  .contact-head h4 {
    font-size: 17px;
  }
  .contact-head h2 {
    font-size: 25px;
  }
  .add-content h3 {
    font-size: 20px;
  }
  .add-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .add-icon {
    width: 50px;
    height: 50px;
  }
  .footer-menu-list {
    margin: 50px 0px;
  }
  .footer-menu-list ul {
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-menu-list ul li {
    width: 50%;
    margin-bottom: 20px;
  }
  .contact-img {
    margin: 20px 0px;
  }
  .copy-right p {
    font-size: 14px;
  }
  .video-sec::after {
    content: none;
  }
  .home-page-banner-content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 30px 0px;
  }
  .home-page-banner-content h1 {
    color: #000;
  }
  .page-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin: 0 20px;
  }
  .property-inner-head-left h2 {
    font-size: 20px;
  }
  .property-inner-head-left p{
    font-size: 15px;
  }
  .property-inner-head-right h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--primary);
  }
  .property-inner-detail-images {
    margin: 0;
  }
  .property-detail-review-sec {
    padding: 50px 0px;
  }
  .property-inner-specs ul {
    flex-wrap: wrap;
  }
  .property-inner-specs ul li {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .property-inner-specs {
    margin-bottom: 20px;
  }
  .property-overview p {
    font-size: 16px;
  }
  .property-img-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .property-img-grid > div {
    width: 100%;
  }
  .property-conatct-head h3 {
    font-size: 21px;
  }
  .property-image-slider img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    border-radius: 5px;
  }
  .property-image-mobile-slider {
    margin-top: 30px;
  }
  .property-inner-detail-images {
    display: none;
  }
  .property-inner-pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .property-image-mobile-slider {
    position: relative;
  }
  .property-inner-pagination {
    bottom: -30px !important;
  }
  .property-inner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .property-detail-review-right {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .content-wrap h3,
  .content-wrap h4 {
    font-size: 24px;
  }
  .blog-detail-head h2 {
    font-size: 28px;
  }
  .blog-banner .banner-content p {
    max-width: 300px;
    margin: 10px auto;
  }
  .everest-forms-submit-button {
    padding: 12px 20px !important;
  }
  .property-banner {
    margin-top: 80px;
  }
  .testi-new-head h2{
    font-size: 25px;
  }
  .testi-new-head h4{
    font-size: 17px;
  }
  .testi-new-sec{
    padding: 50px 0px;
  }
  .address-list{
    margin-right: 0;
  }
  .add-content{
    max-width: 200px;
  }
  .add-content a{
    font-size: 14px;
  }
  .testi-pagination{
    display: none;
  }
  .latest-pro-card-content{
    margin-left: 12px;
  }
  .latest-prop-card-img img{
    width: 60px;
    height: 60px;
  }
  .latest-properties h3{
    margin-bottom: 20px;
  }
  .admin-image img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .blog-inner-admin p{
    font-size: 14px;
  }
  .blog-inner-admin .admin-date{
    margin-left: 20px;
  }
  .blog-inner-admin .admin-date h4{
    font-size: 14px;
  }
  .blog-inner-admin .admin-date span img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .content-wrap p{
    font-size: 14px;
  }
  .blog-para p{
    font-size: 14px;
  }
  .prop-sp img{
    width: 15px;
  }
  .prop-sp p{
    margin-bottom: 0;
    margin-left: 5px;
  }
  .contact-form-head h2{
    margin-bottom: 0;
  }
  .everest-forms .evf-field-container .evf-frontend-row textarea{
    height: 80px;
  }
  .place-card-right h3{
    font-size: 20px;
  }
  .contact-form-wrap{
    padding-bottom: 0;
  }
  .blog-sec{
    margin: 30px 0px;
  }
  .blog-card-content{
    margin: 20px 0px;
  }
  .latest-pro-card-content h4{
    margin-bottom: 0;
  }
  .content-wrap h2{
    font-size: 25px;
  }
}
