@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;
}

/* 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;
}
.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: 50%;
  content: "";
  bottom: -15px;
  border: solid #ffffff;
  border-width: 0 2px 2px 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.8;
  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;
}

/* 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;
  max-width: 350px;
  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;
  margin-bottom: 20px;
  background-color: transparent;
}
.contact-form input,
.contact-form textarea {
  border-bottom: 1px solid var(--primary);
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--primary);
  font-size: 20px;
  border-radius: 0;
}
.contact-form input:focus {
  box-shadow: none;
  border-color: var(--primary);
  background-color: transparent;
}
.contact-form input::placeholder {
  color: var(--primary);
  opacity: 1;
}
.contact-form input::-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}
.contact-form textarea:focus {
  box-shadow: none;
  border-color: var(--primary);
  background-color: transparent;
}
.contact-form textarea::placeholder {
  color: var(--primary);
  opacity: 1;
}

.contact-form textarea::-ms-input-placeholder {
  color: var(--primary);
  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);
}
/* 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;
  margin-top: 30px;
}
.copy-right a {
  color: var(--primary);
}
.footer-social-media-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 260px;
  margin: 20px 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: 30%;
  transform: translate(-50%, -30%);
}
.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 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 {
  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;
}
.blog-share-option p {
  margin-bottom: 0;
}

@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: 900px) {
  
}

@media (max-width: 900px) {
  .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;
  }
}

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



@media (max-width: 600px) {
  .banner-content {
    max-width: 400px;
  }
  .banner-content h1 {
    font-size: 33px;
  }
  .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;
  }
  .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: 16px;
  }
  .contact-form .secondry-btn a {
    padding: 12px 20px;
  }
  .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: 22px;
  }
  .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;
  }
}
