@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&amp;display=swap');

@font-face {
    font-family: 'Casper Bold';
    src: url(../fonts/Casper-Bold.woff);
}

@font-face {
    font-family: 'Casper Regular';
    src: url(../fonts/Casper-Regular.woff);
}



/******************************* 
            Global
*******************************/

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Source Sans Pro', sans-serif;
}

*,*::before,*::after{
    box-sizing:border-box;
}
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td,
header,footer,aside,nav,article,figure,figcaption{
    margin:0;
    padding:0;
}
fieldset,img{
    border:0;
    max-width: 100%;
}
address,caption,cite,code,dfn,em,strong,th,var{
    font-style:normal;
    font-weight:400;
}
ol,ul{
    list-style:none;
}
caption,th{
    text-align:left;
}
h1,h2,h3,h4,h5,h6{
    font-size:100%;
    text-transform: capitalize;
}
h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter{
    text-transform: uppercase;
}
q:before,q:after{
    content:'';
}
abbr,acronym{
    border:0;
}
a{
    text-decoration:none;
    transition: 0.3s linear;
    line-height: 15px;
}
a:active,a:focus,input:focus,textarea:hover,textarea:focus{
    outline:none;
} 

img {
    width: 100%;
    max-width: 100%;
    display: block;
}

/******************************* 
            Global
*******************************/

/*********************************
            Variables
*********************************/

    /***Color Variables***/
:root {
    --white: #fff;
    --black: #000;
    --gray: #333333;
    --mine-shaft: #3C3C3C;
    --deep-fir: #023202;
    --limeade: #578A01;
    --alabaster: #F9F9F9;
    --everglade: #205020;
}


/*********************************
            Variables
*********************************/


/*********************************
            Fonts
*********************************/

h1 {
    font-size: 50px;
}

h2 {
    font-size: 42px;          
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 12px;
}

p {
    font-size: 16px;
}

a {
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Casper Bold';
    font-weight: 800;
}

p, label, span {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span {
    font-weight: 800;
}

a {
    font-family: 'Casper Regular';
}

/*********************************
            Classes
*********************************/

.text-capitalize {
    text-transform: capitalize;
}

.text-lower {
    text-transform: lowercase;
}

.text-upper {
    text-transform: uppercase;
}

.black {
    color: var(--black);
}

.white {
    color: var(--white); 
}

.mine-shaft {
    color: var(--mine-shaft);
}

.deep-fir {
    color: var(--deep-fir);
}

.limeade {
    color: var(--limeade);
}

.alabaster {
    color: var(--alabaster)
}

.everglade {
    color: var(--everglade);
}

.alabaster-bg {
    background-color: var(--alabaster);
}

.deep-fir-bg {
    background-color: var(--deep-fir);
}

.everglade-bg {
    background-color: var(--everglade);
}

.positionRelative {
    position: relative;
}

.flexClass {
    display: flex;
    flex-wrap: wrap;
	align-items: stretch;
    height: 100%;
}

.alignCenter {
    align-items: center;
}

.jusBetween {
    justify-content: space-between;
}

.flexReverse {
    flex-direction: row-reverse;
}
/*********************************
            Classes
*********************************/


.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    height: 100%;
/*     position: relative; */
}

/*********************************
            Buttons Css
*********************************/


.whiteBtn {
    padding: 21px 50px;
    background: var(--white);
    color: var(--mine-shaft);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid #fff;
        display: inline-flex;
    align-items: center;
    justify-content: center;

}

.whiteBtn::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    -webkit-transform: scale3d(0.8, 0.5, 1);
    transform: scale3d(0.8, 0.5, 1);
}


.whiteBtn:hover {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
}


.greenBtn {
    padding: 11.5px 25px 9.5px;
    background: var(--deep-fir);
    color: var(--white);
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--deep-fir);
}

.greenBtn::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    -webkit-transform: scale3d(0.8, 0.5, 1);
    transform: scale3d(0.8, 0.5, 1);
}


.greenBtn:hover {
    color: var(--deep-fir);
    background-color: var(--white);
    border-color: var(--deep-fir);
}



/*********************************
            Buttons Css
*********************************/

/*********************************
          Keyframes
**********************************/

/* @-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
} */

/*********************************
          Keyframes
**********************************/


/*********************************
            Header Css
*********************************/

.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0px;
    border-bottom: 1px solid #fff;
    transition: .4s ease-in-out;
}
a.whiteBtn span img {
    width: 36px;
    height: 27px;
}
a.greenBtn span img {
    width: 36px;
    height: 27px;
}
a.text-upper span img {
    width: 36px;
    height: 27px;
}
a.white.text-upper span img {
    width: 36px;
    height: 27px;
	filter: invert(1);
}
.newsUpdatesContentinner a span img {
	filter: invert(1);
}
.homeNewsSlider .owl-nav .owl-next {
    width: 36px;
    height: 27px;
}
.homeNewsSlider .owl-nav .owl-prev {
    width: 36px;
    height: 27px;
}
.whiteBtn:hover span img {
    filter: invert(1);
}
.greenBtn span img {
	filter: invert(1);
}
.greenBtn:hover span img {
	filter: invert(0);
}
.home-banner-slider::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #023202;
    content: "";
    opacity: 0.7;
}
.home-banner-slider {
    position: relative;
    width: 100%;
	    top: 0;
}
.heroBannerSection {
    position: relative;
/*     height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heroBannerMain {
    position: absolute;
    height: 100%;
	    width: 100%;
    z-index: 1;
	top: 0;
}
.home-banner-item img,
.home-banner-item {
    width: 100%;
    height: 100vh;
    display: block;
}
.heroBannerInnner {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
}

.heroBannerContent {
    max-width: 880px;
}

.heroBannerContent h1 {
    color: var(--white);
    line-height: 1.2;
    margin: 20px 0px;
}

.heroBannerContent h6 {
    color: var(--white);
    letter-spacing: 3px;
}

.heroBannerContent a span {
    margin-left: 15px;
    display: inline-block;
    font-size: inherit;
}

.bannerSocialList {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

span.line {
    width: 1px;
    height: 250px;
    background-color: var(--white);
    display: block;
}

.bannerSocialList ul {
    margin: 20px 0px 0px;
}

.bannerSocialList ul li:not(:last-child) {
    margin-bottom: 5px;
}

.bannerSocialList ul li a {
    color: var(--white);
    transition: .4s ease-in-out;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bannerSocialList ul li a:hover {
    color: var(--deep-fir);
    background-color: var(--white);
}

.headerMenu ul {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
}
.headerNav{
    flex-grow: 1;
}
.headerMenu ul li a {
    color: #fff;
    position: relative;
    padding-bottom: 6px;
}

.headerLogo {
  width: 150px;
}

.headerFlex {
    justify-content: space-between;
    position: relative;
}

.contactInvestor {
    display: flex;
}

.headerContact a {
    background: var(--white);
    padding: 18px 40px;
    border-radius: 6px;
    color: #001800;
    transition: .4s ease-in-out;
    border: 1px solid #fff;
    text-transform: uppercase;
}

.headerContact {
    margin-right: 10px;
}

.headerInvestor a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 17px 25px 13px;
    transition: .4s ease-in-out;
    text-transform: uppercase;
    line-height: 19px;
	height: 55px;
}

.headerContact:hover a {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.headerInvestor a:hover {
    background: #fff;
    color: var(--deep-fir);
}

.headerContact a, .headerInvestor a {
    display: inline-block;
}

.headerMenu ul li a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: var(--white);
    width: 0;
    height: 2px;
}

.headerMenu ul li a:hover::after {
    width: 100%;
}

/*********************************
            Header Css
*********************************/

/*********************************
            Pages Css
*********************************/


.homeOverviewSection {
    padding: 100px 0px 80px;
}

.sectionIntro {
    text-align: center;
}

.homeOverviewContent {
    margin: 0px 0px 0px;
    text-align: left;
}

.homeOverviewContent h2 {
    margin: 0 0 30px;
}

.homeOverviewContent p {
    margin-bottom: 30px;
    line-height: 2;
}

.homeOverviewMain {
    max-width: 100%;
    margin: 0 auto;
}

.overviewFlex {
    margin: 40px 0px 0px;
    justify-content: space-between;
    gap: 30px;
}

.homeOverviewContent {
    width: 48%;
}

.overviewBox {
    background: #E7EBE4;
    border-radius: 12px;
    width: 48%;
    padding: 48px 48px;
    margin: 0px;
}

.overviewBoxInner {
    text-align: left;
}

.overviewBoxInner h4 {
    line-height: 1.6;
    text-transform: initial;
}

.overviewIcon img {
    height: 45.5px;
    width: 45.5px;
}

.overviewSingleBoxContent h2 {
    margin-bottom: 18px;
}

.overviewManage {
    margin: 40px 0px 0px;
}

.overviewIcon {
    margin-bottom: 20px;
}

.overviewSingleBox {
    width: 40%;
}

.homeTeamSection {
    padding: 100px 0px 60px;
}

.sectionIntro h2 {
    font-weight: 400;
}

.homeOverviewContent a span {
    margin-left: 10px;
}

.teamSliderContainer {
    margin: 60px 0px 0px;
}

.teamSingleSlide {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.teamMemberIntro h4 {
    margin-bottom: 16px;
}

.teamMemberIntro h6 {
    min-height: 25px;
}

.teamMemberContent {
    margin: 20px 0px 0px;
/*     min-height: 320px; */
	min-height: 350px;
}

.teamMemberIntro h6 {
    opacity: .8;
    letter-spacing: 0.1em;
}

.teamMemberContent p {
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: .6;
	text-align: left;
}

.teamSlider .swiper-slide-next {
    border: 1px solid rgba(255, 255, 255, .6);
    border-top: 0px;
    border-bottom: 0px;
}

.teamMemberLinkedin a {
    font-size: 34px;
    color: var(--white);
    transition: .4s ease-in-out;
    background: transparent;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.teamMemberLinkedin a:hover {
    /*color: var(--mine-shaft);*/
    color: var(--deep-fir);
    background: var(--white);
}

.teamSliderNavigation .swiper-button-prev::after, .teamSliderNavigation .swiper-button-next::after {
    display: none;
}

.teamSliderNavigation .swiper-button-prev i, .teamSliderNavigation .swiper-button-next i {
    font-size: 40px;
    color: #fff;
}

.teamSliderNavigation .swiper-button-prev {
    left: -20px;
}

.teamSliderNavigation .swiper-button-next {
    right: -20px;
}

.homeCapabilitiesSection {
    padding: 100px 0px;
    background: linear-gradient(107.25deg, #E7EBE4 -14.11%, #DEDFDE 109.78%);
}

.homeCapabilitiesMain {
    max-width: 90%;
    margin: 0 auto;
}

.capabilitiesFlex {
    gap: 30px;
    justify-content: center;
}

.capabilitiesSliderContainer {
    margin: 60px 0px 0px;
}

.capabilitiesRow:not(:last-child) {
    margin-bottom: 80px;
}

.capabilitiesSingleSlide {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px 28px;
    width: 48%;
}

.capabilitiesSlider {
    padding: 20px 20px;
}

.capabilitiesSlideInner {
    text-align: center;
}

.capabilitiesSlideIcon::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #E7EBE4;
    z-index: 0;
}

.capabilitiesSlideIcon {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.capabilitiesSlideIcon img {
    top: 15px;
    left: 10px;
    position: relative;
    z-index: 1;
}

.capabilitiesSlideContent {
    margin: 37px 0px 0px 0px;
}
.capabilitiesSlideContent h4{
    line-height: 1.3;
}
.capabilitiesSlideContent p {
    margin: 20px 0px 0px;
    color: #000;
    opacity: 0.5;
    line-height: 1.6;
}

.sectionIntro h2 {
    color: var(--mine-shaft);
}

.capabilitiesSliderNavigation .swiper-button-prev::after, .capabilitiesSliderNavigation .swiper-button-next::after {
    display: none;
}

.capabilitiesSliderNavigation .swiper-button-prev img, .capabilitiesSliderNavigation .swiper-button-next img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.capabilitiesSliderNavigation .swiper-button-prev {
    left: -40px;
}

.capabilitiesSliderNavigation .swiper-button-next {
    right: -40px;
}

.capabilitiesRow {
    position: relative;
}

.capabilitiesSliderNavigation .swiper-button-prev, .capabilitiesSliderNavigation .swiper-button-next {
    top: 25%;
    bottom: 0;
    margin: auto;
}

.homePortfolioSection {
    padding: 100px 0px;
}

.portfolioMapContainer {
    margin: 60px 0px 0px;
}

.portfolioMapFlex {
    display: flex;
    justify-content: space-between;
}

.portfolioMapLeft {
    width: 73%;
    background: #F7FBF4;
    border-radius: 12px;
    padding: 20px 20px;
}

.portfolioMapRight {
    width: 25%;
}

.contactMapMap {
    max-width: 80%;
    margin: 0 auto;
    height: 100%;
}

.portfolioSliderContainer {
    position: relative;
}

.listingEstate {
    text-align: center;
    margin-bottom: 10px;
}

.portfolioSliderNavigation .swiper-button-prev, .portfolioSliderNavigation .swiper-button-next {
    top: 20px;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
}

.portfolioSliderNavigation .swiper-button-prev::after, .portfolioSliderNavigation .swiper-button-next::after {
    display: none;
}

.portfolioSliderNavigation .swiper-button-prev img, .portfolioSliderNavigation .swiper-button-next img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.listingImage {
    height: 266px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    display: flex;
    align-items: flex-end;
}

.listingImageInner h5 {
    font-size: 20px;
    line-height: 1.3;
}

.listingContentBoxSingle {
    margin: 0 0 25px;
    width: 48%;
}

.boxContent {
    margin: 5px 0px 0px;
    font-size: 14px;
    font-weight: 600;
}

.boxHead {
    font-size: 14px;
}

.listingContentInner {
    padding: 40px 20px;
}

.listingLearnMore a {
    width: 100%;
    text-align: center;
}

.listingLearnMore a span {
    margin-left: 10px;
}

.contactMapMap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header.siteHeader.scrolled {
    background-color: var(--deep-fir);
}

.portfolioIntroRight a {
    color: var(--mine-shaft);
    letter-spacing: 1px;
        display: inline-flex;
    align-items: center;
}

.portfolioIntroRight a span {
    margin-left: 10px;
}

.filterEstateSection {
    padding: 0 0 100px;
}

.filterEstateFilter {
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin: 0 0 32px;
}

.filterEstateFilter p {
    margin-bottom: 12px;
}

.filterEstateFilter form {
    max-width: 330px;
}

.filterEstateFilter form select {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-weight: 400;
    color: var(--mine-shaft);
    border: 1px solid rgba(0, 0, 0, 0.1);
    appearance: none;
    border-radius: 0px;
    background-image: url(../images/select-arrow.svg);
    background-size: contain;
    background-position: right;
    outline: none;
    background-repeat: no-repeat;
}

.filterEstateSingle {
    width: 48%;
    background: #E7EBE4;
    border-radius: 12px;
    overflow: hidden;
}

.filterEstateResultFlex {
    gap: 20px;
}

.filetrEstateImage {
    width: 30%;
}

.filterEstateSpecs {
    width: 70%;
    box-sizing: border-box;
    padding: 20px 20px;
}

.filetrEstateImage img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.filterEstateSpecs h5 {
    color: #000;
    line-height: 1.3;
}

.estateUnitBuiltFlex {
    margin: 26px 0px 0px;
}

.estateUnit {
    display: flex;
    gap: 20px;
    width: 100%;
}

.estateUnit h6 {
    width: 45%;
}

.estateBuilt {
    display: flex;
    width: 100%;
    gap: 10px;
}

.estateUnitValue {
    display: inline-block;
    margin: 16px 0px 0px;
    background: var(--deep-fir);
    border-radius: 100px;
    padding: 5px 20px;
	text-align: center;
	font-size: 12px;
}

.filterEstateSingleInner {
    align-items: stretch;
}

.homenewsSection {
    padding: 100px 0px 120px;
    background: linear-gradient(107.25deg, #E7EBE4 -14.11%, #DEDFDE 109.78%);
	display: none;
}

.homeNewsSliderContainer {
    margin: 60px 0px 0px;
}

.homeNewsSlideInner {
    height: 524px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.homeNewsSlideContent {
    position: relative;
    z-index: 1;
}

.homeNewsSlideInner::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.16) 100%), url(.html);
    content: "";
    /* border-radius: 12px; */
}


.homeNewsSlideContent h4 {
    margin: 20px 0px;
    color: #fff;
    line-height: 1.4;
}

.newsdate {
    color: #fff;
}

.newsdate span {
    margin-left: 10px;
}

.homeNewsSlideContent a {
    font-size: 18px;
}

.homeNewsSlideContent a span {
    margin-left: 10px;
}

.homeNewsSliderNavigation .swiper-button-prev, .homeNewsSliderNavigation .swiper-button-next {
    position: absolute;
    bottom: 0px;
    top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mine-shaft);
    border-radius: 50%;
    bottom: -60px;
}

.homeNewsSliderNavigation .swiper-button-prev::after, .homeNewsSliderNavigation .swiper-button-next::after {
    display: none;
}

.homeNewsSliderNavigation .swiper-button-prev {
    left: 45%;
}

.homeNewsSliderNavigation .swiper-button-prev img, .homeNewsSliderNavigation .swiper-button-next img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.homeNewsSliderNavigation .swiper-button-next {
    right: 47%;
}

.homeTeamMain .sectionIntro h2 {
    color: var(--white);
}

.homeOverviewContent h2 {
    position: relative;
    padding-bottom: 20px;
}

.homeOverviewContent h2::after {
    position: absolute;
    left: 0;
    width: 80px;
    height: 2px;
    background: #023202;
    content: "";
    bottom: 0;
}

.homeTeamMain .sectionIntro h2 {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.homeTeamMain .sectionIntro h2::after {
    position: absolute;
    left: 0;
    width: 70px;
    height: 2px;
    background: #fff;
    content: "";
    bottom: 0;
    right: 0;
    margin: auto;
}

.capabilitiesRow .sectionIntro h2 {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.capabilitiesRow .sectionIntro h2::after {
    position: absolute;
    left: 0;
    width: 80px;
    height: 2px;
    background: #023202;
    content: "";
    bottom: 0;
    right: 0;
    margin: auto;
}

.portfolioIntroLeft h2 {
    position: relative;
    display: inline-block;
}

.portfolioIntroLeft h2::after {
    position: absolute;
    left: 0;
    width: 80px;
    height: 2px;
    background: #023202;
    content: "";
    bottom: -20px;
}

.portfolioIntroRight a {
    position: relative;
    padding-bottom: 4px;
	display: none;
}

.portfolioIntroRight a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: var(--mine-shaft);
    width: 0;
    height: 2px;
}

.portfolioIntroRight a:hover::after {
    width: 100%;
}

.homeNewsSlideContent a {
    position: relative;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
}

.homeNewsSlideContent a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: var(--white);
    width: 0;
    height: 2px;
}

.homeNewsSlideContent a:hover::after {
    width: 100%;
}

.teamNewSlider .owl-prev, .teamNewSlider .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    background: transparent !important;
}

.teamNewSlider .owl-prev {
    left: -40px;
	 filter: invert(1);
}

.teamNewSlider .owl-next {
    right: -40px;
	 filter: invert(1);
}

.teamNewSlider .owl-prev i,  .teamNewSlider .owl-next i {
    font-size: 20px;
    font-weight:900;
    color: #fff;
}a.text-upper i {
    font-size: 20px;
    font-weight: 900;
}


.commonBannerSection {
    position: relative;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commonBannerMan {
    position: relative;
    height: 100%;
    z-index: 1;
}

.commonBannerInner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonBannerSection::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #023202;
    content: "";
    opacity: 0.8;
}

.commonBannerContent {
    margin: 80px 0px 0px;
}

.aboutIntroSection {
    padding: 90px 0px;
}

.aboutIntroLeft {
    width: 48%;
}

.aboutIntroImage {
    border-radius: 12px;
    overflow: hidden;
}

.aboutIntroRight {
    width: 48%;
}

.aboutIntroRightIntro h2 {
    margin-bottom: 24px;
    color: var(--mine-shaft);
}

.aboutIntroRightIntro p {
    color: var(--mine-shaft);
    opacity: 0.6;
    line-height: 1.4;
}

.aboutIntroRightIntro p:not(:last-child) {
    margin-bottom: 25px;
}

.aboutLeftPara p {
    color: var(--mine-shaft);
    opacity: 0.6;
    line-height: 1.4;
}


.aboutIntroBottom {
    max-width: 1525px ;
    margin: 50px 0px 0px auto;
}

.aboutLeftPara {
    width: 48%;
}

.aboutIntroRightLogo {
    width: 48%;
}

.aboutIntroRightLogo img {
    width: 100%;
    max-width: 100%;
}

.ourMissionSection {
    padding: 80px 0px 0px;
}

.sectionIntro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
	display:none;
}

.ourMissionInner {
    margin: 133px 0px 0px;
    background-color: var(--white);
    border-radius: 12px 12px 0px 0px;
}

.sectionIntro h2 {
    margin-bottom: 20px;
}

.sectionIntro p {
    line-height: 1.5;
}

.ourMissionDotsAfter {
    position: absolute;
    top: -25px;
    left: -25px;
}

.ourMissionInner {
    position: relative;
}

.ourMissionDotsBefore {
    position: absolute;
    bottom: -42px;
    right: -42px;
}

.ourMissionImage {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    top: -100px;
    border-radius: 16px;
    overflow: hidden;
}

.executiveTeamSection {
    padding: 90px 0px;
}

.executiveTeamMain .sectionIntro p {
    max-width: 70%;
    margin: 0 auto;
}

.teamSliderContainer {
    margin: 40px 0px;
}

.teamSingleSlideInner {
    padding: 24px 24px;
}

.teamPersonImage {
    width: 126px;
    height: 126px;
    margin: 0 auto 42px;
    border-radius: 50%;
    overflow: hidden;
}

.teamPersonIntro {
    text-align: center;
}

.teamPersonIntro h5 {
    font-weight: 700;
}

.teamPersonIntro h6 {
    color: #000;
    opacity: .5;
    padding: 15px 0px;
    position: relative;
}

.teamPersonDescription {
    padding: 20px 0px;
    text-align: center;
}

.teamPersonDescription p {
    color: #000;
    opacity: .5;
    line-height: 1.4;
}

.teamPersonIntro h6::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--limeade);
    content: "";
    margin: auto;
}

.teamPersonLinkedin {
    text-align: center;
}

.teamPersonLinkedin a {
    color: var(--limeade);
    font-size: 28px;
}

.capSecSection {
    padding: 90px 0px 100px;
}

.capSecIntro {
    margin-bottom: 60px;
    position: relative;
}

.capSecIntro h2 {
    position: relative;
}

/* .capSecIntro h2::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--gray);
    content: "";
    width: 60px;
    margin: auto;
} */

.capSecFlex {
    gap: 20px;
}

.capSecSingle {
    width: 32%;
    border-radius: 12px;
    overflow: hidden;
	background-color: var(--alabaster);
	position: relative;
	transition: all .4s ease-in-out;
/* 	box-shadow: 3px 3px 18px -7px #000000; */
}
.property .capSecSingle:hover .capSecContent p{
opacity:1;
	transition: all .4s ease-in-out;
	box-shadow: 3px 3px 18px -7px #000000;
}
.capSecContent {
    padding: 28px 24px;
    background-color: var(--alabaster);
	border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.capSecContent p {
    line-height: 1.4;
    margin: 15px 0px 0px;
    opacity: .6;
}
.property .capSecContent p {
    line-height: 1.4;
    padding: 10px 10px 10px;
    opacity: 1;
    position: absolute;
    top: -15px;
    left: 0;
    overflow: scroll;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 19;
    -webkit-box-orient: vertical;
    background-color: var(--alabaster);
    height: 100%;
    border: 1px solid black;
    border-radius: 12px;
	opacity:0;
/* 	transition: all .4s ease-in-out; */
/* 	box-shadow: 3px 3px 18px -7px #000000; */
}

.capSecSection:last-child {
    padding-bottom: 0px;
}

.capSecImage {
    overflow: hidden;
}

.capSecImage img {
    width: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}

.capSecSingle:hover .capSecImage img {
    transform: scale(1.2);
}

.portfolioMainSection {
    padding: 0px 0px 90px;
}

.listingsTabbingMain {
    margin: 60px 0px 0px;
}

.tabsButtonSlide {
    height: 294px;
}

.tabsButtonSlideInner {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border-radius: 12px;
}

.tabsButtonSlideInner::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.8) 100%);
    content: "";
    transition: .4s ease-in-out;
    border-radius: inherit;
}

.tabsButtonSlideInner:hover::after, .tabsButtonSlideInner.active::after, #tabs-nav .swiper-slide.active .tabsButtonSlideInner::after {
    background: linear-gradient(0deg, rgba(2, 50, 2, 0.8), rgba(2, 50, 2, 0.8));
}

.tabsButtonSlideInner a {
    position: relative;
    z-index: 1;
}

.tabsNavNavigation .swiper-button-prev, .tabsNavNavigation .swiper-button-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
}

.listingTabsButton {
    position: relative;
	display:none;
}

.tabsNavNavigation .swiper-button-prev {
    left: -30px;
}

.tabsNavNavigation .swiper-button-next {
    right: -30px;
}

.tabsNavNavigation .swiper-button-prev::after, .tabsNavNavigation .swiper-button-next::after {
    display: none;
}

.tabsNavNavigation .swiper-button-prev img, .tabsNavNavigation .swiper-button-next img {
    object-fit: contain;
    width: 20px;
    height: 20px;
}

.executiveTeamMain .teamSingleSlide {
    background: #E7EBE4;
    border-right: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 40px 20px;
}

.executiveTeamMain .owl-nav button {
    display: none !important;
}


.executiveTeamMain .teamSingleSlide .teamMemberLinkedin a {
    color: var(--deep-fir);
}

.executiveTeamMain .teamSingleSlide .teamMemberLinkedin a:hover {
    color: var(--white);
    background-color: var(--deep-fir);
}

/*********************************
            Pages Css
*********************************/

/*********************************
        Common After Css
*********************************/

.leftAfter {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.leftAfter::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 1px;
    background-color: var(--deep-fir);
    content: "";
}

.centerAfter {
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.centerAfter::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 1px;
    background-color: var(--deep-fir);
    content: "";
}

/*********************************
        Common After Css
*********************************/

.tabsNavSlider .owl-prev, .tabsNavSlider .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
    background-color: transparent !important;
    border: 0px;
    outline: none;
    display: inline-block;
    /* width: 30px; */
    height: 20px;
    transform: translateY(50%);
}

.tabsNavSlider .owl-prev {
    left: -80px;
}

.tabsNavSlider .owl-next {
    right: -80px;
}

.tabsNavSlider .owl-prev img, .tabsNavSlider .owl-next img {
    object-fit: contain;
    width: 36px;
    height: 27px;
}
/* .executiveChangeArrow .owl-nav .owl-prev img {
	filter:invert(0)
} */
 
.tabsNavSlider {
    position: relative;
}

.listingsResultFilterRight {
    display: flex;
    gap: 10px;
}

.listingsResultFilterRight select {
    appearance: none;
    border: 0px;
    outline: none;
    color: var(--mine-shaft);
    font-family: 'Casper Regular';
    font-size: 18px;
}

.listingsResultFilter {
    margin: 80px 0px 35px;
}

.listingsResultFilterRightFlex span {
    font-size: 18px;
    font-family: 'Casper Regular';
    color: var(--mine-shaft);
}

.listingsFlex {
    gap: 40px;
}

.listingSignle {
    width: 31%;
}

.listingsLoader, .newsUpdateLoad {
    width: 44.7px;
    height: 44.7px;
    margin: 91px auto 0px;
}

@-webkit-keyframes lightwidget-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes lightwidget-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.listingsLoaderInner, .newsUpdateLoadImage {
    animation: lightwidget-spin 1.5s infinite linear;
}

.item .listingSignle {
    width: 100%;
}

.portfolioSlider .owl-nav .owl-prev img, .portfolioSlider .owl-nav .owl-next img {
    top: 20px;
    width: 18px;
    height: 18px;
}

.portfolioSlider .owl-nav .owl-prev, .portfolioSlider .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    /*border: 1px solid #000 !important;*/
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    position: absolute;
    top: -7px;
}

.portfolioSlider .owl-nav .owl-prev {
    left: 0;
}

.portfolioSlider .owl-nav .owl-next {
    right: 0;
}

.contactLeft {
    width: 50%;
    padding: 100px 100px;
}

.contactRight {
    width: 50%;
    background-color: #E7EBE4;
    padding: 100px 100px;
}

.contactIntro {
    margin-bottom: 35px;
}

.contactIntro p {
    margin: 25px 0px 0px;

}

.contactFormField {
    margin: 0 0 25px;
    position: relative;
}

.contactFormField, .contactFormOptions {
    border: 1px solid rgba(60, 60, 60, .5);
    border-radius: 10px;
}

.contactFormField input {
    width: 100%;
    padding: 13px 10px;
    border: 0px;
    outline: none;
    font-family: 'Casper Regular';
    color: var(--mine-shift);
    border-radius: inherit;
    position: relative;
	 color: var(--mine-shaft);
    font-weight: 500;
    font-size: 16px;
}

.contactFormField label {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    color: lightgray;
    transition: .3s ease-in-out;
    opacity: 1;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    position: absolute;
    z-index: 0;
    margin: auto;
    font-size: 16px;
}

.contactFormField input:focus-within + label,.contactFormField textarea:focus-within + label {
    top: -13px;
  color: var(--mine-shaft);
    background: #fff;
    opacity: 1;
    padding: 3px 6px;
    height: 18px;
    font-size: 12px;
    margin: 0px;
}
.contactFormField.message label {
    top: 13px;
    bottom: inherit;
}
.contactFormField input:not(:placeholder-shown) + label,.contactFormField textarea:not(:placeholder-shown) + label {
    top: -13px;
    color: var(--mine-shaft);
    background: #fff;
    opacity: 1;
    padding: 3px 6px;
    height: 18px;
    font-size: 12px;
    margin: 0px;
}
.contactFormField.message textarea::placeholder {
    font-size: 0px;
}
.contactFormField label:placeholder-shown {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    color: var(--mine-shaft);
    transition: .3s ease-in-out;
    opacity: .5;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    position: absolute;
    z-index: 0;
    margin: auto;
    font-size: 16px;
}

.contactFormField input::placeholder {
    opacity: 0;
}

.contactFormOptions {
    padding: 18px 12px;
}

.contactFormOptionsHeading label {
    font-size: 16px;
    color: #3C3C3C;
    font-weight: 500;

}

.contactFormOptionsList {
    margin: 25px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contactCheckbox label {
    color: #3C3C3C;
    opacity: .5;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.contactCheckbox input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
	    z-index: 2;
}

.contactCheckbox {
    position: relative;
    width: auto;
}

.contactCheckbox label::after {
    border: 2px solid rgba(0, 24, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    /* transition: .3s ease-in-out; */
}

.contactCheckbox label::before {
    position: absolute;
    left: 5px;
    top: 7px;
    bottom: 0;
    width: 9px;
    height: 5px;
    border: solid #fff;
    content: "";
    border-width: 0px 0px 2px 2px;
    transform: rotate(-45deg);
    transition: .4s ease-in-out;
    z-index: 2;
}

.contactCheckbox input:checked + label::after {
    background: #3c3c3c;
}

.contactFormSubmit {
    margin: 20px 0px;
}

.contactFormSubmit button {
    background: transparent;
    padding: 10px 40px 8px;
    border: 1px solid #3C3C3C;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    color: var(--mine-shaft);
    font-weight: 600;
    font-size: 16px;
}

.contactOptionHeadingIcon {
    display: flex;
    align-items: center;
}

.contactOptionHeadingIcon img {
    width: 30px;
    max-height: 33px;
    object-fit: contain;
}

.contactOptionHeadingIcon span {
    color: var(--mine-shaft);
    opacity: .5;
    /*font-size: 18px;*/
    display: inline-block;
    margin-left: 15px;
}

.contactOptionSingle {
    margin-bottom: 50px;
}

.contactOptionNumMail {
    margin: 30px 0px 0px;
}

.contactOptionNumMail a {
    color: var(--mine-shaft);
    font-weight: 500;
    /*font-size: 20px;*/
    /*text-decoration: underline;*/
}
.contactOptionNumMail a{
    position: relative;
}
.contactOptionNumMail a:after{
    content: '';
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    margin: auto;
    position: absolute;
    transition: all 0.4s ease;
    background-color: #3c3c3c;
}
.contactOptionNumMail a:hover:after{
    width: 100%;
}
.contactMap iframe {
    width: 100%;
	height:300px;
}
.overviewIcon{
    display: none;
}
.newsUpdatesSingleBg {
    height: 524px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.newsUpdatesFlex {
    display: flex;
    gap: 21px;
}

.newsUpdatesSingle {
    width: 32%;
}

.newsUpdatesSection {
    padding: 85px 0px;
}

.newsUpdatesContent {
    position: relative;
    z-index: 1;
}

.newsUpdatesSingleBg::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.16) 100%);
    z-index: 0;
}

.newsdate {
    color: #fff;
}

.newsdate span {
    margin-left: 10px;
}

.newsUpdatesContentinner h4 {
    margin: 20px 0px;
    color: #fff;
    line-height: 1.4;
}

.newsUpdatesContentinner a span {
    margin-left: 10px;
}

.newsUpdatesContentinner a i {
    font-size: 24px;
    color: #fff;
}

.newsUpdatesContentinner a {
    display: inline-flex;
    align-items: center;
    padding-bottom: 3px;
    position: relative;
}

.newsUpdatesContentinner a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: var(--white);
    width: 0;
    height: 2px;
}

.newsUpdatesContentinner a:hover::after {
    width: 100%;
}



/*********************************
            Footer Css
*********************************/


.siteFooter {
    background: #082700;
}

.footerTop {position: relative;}

.topFooterFlex {
    padding: 70px 0px 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.topFooterLeft {
    width: 70%;
}

.topFooterRight {
    width: 30%;
}

.topFooterLeft .footerColHeading {
    max-width: 60%;
}

.footerColHeading h2 {
    line-height: 1.5;
}

.footerSitemap {
    /*margin: 64px 0px 0px;*/
    margin: 0px;
    width: 70%;
}

.footerSitemap span {
    color: #EAF4E3;
    opacity: .5;
    font-size: 12px;
}

.footerSitemap ul {
    display: flex;
    gap: 20px 10px;
    margin: 10px 0px 0px;
    flex-wrap: wrap;
}

.footerSitemap ul li {
    width: 18%;
}

.footerSitemap ul li a {
    color: #fff;
    transition: .4s ease-in-out;
/*     letter-spacing: 1px; */
    position: relative;
    padding-bottom: 6px;
}

.footerContact {
    margin: 80px 0px 0px;
    display: flex;
    gap: 30px;
}

.footerContactSingle span {
    display: block;
    margin-bottom: 5px;
    color: #EAF4E3;
    opacity: .5;
    font-size: 12px;
}

.footerContactSingle a, .footerContactSingle p {
    color: #fff;
}

.footerNewsletter {
    margin: 42px 0px 0px;
}

.newsletterField input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background-color: transparent;
    padding: 15px 15px;
    color: #fff;
    opacity: 1;
}

.newsletterField input::placeholder {
    text-transform: uppercase;
    color: #fff;
    opacity: .5;
}

.newsletterNote {
    margin: 20px 0px;
}

.newsletterNote p {
    font-size: 15px;
    line-height: 26px;
/* or 173% */
    color: #FFFFFF;
    opacity: 0.5;
}


.newsletterSubmit button {
    display: block;
    /*border: 0px;*/
}

.newsletterSubmit button span {
    margin-left: 10px;
}


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

.bottomFooterRight ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footerBottom {
    padding: 21px 0px;
}

.bottomFooterLeft p {
    color: #fff;
    opacity: .5;
}
.bottomFooterRight ul li a {
    color: #fff;
    opacity: .5;
}

.newsletterField {
    margin: 0 0 20px;
}

.footerLogo {
    max-width: 400px;
    opacity: 0.2;
}

.footerContactSingle a {
    position: relative;
    padding-bottom: 4px;
}

.footerSitemap ul li a::after, .footerContactSingle a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: var(--white);
    width: 0;
    height: 2px;
}

.footerSitemap ul li a:hover::after, .footerContactSingle a:hover::after {
    width: 100%;
}

.bottomFooterRight ul li a {
    position: relative;
    padding-bottom: 4px;
}

.bottomFooterRight ul li a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: rgba(255, 255, 255, .5);
    width: 0;
    height: 2px;
}

.bottomFooterRight ul li a:hover::after {
    width: 100%;
}

.bottomFooterLeft p a {
    color: inherit;
    position: relative;
    padding-bottom: 4px;
}

.footerSocialList ul {
    display: flex;
    gap: 20px;
    margin: 5px 0px 8px;
    align-items: center;
}

.footerSocialList ul li a {
    color: #fff;
    font-size: 18px;
}

.footerSocialList ul li a span {
    margin-left: 5px;
    color: inherit;
    font-size: 16px;
    opacity: inherit;
}

.footerSocialList span {
    color: #EAF4E3;
    opacity: .5;
    font-size: 12px;
}

.topFooterFlex {
    align-items: flex-end;
}
.footerSocialList >span.text-upper{
    display: inherit;
    text-align: left;
}
.bottomFooterLeft p a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: .4s ease-in-out;
    content: "";
    background: rgba(255, 255, 255, .5);
    width: 0;
    height: 2px;
}

.bottomFooterLeft p a:hover::after {
    width: 100%;
}

.footerSocialList ul li a:hover i {
    color: var(--deep-fir);
    /*background-color: var(--white);*/
}

.footerSocialList ul li a i {
    color: var(--white);
    transition: .4s ease-in-out;
    font-size: 16px;
    /*width: 30px;*/
    /*height: 30px;*/
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*border-radius: 50%;*/
}

.contactMap a img{
    transition: all 0.4s ease;
}


.topFooterLeft {
    width: 100%;
}

.footerContactFlex {
    align-items: flex-start;
    justify-content: space-between;
    /*margin: 50px 0px 0px;*/
}

.footerContact {
    margin: 0px 0px 0px;
}

.footerSitemap ul li {
    width: auto;
}

.footerSitemap ul {
    gap: 15px 30px;
    gap: 15px 23px;
}

.footerSocialList ul li a svg {
    fill: var(--white);
    transition: .4s ease-in-out;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.footerSocialList ul li a {
    display: flex;
    align-items: center;
}

.footerSocialList ul li a::after {
    transition: .4s ease-in-out;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    content: "";
    left: -7.55px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
    position: absolute;
}

.footerSocialList ul li a {
    position: relative;
}

.footerSocialList ul li a:hover::after {
    background: #fff;
}

.footerSocialList ul li a i {
    z-index: 2;
    position: relative;
/*     margin-right: 7px; */
}

.footerSocialList ul li a svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    transition: .4s ease-in-out;
        z-index: 999;
}

.footerSocialList ul li a svg image {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(211deg) brightness(103%) contrast(101%);
}

.footerSocialList ul li a:hover svg image {
    filter: invert(16%) sepia(30%) saturate(1727%) hue-rotate(76deg) brightness(91%) contrast(104%);
}

.footerSocialList {
    margin-top: -5px;
}

.footerTopLeftFlex {
    width: 100%;
    justify-content: space-between;
}

.footerTOpRightFlex {
    /* justify-content: space-between; */
    gap: 20px;
    align-items: center;
}

.footerLogo {
    width: 27%;
}

.topFooterRight {
    width: 100%;
    margin-top: 50px;
}

.footerSocialList ul li a:hover svg, .footerSocialList ul li a:hover svg path {
    fill: var(--deep-fir);
}

.bannerSocialList ul li a img {
    width: 18px;
    height: 18px;
    display: block;
    opacity: 1;
}

.bannerSocialList ul li a:hover img {
    filter: invert(9%) sepia(57%) saturate(3506%) hue-rotate(46deg) brightness(27%) contrast(103%);
}

.footerSocialList ul li a:hover img {
    filter: invert(9%) sepia(57%) saturate(3506%) hue-rotate(46deg) brightness(27%) contrast(103%);
}

.footerSocialList ul li a img {
    position: relative;
    z-index: 1;
}

.homeNewsSlider button i {
    font-size: 13px;
    font-weight:900;
    color: #082700;
}
a.greenBtn span i {
    font-size: 20px;
    font-weight: 900;
}
a.whiteBtn span i {
    font-size: 20px;
    font-weight: 900;
}
.owl-nav button i {
    font-size: 20px;
    font-weight: 900;
}
.homeNewsSlider button {
    background: transparent !important;
    position: absolute;
    bottom: -80px;
}

.homeNewsSlider .owl-prev {
    left: 45%;
}

.homeNewsSlider .owl-next {
    right: 45%;
}

.portfolioSlider .owl-nav button i {
    color: #082700;
    font-size:20px;
    font-weight:900;
}

.heroBannerContent a {   
height: 55px;
padding: 17px 25px 13px;
}

.contactCheckbox input:checked + span.wpcf7-list-item-label {
    opacity: 1;
    color: #023202;
}

.contactCheckbox input:checked + span.wpcf7-list-item-label::before {
	background: #023202;
}
span.wpcf7-list-item-label {
    color: #3C3C3C;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}
.contactFormField.message textarea {
    border: none;
    width: 100%;
    margin: 0;
    height: 100%;
	padding:13px 10px;
    resize: none;
}

.contactFormField.message {
    margin-top: 25px;
	border:none;
}

.contactFormField.message textarea::placeholder {
    padding: 10px;
}
.contactFormField.message textarea {
    border: 1px solid rgba(60, 60, 60, .5);
    border-radius: 10px;
}



.teamNewSlider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}
.item {
    width: 49%;
}
/*********************************
            Footer Css
*********************************/
.contactFormField.message{
		margin: 25px 0 !important;
	border: 1px solid rgba(60, 60, 60, .5) !important;
    border-radius: 10px !important;
}
.contactFormField.message textarea{
		font-family: 'Casper Regular';
		color: var(--mine-shaft);
		font-weight: 500;
		font-size: 16px;
		border: none !important;
}
.contactMap a{
    position: relative;
}
.contactMap a:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: lightgray;
    transition: all 0.4s ease;
    opacity: 0;
    border-radius: 10px;
}
.contactMap a:hover img{
    transform: none !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}
.contactMap a:hover:after{
    opacity: .4;
}
.headerContact{
    display: none;
}

.overviewSingleBoxContent {
    position: relative;
    text-align: center;
}

.overviewSingleBoxContent h2 {
    margin-bottom: 8px;
}

.capSecContent h4 {
    line-height: 1.4;
    /* min-height: 70px; */
}

.footerLogo {
	transition: .4s ease-in-out;
}

.footerLogo:hover {
    opacity: 1;
}

.homeNewsSlideBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.homeNewsSlideBackground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeNewsSingleSlide:hover .homeNewsSlideBackground img {
    transform: scale(1.2);
}

.homeNewsSingleSlide .homeNewsSlideBackground img {
    transition: .4s ease-in-out;
}

.capabilitiesSingleSlide:hover {
    box-shadow: 3px 3px 18px -7px #000000;
}

.capabilitiesSingleSlide:hover .capabilitiesSlideIcon img {
    transform: scale(1.2);
}

.capabilitiesSingleSlide, .capabilitiesSlideIcon img {
    transition: .4s ease-in-out;
}

.capStrategyLink {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 999;
}

.capabilitiesSingleSlide {
    position: relative;
}

.greenBtn {
    overflow: hidden;
}

.meetTheTeam {
    border: 1px solid var(--deep-fir);
/*     padding: 11.5px 15px 9.5px; */
    margin: 0 0 0 10px;
    overflow: hidden;
    color: var(--deep-fir);
height: 55px;
padding: 17px 25px 13px;
	width: 169px;
}

.meetTheTeam:hover {
    background-color: var(--deep-fir);
    color: #fff;
    border-color: var(--deep-fir);
}

.greenBtn {
    overflow: hidden;	
height: 55px;
padding: 17px 25px 13px;
	width: 169px;
}

.slideLinkOuter {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.homeNewsSingleSlide:hover .homeNewsSlideContent a::after {
    width: 100%;
}

.homeNewsSingleSlide:hover {
    cursor: grab;
}

.slideLinkOuter:hover {
    cursor: grab;
}

.contactFormSubmit button {
    font-family: 'Casper Regular';
    transition: .4s ease-in-out;
    font-weight: 400;
height: 55px;
padding: 17px 25px 13px;
	width: 169px;
}

.contactFormSubmit button:hover {
/*     background-color: #3C3C3C; */
	background-color: var(--deep-fir);
    color: #fff;
}

.executiveTeamMain {
    position: relative;
    padding: 100px 0px 0px;
/* 	margin: -100px 0px 0px; */
/* 	top: -100px; */
}

.executiveTeamSection {
    top: -100px;
    position: relative;
}

/* 05-08-23 */

.newCapFlex {
    flex-direction: column;
    align-items: center;
}

.newCapFlex .capSecSingle {
    display: flex;
    flex-direction: row-reverse;
}

.newCapFlex .capSecSingle .capSecImage img {
    /* width: 100%; */
}

.newCapFlex .capSecSingle:nth-child(even) {
    flex-direction: row;
}

.capSecImage img {
    height: 360px;
    width: 1300px;
}

.capSecRow {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.capSecMain {
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.newCapFlex .capSecSingle{
	width: 100%;
}
.newCapFlex .capSecSingle .capSecContent{
	padding: 28px 60px;
}
.privacy-wrapper{
	padding: 40px 80px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.privacy-wrapper h6{
	padding: 12px 0;
	font-size: 18px;
}
.privacy-wrapper p{
	padding: 8px 0;
	line-height: 1.5;
}
/* 05-end */



/* .homeCapabilitiesSection .homeCapabilitiesMain .capabilitiesRow:nth-child(1) .capabilitiesSingleSlide{
	width: 48%;
}
 */


body.page-template.page-template-capabilities.scrolled-body {
   padding-top: 80px;
}


/*********************************
            Media Queries
*********************************/

@media only screen and (min-width: 1681px) {
    .contactLeft {
        padding: 100px 200px;
    }
    
    .contactRight {
        padding: 100px 200px;
    }
}

@media only screen and (max-width: 1680px) {
    .aboutIntroBottom {
        max-width: 1420px;
    }
body.page-template.page-template-capabilities.scrolled-body {
   padding-top: 110px;
}
        
}

@media only screen and (max-width: 1440px) {
    .bannerSocialList {
        margin: 0 0 -100px;
    }
    span.line {
        height: 170px;
    }
    .heroBannerContent {
        margin: 105px 0px 0px 0px;
    }
    .aboutIntroBottom {
        max-width: 1300px;
    }
    .capSecSection {
        padding: 50px 0px 50px;
    }
}

@media only screen and (max-width: 1366px) {
    .aboutIntroBottom {
        max-width: 1260px;
    }
}


@media only screen and (max-width: 1280px) {
    .container {
        max-width: 1140px;
    }
    h1 {
        font-size: 44px;
    }
    
    h2 {
        font-size: 38px;          
    }
    
    h3 {
        font-size: 32px;
    }
    
    h4 {
        font-size: 24px;
    }
    
    h5 {
        font-size: 22px;
    }
    
    h6 {
        font-size: 12px;
    }
    
    p {
        font-size: 16px;
    }
    
    a {
        font-size: 15px;
    }
    .heroBannerContent {
        margin: 0px 0px 0px 0px;
        margin-left: 100px;
    }
    .aboutIntroBottom {
        max-width: 1185px;
    }
    .listingsFlex {
        gap: 35px;
    }
    .heroBannerContent{
        margin-top: 100px;
    }
}

@media only screen and (max-width: 1100px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 34px;          
    }
    
    h3 {
        font-size: 30px;
    }
    
    h4 {
        font-size: 22px;
    }
    
    h5 {
        font-size: 20px;
    }
    
    h6 {
        font-size: 12px;
    }
    
    p {
        font-size: 16px;
    }
    
    a {
        font-size: 15px;
    }
    .headerMenu ul {
        gap: 25px;
    }
    
    .headerContact a, .headerInvestor a {
        padding: 15px 18px;
    }
    
    .heroBannerContent {
        margin-left: 100px;
    }
    
    .homeOverviewMain {
        max-width: 90%;
    }
    .teamSliderContainer, .capabilitiesSliderContainer {
        max-width: 90%;
        margin: 80px auto 0px;
    }    
    .teamSliderNavigation .swiper-button-prev {
        left: 30px;
    }
    .teamSliderNavigation .swiper-button-next {
        right: 30px;
    }
    .capabilitiesSliderNavigation .swiper-button-prev {
        left: 0px;
    }
    
    .capabilitiesSliderNavigation .swiper-button-next {
        right: 0px;
    }
    
    .portfolioMapLeft {
        width: 65%;
    }
    
    .portfolioMapRight {
        width: 33%;
    }
    .footerSocialList ul li a {
        font-size: 14px;
    }
    .footerSitemap ul li {
        width: auto;
    }
    .footerSitemap ul {
        gap: 35px;
    }
    .footerSitemap {
        width: 65%;
    }
    .footerLogo {
        width: 33%;
    }
    .bottomFooterLeft {
        width: 60%;
    }
    .bottomFooterFlex {
        align-items: flex-start;
    }
    .aboutIntroBottom {
        max-width: 100%;
        padding-left: 30px;
    }
    .contactLeft {
        padding: 50px 50px;
    }
    
    .contactRight {
        padding: 50px 50px;
    }
    .capSecFlex {
        gap: 15px;
    }
    .listingsFlex {
        gap: 30px;
    }
    .tabsNavSlider .owl-prev img, .tabsNavSlider .owl-next img {
        width: 35px;
        height: 35px;
    }
    .tabsNavSlider .owl-prev {
        left: 10px;
    }
    .tabsNavSlider .owl-next {
        right: 10px;
    }
    .tabsNavSlider .owl-prev img, .tabsNavSlider .owl-next img {
        filter: invert(96%) sepia(96%) saturate(26%) hue-rotate(57deg) brightness(107%) contrast(100%);
    }
    .newsUpdatesSingleBg {
        height: 420px;
    }
    
    .newsUpdatesFlex {
        gap: 18px;
    }
    .teamNewSlider .owl-dots {
        bottom: -60px;
        position: absolute;
        left: 0;
        right: 0;
    }
    .teamNewSlider .owl-dots .owl-dot.active span, .teamNewSlider .owl-dots .owl-dot:hover span {
        background: #082700 !important;
        opacity: 1;
    }
    .homeTeamMain .teamNewSlider .owl-dots {
        display: none;
    }
/*     .heroBannerContent{
        margin-top: 0;
    } */
}


@media only screen and (max-width: 992px) {
    .headerNav {
        position: absolute;
        left: 0;
        top: 65px;
        width: 100vw;
        background: var(--deep-fir);
        display: none;
        margin:0 -20px;
		height: 100vh;
    }
        .siteHeader {
  
    border-color: transparent;
    background-color: var(--deep-fir);
}
    .headerMenu ul {
        display: block;
        width: 100%;
    }
    
    .headerMenu ul li {
        text-align: center;
        margin: 20px 0px;
    }
    
    .headerMenu ul li a {
       
        font-size: 18px;
    }
    
    .headerHamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
        transition: .4s ease-in-out;
    }
    
    .headerHamburger span:last-child {
        margin-bottom: 0px;
    }
    
   
    
    .headerHamburger.active span:nth-child(2) {
        display: none;
    }
    
    .headerHamburger.active span:first-child {
        transform: rotate(45deg);
    }
    
    .headerHamburger.active span:last-child {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .heroBannerContent {
        margin-left: 60px;
    }
    .portfolioMapLeft {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .portfolioMapFlex {
        flex-wrap: wrap;
    }
    
    .portfolioMapRight {
        width: 100%;
    }
    .filterEstateSingle {
        width: 100%;
    }
    .homeNewsSliderNavigation .swiper-button-prev {
        left: 40%;
    }
    .homeNewsSliderNavigation .swiper-button-next {
        right: 40%;
    }
    .topFooterLeft {
        width: 100%;
    }
    
    .topFooterRight {
        width: 100%;
        margin: 20px 0px;
    }
    
    .bottomFooterFlex {
        flex-wrap: wrap;
    }
    
    .bottomFooterLeft {
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }
    
    .bottomFooterRight {
        width: 100%;
    }
    
    .bottomFooterRight ul {
        justify-content: center;
    }
    .capabilitiesFlex {
        gap: 20px;
    }
    .homeCapabilitiesMain {
        max-width: 100%;
    }
    .capabilitiesSingleSlide {
        width: 45%;
    }
    .overviewFlex {
        margin: 0px 0px 0px;
    }
    
    .homeOverviewContent {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .overviewBox {
        width: 100%;
    }
    .topFooterFlex {
        padding: 50px 0px 50px;
    } 
    .footerTopLeftFlex {
        flex-direction: column-reverse;
    }
    
    .footerSitemap {
        width: 100%;
        margin-top: 30px;
    }
    
    .topFooterRight {
        margin: 30px 0px 0px;
    }
    
    .footerSocialList {
        margin-top: 30px;
    }
    
    .footerSitemap ul {
        gap: 15px 35px;
    }
    .footerLogo {
        width: 40%;
    }
    .ourMissionDotsAfter {
        display: none;
    }
    .contactLeft {
        padding: 20px 20px;
    }
    
    .contactRight {
        padding: 20px 20px;
    }
    .capSecSingle {
        width: 48%;
    }
    .capSecFlex {
        gap: 20px;
    }
    .capSecSection {
        padding: 40px 0px 30px;
    }
    .listingSignle {
        width: 46%;
    }
    .newsUpdatesSingle {
        width: 48%;
    }
    .homeNewsSlider .owl-prev {
        left: 41%;
    }
    
    .homeNewsSlider .owl-next {
        right: 41%;
    }
	.contactInvestor {
		position: absolute;
		top: 0;
	    right: 50px;
	}
	h1 {
        font-size: 36px;
    }
	.heroBannerContent{
        margin-top: 100px;
		margin-left: 40px;
		padding-right: 20px;
    }
	.teamNewSlider {
		flex-direction:column;
}
.item {
    width: 100%;
}
}

@media only screen and (min-width: 601px) {
    .mobileMenu {
        display: none !important; 
        opacity: 0;
        visibility: hidden;
    }
    .bottomFooterLeft p br {
        display: none;
    }
	h1 {
    font-size: 32px;
}
	
}

@media only screen and (max-width: 600px) {
		.mobileMenuNav ul li a::after {
	   position: absolute;
	   left: 0;
	   bottom: -7px;
	   right: 0;
	   margin: auto;
	   transition: .4s ease-in-out;
	   content: "";
	   background: var(--white);
	   width: 0;
	   height: 2px;
	}
	.mobileMenuNav ul li a:hover::after{
		width:100%;
	}
	.mobileMenuNav ul li a
	{
		position:relative;
	}
	.contactOptionList .contactOptionSingle:first-child img {
   		 height: 20px;
	}
	.contactOptionNumMail a {
    	font-weight: 400;
    	font-size: 13px;
	}
	.contactFormField{
		    margin: 0 0 25px;
	}
	.contactOptionNumMail {
    	margin-top: 5px;
	}
	.contactIntro p {
   		 margin: 10px 0px 0px;
	}
	span.wpcf7-list-item-label {
    	font-size: 16px;
	}
	.contactFormSubmit{
		margin-bottom:0;
	}
	.leftAfter {
    	padding-bottom: 10px;
	}
	.contactIntro {
    	margin-bottom: 15px;
	}
	.contactOptionSingle{
		margin-bottom: 30px;
	}
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 30px;          
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    h6 {
        font-size: 12px;
    }
    
    p {
        font-size: 14px;
    }
    
    a {
        font-size: 14px;
    }
    .headerNav {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .contactInvestor {
        display: none;
    }
    
    .mobileMenu {
        position: absolute;
        left: 0;
        top: 63px;
        width: 100%;
/*         background: #fff; */
		background: #023202;
        display: none;
        height: auto;
        padding: 0 0 20px;
        width: 100vw;
        margin: 0 -20px;
/* 		border-top: 1px solid #fff; */
		height: 100vh;
    }
    
    .mobileMenuNav ul li {
        text-align: center;
        margin: 20px 0px;
    }
    
    .mobileMenuNav ul li a {
        color: #fff;
        font-size: 16px;
    }
    
    .mobileMenuContact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .headerContact {
        width: 100%;
        text-align: center;
        margin-right: 0px;
        margin-bottom: 10px;
    }
    
    .headerInvestor {
        width: 100%;
        text-align: center;
    }
    
    .headerContact a, .headerInvestor a {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
        min-width: 154px;
    }
    
    .headerContact a, .headerInvestor a {
        border: 1px solid var(--deep-fir);
        color: var(--deep-fir);
        min-height: 33px;
        min-width: 165px;
    }
    
    .heroBannerContent {
        margin-left: 40px;
    }
    .homeOverviewSection {
        padding: 50px 0px;
    }
    
    .homeOverviewMain {
        max-width: 100%;
    }
    
    .overviewBox {
        margin: 40px 0px 0px;
        padding: 30px 20px;
    }
    
    .overviewSingleBox {
        width: 100%;
    }
    
    .overviewSingleBox:not(:last-child) {
        margin-bottom: 20px;
    }
    
    .homeTeamSection {
        padding: 50px 0px;
    }
    
    .teamSliderContainer, .capabilitiesSliderContainer {
        max-width: 100%;
        margin: 40px auto 0px;
    }
    
    .teamMemberContent {
        min-height: auto;
    }
    
    .teamSliderNavigation .swiper-button-prev, .teamSliderNavigation .swiper-button-next {
        top: auto;
        bottom: -40px;
    }
    
    .teamSliderNavigation .swiper-button-prev {
        left: 38%;
    }
    
    .teamSliderNavigation .swiper-button-next {
        right: 38%;
    }
    
    .teamSliderNavigation {
        margin: 30px 0px 0px;
    }
    
    .homeCapabilitiesSection {
        padding: 40px 0px 80px;
    }
    
    .capabilitiesSlider {
        padding: 0px;
    }
    
    .capabilitiesSliderNavigation .swiper-button-prev, .capabilitiesSliderNavigation .swiper-button-next {
        top: auto;
        bottom: -60px;
    }
    
    .capabilitiesSliderNavigation .swiper-button-prev {
        left: 38%;
    }
    
    .capabilitiesSliderNavigation .swiper-button-next {
        right: 38%;
    }
    
    .homePortfolioSection {
        padding: 50px 0px;
    }
    
    .filetrEstateImage {
        width: 100%;
    }
    
    .filterEstateSpecs {
        width: 100%;
        padding: 20px 20px;
        text-align: center;
    }
    
    .filterEstateSpecs h5 {
        font-size: 16px;
        text-align: left;
    }
    
    .estateUnitBuiltFlex {
        margin: 20px 0px 0px;
    }
    
    .estateUnit, .estateBuilt {
        width: 48%;
    }
    
    .estateUnitValue {
        margin: 15px 0px 0px;
    }
    
    .filterEstateSection {
        padding: 0 0 50px;
    }
    
    .homenewsSection {
        padding: 60px 0px 80px;
    }
    
    .homeNewsSliderContainer {
        margin: 50px 0px 0px;
    }
    
    .homeNewsSlideInner {
        height: 420px;
    }
    
    .homeNewsSliderNavigation .swiper-button-prev {
        left: 38%;
    }
    
    .homeNewsSliderNavigation .swiper-button-next {
        right: 38%;
    }
    .topFooterFlex {
        padding: 40px 0px 0px;
    }
    
    .topFooterLeft .footerColHeading {
        max-width: 100%;
    }
    
    .footerSitemap {
        margin: 30px 0px 0px;
    }
    
    .footerSitemap ul {
        display: block;
    }
    
    .footerSitemap ul li {
        margin-bottom: 10px;
    }
    
    .footerContact {
        margin: 40px 0px 0px;
        flex-wrap: wrap;
    }
    
    .footerContactSingle {
        width: 100%;
    }
    
    .bottomFooterRight ul li a {
        font-size: 12px;
    }
    
    .topFooterRight {
        margin: 40px 0px 20px;
    }
    
    .footerNewsletter {
        margin: 20px 0px 0px;
    }
    .capabilitiesSingleSlide {
        width: 100%;
    }
    .footerLogo {
        max-width: 300px ;
    }
    .footerSitemap ul li {
        width: 100%;
    }
    .estateUnit, .estateBuilt {
        width: 100%;
    }
    
    .estateUnit h6 {
        text-align: left;
    }
    .teamNewSlider .owl-prev {
        left: 0px;
    }
    
    .teamNewSlider .owl-next {
        right: 0px;
    }
    
    .bottomFooterLeft p a {
        font-size: 13px;
    }
    .footerSocialList {
        margin: 20px 0px 0px;
    }
    .footerLogo {
        width: 70%;
    }
    .aboutIntroSection {
        padding: 50px 0px;
    }
    
    .aboutIntroLeft {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .aboutIntroRight {
        width: 100%;
    }
    
    .aboutLeftPara {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .aboutIntroBottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .aboutIntroRightLogo {
        width: 100%;
    }
    
    .ourMissionSection {
        padding: 50px 0px;
    }
    
    .ourMissionInner {
        background: transparent;
        margin: 40px 0px 0px;
    }
    
    .ourMissionImage {
        top: 0px;
    }
    .contactLeft {
        width: 100%;
    }
    
    .contactRight {
        width: 100%;
    }
    .capSecSingle {
        width: 100%;
    }
    .listingSignle {
        width: 100%;
    }
    .newsUpdatesSingle {
        width: 100%;
    }
    .executiveTeamSection {
        padding: 40px 0px;
    }
    
    .executiveTeamMain .sectionIntro p {
        max-width: 100%;
    }
    
    .teamNewSlider .owl-dots {
        bottom: -40px;
    }
    .teamNewSlider .owl-prev, .teamNewSlider .owl-next {
/*         top: auto; */
        bottom: -50px;
    }
    
    .teamNewSlider .owl-next {
        right: 30%;
    }
    
    .teamNewSlider .owl-prev {
        left: 30%;
    }
    .topFooterRight {
        margin: 0px 0px 20px;
    }
    .footerContact {
        margin: 20px 0px 0px;
    }
    .bannerSocialList ul li:not(:last-child) {
        margin-bottom: 5px;
    }
    .bannerSocialList {
        margin: 0;
    }
    .portfolioSlider .owl-nav .owl-prev, .portfolioSlider .owl-nav .owl-next {
        top: -15px;
    }
    /*.listingLearnMore {*/
    /*    text-align: center;*/
    /*}*/
    .listingLearnMore a {
        margin: 0 auto;
        width: auto;
        display: inline-block;
    }
    .portfolioIntroRight a {
        font-size: 12px;
    }
    .portfolioIntroRight a span {
        margin-left: 3px;
    }
    .portfolioIntroLeft {
        margin-bottom: 20px;
    }
    
    .portfolioIntroFlex {
        align-items: flex-end;
    }
        .homeNewsSlider .owl-prev {
        left: 31%;
    }
    
    .homeNewsSlider .owl-next {
        right: 31%;
    }
    .whiteBtn, .greenBtn {
        padding: 15px 20px;
    }
    .teamNewSlider .owl-prev i, .teamNewSlider .owl-next i {
        font-size: 20px;
        font-weight:900;
    }
    .portfolioIntroRight a span {
        margin-left: 6px;
        font-size: 20px;
        display: inline-flex;
    }
    .portfolioSlider .owl-nav button i {
        font-size: 20px;
        font-weight:900;
    }
    .homeNewsSlider button i {
        font-size: 20px;
    }
    .teamNewSlider .owl-next {
        right: 40%;
    }
    .teamNewSlider .owl-prev {
        left: 40%;
    }
    .homeNewsSlider .owl-next {
        right: 40%;
    }
    .homeNewsSlider .owl-prev {
        left: 40%;
    }
    .footerSocialList ul {
        margin: 5px 0px 2px;
    }
    .footerLogo {
        width: 100%;
        max-width: 70%;
        margin: 0 auto;
    }
    span.line {
        height: 110px;
    }
    .bannerSocialList{
        top: 55px;
    }
    .heroBannerSection {
        height: auto;
/*         padding: 180px 0 120px; */
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: 0;
    }
    .owl-carousel .owl-nav button.owl-next{
        right: 0;
    }
    .whiteBtn, .greenBtn, .contactFormSubmit button{
        min-width: 165px;
        min-height: 53px;
    }
    /* .homenewsSection .portfolioIntroFlex{
        flex-direction: column;
        align-items: baseline;
        gap: 50px;
    } */
    /*.homenewsSection a.text-upper{*/
    /*    position: relative;*/
    /*    top: 11px;*/
    /*}*/
    .portfolioIntroLeft {
        margin-bottom: 35px;
    }
    .portfolioIntroRight {
        text-align: right;
    }
    .portfolioIntroFlex {
        display: block;
    }
    
    .homeNewsSliderContainer {
        margin: 20px 0px 0px;
    }
    
    .portfolioMapContainer {
        margin: 20px 0px 0px;
    }
/*     .bannerSocialList {
        top: -30px;
    } */
    .bannerSocialList ul li a {
        width: 25px;
        height: 25px;
    }
    span.line {
        height: 155px;
    }
    .bannerSocialList ul {
        margin: 12px 0px 0px;
    }
    .heroBannerContent h1 {
        margin: 20px 0px 30px;
    }
	.contactOptionHeadingIcon img {
    width: 20px;
}
	.mobileMenuNav ul li a{
		border-color: #fff;
		color: #fff;
	}
	
	

	
	.headerInvestor a{
		color: #fff !important;
		border-color: #fff !important;
	}
	.teamMemberContent {
		max-width: calc(100% - 60px);
		margin: 0 auto;
	}
	.teamNewSlider .owl-prev, .teamNewSlider .owl-next{
		bottom: 60px !important;
		outline: none !important;
	}
	.mobileMenuContact {
    position: relative;
		right:0;
}
	.contactFormField.message
	{
		margin: 25px 0;
		width: 100%;
		padding: 13px 10px;
		border: 0px;
		outline: none;
		font-family: 'Casper Regular';
		color: var(--mine-shift);
		border-radius: inherit;
		position: relative;
		color: var(--mine-shaft);
		font-weight: 500;
		font-size: 16px;
	}
	.heroBannerContent{
        margin-top: 40px;
    }
	.heroBannerContent {
		margin-left: 25px;
	}
	h1 {
		font-size: 30px;
	}
	.capSecContent h4 br {
		display: none;
	}
	.home-banner-item img, .home-banner-item {
    width: 100%;
    height: 50vh;
    display: block;
}
	section#homeBanner {
    margin-top: 80px;
}
	.heroBannerContent {
    margin-top: 0px;
}
}


/*********************************
            Media Queries
*********************************/




section.inner-news {
    padding: 5% 0;
}

.nws-main h4 {margin-bottom: 30px;}

.nws-main img {
    width: 100%;
    height: fit-content;
    max-width: 50%;
}

.nws-main p {
    line-height: 32px;
}

span.blc {
    color: #000;
}

.nws-main i {
    color: #000;
}

.nws-main  .newsdate {
    margin: 20px 0 10px;
}

/* .contactOptionNumMail a br {
    display: none;
} */


span.wpcf7-list-item-label {
    position: relative;
}

.wpcf7-list-item-label::before {
    position: absolute!important;
    left: 5px;
    top: 7px;
    bottom: 0;
    width: 9px;
    height: 5px;
    border: solid #fff;
    content: "";
    border-width: 0px 0px 2px 2px;
    transform: rotate(-45deg);
    transition: .4s ease-in-out;
    z-index: 2;
}
.wpcf7-list-item-label::after {
    border: 1px solid #3c3c3c;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    /* transition: .3s ease-in-out; */
}




.listingsLoader {}

div#tabs-content {
    position: relative;
}

div#tabs-content .listingsLoader {
    position: absolute;
    inset: 0;
    margin: auto;
    /* background: #fff; */
    width: 100%;
    z-index: 8;
    height: 100%;
    display: none;
}

.listingsLoaderInner {
    width: 100px;
    margin: auto;
    position: relative;
    z-index: 9;
}

div#tabs-content .listingsLoader::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;
    filter: blur(1px);
    position: absolute;
    height: 100%;
    z-index: 8;
    background: #ffffff9c;
}
.portfolioMapRight {
    display: none;
}

.portfolioMapLeft {
    width: 100%;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
    margin-bottom: 15px!important;
}
span.wpcf7-list-item-label::before {
    position: absolute;
    left: 5px;
    top: 7px;
    bottom: 0;
    width: 9px;
    height: 5px;
    border: solid #fff;
    content: "";
    border-width: 0px 0px 2px 2px;
    transform: rotate(-45deg);
    transition: .4s ease-in-out;
    z-index: 2;
}
.contactCheckbox input:checked + span.wpcf7-list-item-label::after {
    background: #023202;
	    border-color: #023202;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #000;
    text-decoration: none;
}

.footerSocialList {
    text-align: end;
}
@media(max-width: 400px){
	.mobileMenu{
		top: 50px;
	}
	.homeOverviewContent a {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 20px;
}
	.overviewFlex {
    gap: 0px;
}
/* 	.heroBannerContent {
    margin-top: 40px;
} */
	h1 {
    font-size: 18px;
}
	.heroBannerContent h1 {
    margin: 10px 0px 15px;
}
	.heroBannerContent a {
    height: 40px;
    padding: 10px 20px 10px;
}
	.whiteBtn {
    min-width: 165px;
    min-height: 40px;
}
	a {
    font-size: 12px;
}
	
}
ul li.current-menu-item a::after{
     width: 100%;
}


.footerSocialList ul li a img {
    width: 15px;
}


/* .home-banner-item img {
    transform: scale(1);
    transition: all ease 5s;
}
.owl-item.active.center .home-banner-item img {
    transform: scale(1.5);
    transition: all ease 5s;
} */
.sectionIntro {
    display: block;
}


section.portfolioMainSection {
    display: none;
}

.estateUnit {
    flex-wrap: wrap;
}

.estateUnit h6 {
    width: 45%;
}

h6.black.text-upper {
    text-transform: lowercase;
}

h6.black.text-upper b {
    text-transform: uppercase;
}


section#propertiess .capSecImage {
        width: 48%;
}


section#propertiess .capSecContent {
    width: 48%;
}
section#propertiess .newCapFlex .capSecSingle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
section#propertiess p.mine-shaft {
/*     overflow: auto;
    height: 270px;
	padding: 0 20px 0 0; */
	overflow: hidden;
    height: 270px;
    padding: 0 20px 0 0;
    width: 100%;
/*     text-align: justify; */
}

/* section#propertiess .newCapFlex .capSecSingle .capSecContent {
    padding: 28px 0px 20px 60px;
} */

@media only screen and (max-width: 767px) {
	
section#propertiess .capSecImage {
        width: 100%;
}


section#propertiess .capSecContent {
    width: 100%;
}
	section#propertiess .newCapFlex .capSecSingle .capSecContent {
    padding: 20px 20px 20px 20px;
}
	.newCapFlex .capSecSingle {
    width: 100%;
    display: block;
}
.newCapFlex .capSecSingle .capSecContent {
    padding: 20px 20px;
}
}




