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

:root {
    --font-primary: "Montserrat", sans-serif;
    --font-secondery: "Cormorant Garamond", serif;
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --blackColor: #000;
    --text-primary: #4A5565;
    --text-dark: #101828;
    --gradian-1: linear-gradient(180deg, #AC995E 0%, #8B7B4E 100%);
    --gradian-2: radial-gradient(72.07% 210.23% at 30% 50%, rgba(172, 153, 94, 0.05) 0%, rgba(0, 0, 0, 0.00) 50%);
    --color-1: #AC995E;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: var(--text-primary);	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

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

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}



.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--gradian-1); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 30;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--gradian-1); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

.header-area {
    padding-block: 8px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    z-index: 100;
}
.header-nav {
    width: 100%;
    max-width: 1216px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    max-width: 92px;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-list a {
    color: #364153;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.35px;
    text-transform: uppercase;
}
.nav-list a:hover {
    color: var(--color-1);
}
.action-btn {
    display: flex;
    padding: 11px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%; 
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.action-btn::before {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: -1;
    background: var(--blackColor);
    display: none;
}
.action-btn:hover::before {
    width: 100%;
}
.btn-primary {
    background: var(--gradian-1);
    color: var(--whiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}
.btn-primary::before {
    background: var(--blackColor);
}
.btn-primary:hover {
    color: var(--whiteColor);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, oklab(0.686185 -0.00310659 0.0812316 / 0.5) 0px 25px 50px -12px;
    background: linear-gradient(to right in oklab, rgb(139, 123, 78) 0%, rgb(172, 153, 94) 100%);
}

.contact-btn.action-btn {
    padding: 12.6px 24.225px 11.4px 24px;
    line-height: 142.857%;
}

.navbar-toggler {
	font-size: 25px;
	color: var(--text-dark);
}

.offcanvas-title img {
	max-width: 70px;
}

/*============ header area end hare ========== */

.hero-area {
    background: url(images/hero-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-wrapper {
    padding-block: 128px;
    display: flex;
    flex-direction: column;
    gap: 96px;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
}
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
}

.hero-content-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
}
.hero-content-top p {
    color: var(--color-1);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 4.2px;
    text-transform: uppercase;
}
.hero-content-top span {
    display: block;
    width: 96px;
    height: 1px;
    background: linear-gradient(to right in oklab, rgba(0, 0, 0, 0) 0%, rgb(172, 153, 94) 50%, rgba(0, 0, 0, 0) 100%);
}
.hero-title h2 {
    color: var(--whiteColor);
    text-align: center;
    font-family: var(--font-secondery);
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -1.44px;
}

.hero-middle {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 761px;
    text-align: center;
}
.hero-middle h6 {
    color: #D1D5DC;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.24px;
}
.hero-middle p {
    color: #99A1AF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.18px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    padding-top: 17px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-actions .action-btn {
    padding: 17.4px 41.237px 16.2px 40.8px;
    line-height: 142.857%;
    letter-spacing: 0.7px;
    font-size: 14px;
}
.btn-transparency:hover {
    background: rgba(255, 255, 255, 0.20);
}

.btn-transparency {
    border: 0.8px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    color: var(--whiteColor);
    backdrop-filter: blur(8px);
}

.hero-bottom {
    display: grid;
    width: 100%;
    max-width: 896px;
    padding-top: 64.8px;
    row-gap: 32px;
    column-gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 0.8px solid rgba(255, 255, 255, 0.10);
}

.single-hero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.single-hero-item h4 {
    color: var(--color-1);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}
.single-hero-item p {
    color: #99A1AF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/*=========== hero area end hare ====== */
/*======== feature area style start hare ===== */

.features-area {
    padding-block: 128px;
    background: radial-gradient(72.07% 209.92% at 30% 50%, rgba(172, 153, 94, 0.03) 0%, rgba(0, 0, 0, 0.00) 50%);
}

.features-wrapper {
    width: 100%;
    max-width: 1216px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
}
.feature-item:hover .icon {
    transform: scale(1.1);
}

.feature-item .icon {
    display: flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--gradian-1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    transition: 0.3s;
}
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.feature-content h4 {
    color: var(--text-dark);
    text-align: center;
    font-family: var(--font-secondery);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; 
    letter-spacing: 0.6px;
}
.feature-content p {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.16px;
    max-width: 253px;
}

/*========= features area style end hare ======= */
/*========== about area styel start hare ======= */

.about-area {
    padding-block: 128px;
}

.about-wrapper {
    width: 100%;
    max-width: 1216px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-left {
    flex: 1;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-left-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-content-top {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.section-top-title {
    color: var(--color-1);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.section-top-line {
    display: block;
    width: 64px;
    height: 1px;
    background: var(--gradian-1);
}

.section-title h2 {
    color: #101828;
    font-family: var(--font-secondery);
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    letter-spacing: -0.84px;
}

.about-left p {
    line-height: 170%; 
    letter-spacing: 0.16px;
}

.about-left-bottom {
    padding-top: 49px;
    border-top: 0.8px solid #E5E7EB;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.single-about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.single-about-item h4 {
    color: var(--color-1);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}
.single-about-item p {
    color: #6A7282;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.about-right {
    flex: 1;
    max-width: 576px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.about-image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.40) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

/*============ about area style end hare ========= */
/*========== team area styel start hare ========= */

.team-area {
    padding-block: 128px;
    background: #F9FAFB;
}

.team-wrapper {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    gap: 80px;
    background: #F9FAFB;
}

.team-area-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section-toper {
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: center;
    padding-top: 4px;
}

.team-area-top p {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.2px;
    max-width: 721px;
}

.team-member-list {
    display: grid;grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.single-team-member {
    border-radius: 10px;
    background: var(--whiteColor);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.member-image {
    overflow: hidden;
}
.member-image img {
    width: 100%;
    aspect-ratio: 3/4;
    transition: 0.3s;
}
.single-team-member:hover .member-image img {
	transform: scale(1.15);
}
.member-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.member-info h4 {
    color: #2D3748;
    font-family: var(--font-secondery);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.16px;
}
.member-info p {
    color: var(--color-1);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 133.333%; 
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/*=========== team area styel end hare ======= */

/*===== premium protfolio area style start hare ===== */

.premium-protfolio-area {
    padding-block: 128px;
}

.premium-protfoli-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 1216px;
}

.pr-protfolio-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}
.pr-protfolio-top p {
    color: #4A5565;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.2px;
    max-width: 660px;
    padding-top: 10px;
}

.pr-protfolio-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.single-pr-protfolio {
    border-radius: 4px;
    background: var(--whiteColor);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.pr-protfolio-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.protfolio-top {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.protfolio-top img {
    width: 100%;
    aspect-ratio: 1.35/1;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}
.single-pr-protfolio:hover .protfolio-top img {
	transform: scale(1.1);
}

.pr-category-wp {
    position: absolute;
    left: 0;
    top: 24px;
    width: 100%;
    padding-inline: 24px;
    display: flex;
    justify-content: space-between;
}

.left-category {
    display: flex;
    height: 40px;
    padding: 0px 16px 0 16px;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    background: rgba(172, 153, 94, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: var(--whiteColor);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%; 
    letter-spacing: 0.6px;
    text-transform: uppercase;
    justify-content: center;
}
.right-category {
    display: flex;
    height: 40px;
    padding: 0px 16px 0 16px;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: var(--text-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%; 
    letter-spacing: 0.6px;
    text-transform: uppercase;
    justify-content: center;
}

.pr-name-location {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pr-name-location h4 {
    color: #101828;
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.5px;
}
.pr-name-location h4:hover {
    color: var(--color-1);
}

.pr-location {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pr-location span {
    color: #6A7282;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
}
.protfolio-desc p {
    color: #4A5565;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; 
    letter-spacing: 0.14px;
    max-width: 492px;
	min-height:50px;
}

.apperment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.apmt-info {
    display: flex;
    align-items: center;
    gap: 8px;
}


#properties .apmt-info:nth-child(2) {
    display: none;
}

#properties .apperment-info {
	border-bottom:1px solid #E5E7EB;
	padding-bottom:15px;
	margin-top: auto;
}
.protfolio-area .protfolio-desc {
}
.protfolio-area .apperment-info {
	margin-top:auto;
	padding-top: 15px;
	border-top: 1px solid #E5E7EB;
}


.apmt-info span {
    color: #4A5565;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
}
.view-actions a {
    color: var(--text-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.view-actions a:hover {
    color: var(--color-1);
}

.view-all-protfolio .action-btn {
    padding: 16.6px 48.013px 15.4px 48px;
}

.pr-protfolio-btm {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

/*=========== premium product area style end hare ========= */
/*========== sucess story area style start hare ========= */

.success-story-area {
    background: linear-gradient(180deg, #FFF 0%, #F9FAFB 100%);
    padding-block: 96px;
}

.success-story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
    max-width: 1232px;
    margin-inline: auto;
}

.success-area-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.success-toper {
    display: flex;
    height: 36px;
    padding: 8px 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-radius: 26843500px;
    background: rgba(172, 153, 94, 0.10);
    color: #8B7B4E;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.success-area-top p {
    color: #4A5565;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.2px;
    max-width: 697px;
}

.stories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.single-storie-card {
    min-height: 288px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.single-storie-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.90) 0%, rgba(16, 24, 40, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.explora-business {
    background-image: url(images/successfully/ExploraBusiness.png);
}
.stories-top {
	padding: 16px;
	display: flex;
	justify-content: end;
}

.status-paid {
    display: flex;
    width: 91.638px;
    padding: 8px 16px 8px 16px;
    align-items: center;
    border-radius: 26843500px;
    background: var(--color-1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    gap: 4px;
}
.status-paid img {
    width: 16px;
}
.status-paid span {
    color: var(--whiteColor);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%; 
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.stories-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
}
.stories-content h2 {
    color: var(--whiteColor);
    font-family: var(--font-secondery);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%; 
    letter-spacing: -0.24px;
}
.stories-content .pr-location {
    color: var(--whiteColor);
}
.stories-content .pr-location span {
    color: #E5E7EB;
}
.stories-content p {
    color: #D1D5DC;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.14px;
}
.riverside-house {
    background-image: url(images/successfully/RiversideHouse.png);
}
.centurion-card {
    background-image: url(images/successfully/Centurion.png);
}
.success-storie-bottom {
    display: flex;
    gap: 12px;
    justify-content: center;
    height: 142px;
    padding: 32px 168px 0 168px;
    align-items: flex-start;
    border-radius: 16.4px;
    background: var(--text-dark);
}
.success-storie-bottom p {
    color: #D1D5DC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.16px;
}

/*========= success storie area styel end hare ======== */
/*======== contact us area styel start hare ========== */

.contact-us-area {
    padding-block: 128px;
}

.contact-us-wrapper {
    width: 100%;
    max-width: 896px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.contact-area-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}
.contact-area-top p {
    color: #4A5565;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.18px;
    max-width: 853px;
}
.contact-bottom-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.single-contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.single-contact-block .icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(172, 153, 94, 0.10);
    font-size: 24px;
    color: var(--color-1);
}
.single-contact-block h4 {
    color: var(--text-dark);
    text-align: center;
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.32px;
}
.single-contact-block p {
    line-height: 162.5%;
    letter-spacing: 0.16px;
}
.single-contact-block a {
    display: block;
    line-height: 162.5%;
    letter-spacing: 0.16px;
}
.single-contact-block a:hover {
    color: var(--color-1);
}

/*============= contact us area styel end hare ========== */
/*=========== footer style start hare ================ */

.footer-area {
    padding-block: 80px;
    background: var(--text-dark);
    position: relative;
    z-index: 2;
}
.footer-area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradian-2);
    z-index: -1;
}

.footer-wrapper {
    width: 100%;
    max-width: 1216px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.footer-left {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-logo img {
    max-width: 74px;
}
.footer-left p {
    color: #99A1AF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
    letter-spacing: 0.16px;
    max-width: 444px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social li a {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #1E2939;
}
.footer-social li a:hover {
    background: var(--color-1);
    transform: scale(1.1);
}
.footer-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-block h4 {
    color: var(--whiteColor);
    font-family: var(--font-secondery);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 142.857%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.footer-block ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-block ul li {
    color: #99A1AF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-block ul a:hover {
    color: var(--color-1);
}
.footer-block a[href^="mailto:"] {
font-size:13px;	
}


.footer-bottom {
    padding-top: 33px;
    border-top: 0.8px solid #1E2939;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.copyright-text {
    color: #99A1AF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.14px;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-bottom ul a {
    color: #99A1AF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
}
.footer-bottom ul a:hover {
    color: var(--color-1);
}

/*============= Footer style End hare ============= */

/*======================
 Protfolio Page Style 
========================= */

.protfolio-hero {
    background: url(images/protfolio-hero.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.protfolio-hero .hero-wrapper {
    min-height: fit-content;
    gap: 64px;
}

.protfolio-hero .hero-bottom {
	padding-top: 0;
	grid-template-columns: repeat(3, 1fr);
	border-top: none;
}

.hero-bottom-space {
    border-bottom: 0.8px solid #E5E7EB;
    background: #F9FAFB;
    height: 142px;
}


/* Protfolio area  */

.protfolio-area {
    padding-block: 80px;
}

.protfolio-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1232px;
    margin-inline: auto;
}

.protfolio-area .right-category {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}
.protfolio-area .right-category img {
    max-width: 20px;
    height: 18px;
}

.view-details a {
    padding: 12.6px 15px 11.4px 15px;
    border-radius: 4px;
    background: #101828;
    width: 100%;
    text-align: center;
    color: var(--whiteColor);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.view-details a:hover {
    background: var(--color-1);
}

.apmt-info-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.apmt-info-content span {
    color: #6A7282;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.apmt-info-content p {
    color: #101828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
}

.protfolio-area .protfolio-top::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.80) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.view-details {
}


/*===========================
 Protfolio Page Style End hare 
============================ */

.view-details-header {
    position: sticky;
    top: 0;
}


/* view details hero area  */

.view-details-hero {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}
.view-details-hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.90) 0%, rgba(16, 24, 40, 0.40) 50%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.dot-info-hero {
    background-image: url(images/hero/dot-office-img.jpg);
}
.view-details-wrapper {
    padding-top: 50px;
    padding-bottom: 64px;
    min-height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 16px;
    align-items: start;
}

.beck-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.35px;
    text-transform: uppercase;
}
.beck-btn:hover {
    color: var(--color-1);
}

.view-details-wrapper .category {
    display: inline-flex;
    padding: 6.6px 15.75px 5.4px 16px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    color: #1E2939;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}
.view-details-wrapper h2 {
    color: #FFF;
    font-family: var(--font-secondery);
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -1.44px;
}
.view-details-wrapper .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}

/*========== property details area style start hare ======= */

.property-details-area {
    padding-block: 64px;
}

.property-details-wrapper {
    width: 100%;
    max-width: 1216px;
    display: flex;
    gap: 48px;
}

.details-left {
    flex: 1;
    max-width: 794px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.overview-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.key-features-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.key-features-card  h4 {
    color: var(--text-dark);
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.32px;
}

.key-feautures-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.key-feautures-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #364153;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
.key-feautures-list li span {
    flex: 1;
}

.technical-specification {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.technical-specification h4 {
    color: var(--text-dark);
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.32px;
}

.technical-specifi-list {
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border-radius: 10px;
    background: #F9FAFB;
}
.single-specification {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 68px;
    border-bottom: 0.8px solid #E5E7EB;
}
.single-specification span {
    color: #6A7282;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.single-specification p {
    color: var(--text-dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}

.tetants-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tetants-card h4 {
    color: var(--text-dark);
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.32px;
}
.tetants-card ul {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.tetants-card ul li {
    border-radius: 10px;
    border: 0.8px solid #E5E7EB;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 12px 20px;
    color: var(--text-dark);
	font-size:14px;
}

.property-gallery {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.property-gallery h4 {
    color: #101828;
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.32px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-images img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.details-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    max-width: 373px;
}

.asset-overview {
    padding: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #101828 0%, #1E2939 100%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.asset-overview h4 {
    color: #FFF;
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    letter-spacing: -0.32px;
}
.single-asset-item {
    display: flex;
    gap: 16px;
}
.single-asset-item .icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(172, 153, 94, 0.20);
}
.single-asset-item .asset-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.asset-info span {
    color: #99A1AF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.asset-info p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}

.location-info-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 10px;
    background: #F9FAFB;
}
.location-info-card h4 {
    color: var(--text-dark);
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.32px;
}
.full-location {
    display: flex;
    align-items: first baseline;
    gap: 12px;
}
.full-location p {
    color: #364153;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.full-location span {
    color: #6A7282;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
}
.full-location i{
    font-size: 20px;
    color: var(--color-1);
}

.location-map iframe {
    aspect-ratio: 1.609 / 1;
	border-radius:20px;
}

.asset-interested-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: linear-gradient(180deg, #AC995E 0%, #8B7B4E 100%);
    gap: 16px;
    padding: 32px;
}
.asset-interested-card h4 {
    color: #FFF;
    font-family: var(--font-secondery);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.32px;
}
.asset-interested-card > p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%px;
    letter-spacing: 0.14px;
}

.single-contact-team {
    border-radius: 10px;
    border: 0.8px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.single-contact-team .member-name {
    color: var(--whiteColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.single-contact-team .member-title {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
}
.single-contact-team a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%; 
}
.single-contact-team a[href^="mailto:"] span {
font-size:10px;	
}

.single-contact-team a span {
    flex: 1;
}


.detials-content-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.detials-content-card h4 {
	color: var(--text-dark);
	font-family: var(--font-secondery);
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -0.32px;
}
.detials-content-card p, .overview-card p {
font-size: 18px;
line-height: 30px;
}

.lim-centre-hero {
    background-image: url(images/hero/lim-centre.jpg);
}
.lilimu-tower-hero {
    background-image: url(images/hero/lilium-tower.png);
}

.oxygen-info-hero {
    background-image: url(images/hero/oxygen-park.jpg);
}
.jk-info-hero {
    background-image: url(images/hero/jana-kazimierza-img.jpg);
}



.northwing-info-hero {
    background-image: url(images/hero/northwing-bmw.png);
}
.kbc-info-hero {
    background-image: url(images/hero/konstruktorska-img.png);
}

.podium-info-hero {
    background-image: url(images/hero/podium-hero.jpg);
}
.worrstadt-info-hero {
    background-image: url(images/hero/worrstadt-hero.png);
}
.zeeman-info-hero {
    background-image: url(images/hero/zeeman-info-hero.jpg);
}

.stories-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.stories-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.single-storie-card:hover .stories-bg img {
    transform: scale(1.2);
}


/* SOCIAL hide */

.footer-social  li:nth-child(n+2):nth-child(-n+4)  { display:none }

.footer-bottom ul { display:none }