/* font family "EXO"*/
@font-face {
  font-family: 'Exo';
  src: url(../fonts/Exo-Regular.otf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Exo';
  src: url(../fonts/Exo-Light.otf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Exo-Italic';
  src: url(../fonts/Exo-Light-Italic.otf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Exo';
  src: url(../fonts/Exo-Medium.otf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Exo';
  src: url(../fonts/Exo-Bold.otf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Exo';
  src: url(../fonts/Exo-Black.otf);
  font-weight: 900;
  font-style: normal;
}


/* font family "BebasKai" */

@font-face {
  font-family: "BebasKai";
  src: url(../fonts/BebasKai.ttf);
  font-weight: normal;
  font-style: normal;
}

/* font family "HalyardMicro" */
@font-face {
  font-family: 'HalyardMicro';
  src: url(../fonts/HalyardMicBd.otf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "HalyardMicro";
  src: url(../fonts/HalyardMicSemBd.otf);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'HalyardMicro';
  src: url(../fonts/HalyardMic-Regular.otf);
  font-family: 400;
  font-style: normal;
}

@font-face {
  font-family: 'HalyardMicro';
  src: url(../fonts/HalyardMicLt.otf);
  font-weight: 300;
  font-style: normal;
}

:root {
  --primary-font: 'Exo';
  --heading-font: 'HalyardMicro';
  --heading-secondary: "BebasKai";
  --primary-color: #002a3a;
  --secondary-color: #f58d6c;
  --text-color: #fff;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  background-color: var(--primary-color);
  color: var(--text-color);
}

.body_fixed {
  overflow: hidden !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--heading-font);
  color: var(--text-color);
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all .3s linear;
}

.subhead {
  font-family: var(--heading-secondary);
}

.container_lrg {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  padding: 34px 0 26px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 99;
}

.nav_brand { 
  max-width: 350px;
}

.menue_togle {
  display: flex;
  align-items: center;
}

a.toggle_ {
  font-size: 24px;
  display: block;
  width: fit-content;
  margin-right: 60px;
}

a.toggle_:hover {
  color: var(--secondary-color);
}

.homeInit a.toggle_ {
  margin-right: 0;
}

/* =============
Mega Menu Css
================ */

.headerMega {
  display: flex;
  justify-content: space-between;
  max-width: 1820px;
  padding: 20px 15px;
  margin: 0 auto;
}

.megaMenu,
.mainmenushow {
  position: fixed;
  overflow-y: scroll;
  display: none;
  background-color: var(--primary-color);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.megaMenu {
  display: block;
}

.closeMega {
  max-width: 32px;
  max-height: 32px;
  padding: 10px;
  display: flex;
  border-radius: 100%;
  border: 1px solid var(--text-color);
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  cursor: pointer;
  font-size: 20px;
  transition: all .3s linear;
}

.closeMega i {
  transition: all .3s linear;
}

.closeMega:hover {
  border-color: var(--secondary-color);
}

.closeMega:hover i {
  transform: rotate(360deg);
  color: var(--secondary-color);
}

.megaMenuContent {
  max-width: 1820px;
  margin: 30px auto 50px;
}

.flexMega {
  display: flex;
  justify-content: space-between;
}

.megaItem {
  flex-basis: 33.33%;
  max-width: calc(100% / 3 - 5px);
  min-height: calc(100vh - 120px);
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  position: relative;
}

a.megaItem {
  text-decoration: none;
}

.megaItem h2 {
  display: flex;
  width: fit-content;
  padding: 40px 50px;
  height: 100%;
  flex-direction: column;
  font-family: 'BebasKai';
  font-size: 80px;
  font-weight: normal;
  font-style: normal;
  line-height: 80px;
  letter-spacing: normal;
  color: #fff;
}

.megaItem h2 span {
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-family: "BebasKai";
  font-size: 80px;
  font-weight: normal;
  letter-spacing: normal;
  color: rgba(216, 216, 216, 0);
}

.megaTextBootom h2 {
  justify-content: flex-end;
}

.has_iframe iframe {
  width: 100%;
  height: 100%;
}

.has_iframe h2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.itemSpec {
  height: calc(50% - 2.5px);
  padding: 30px 48px 46px 70px;
  background-color: var(--text-color);
}

.itemSpec:first-child {
  margin-bottom: 5px;
}

.itemSpec h2 {
  display: block;
  font-family: 'BebasKai';
  font-size: 80px;
  font-weight: normal;
  line-height: 80px;
  color: #002b3c;
  padding: 0;
  margin: 0;
  width: fit-content;
  height: auto;
}

.itemSpec h2 span {
  -webkit-text-stroke: 1px #a3b2b9;
  font-family: 'BebasKai';
  font-size: 80px;
  font-weight: normal;
  letter-spacing: normal;
  color: #fff;
}

.speces {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.speces a {
  display: block;
  width: fit-content;
  font-family: "HalyardMicro";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: normal;
  letter-spacing: -0.44px;
  color: #8a7a56;
}

.speces a:hover {
  text-decoration: none;
}

.speces a:after {
  content: "|";
  padding: 0 5px;
}

.speces a:last-child:after {
  display: none;
}

.itemSpec h3 {
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: #002a3a;
  margin-top: 15px;
}

.itemSpec p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #002c3e;
}

.itemSpec a.permalink {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-top: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #002b3c;
  display: flex;
  align-items: center;
}

.itemSpec a.permalink .line {
  background-color: var(--primary-color);
  margin-right: 15px;
}

.itemSpec a:hover {
  text-decoration: none;
}

.itemSpec figure {
  margin: 0;
  margin-top: 20px;
}

.itemSpec img {
  max-width: 100%;
  max-height: 80%;
  padding-top: 14px;
}

/* =============
Mega Menu Css End
================ */
span.m_head,
a.m_head {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
}

.primay_btn {
  background-color: var(--secondary-color);
  padding: 24px 40px;
  color: var(--text-color);
  font-family: "HalyardMicro";
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primay_btn .line {
  margin-right: 15px;
}

.primay_btn:hover {
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--primary-color);
}

.content_container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.navlocationSearch {
  width: fit-content;
  margin-right: auto;
  margin-left: 60px;
  flex-basis: 500px;
  border: solid 2px #1a3f4e;
}

.navlocationSearch input {
  height: 75px;
  width: 100%;
  border: none;
  background-color: transparent;
  font-family: 'HalyardMicro';
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  color: #d2cec1 !important;
}

.navlocationSearch input::placeholder {
  color: #d2cec1;
}

.navlocationSearch svg {
  width: 17px;
  height: 20px;
}

.navlocationSearch svg path {
  fill: var(--secondary-color);
}

.navlocationSearch i {
  color: #1a3f4e;
}

.navlocationSearch input:focus {
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.navlocationSearch .input-group-text {
  background-color: unset;
  border: none;
}

/* about main section */
.about_main {
  position: relative;
  padding: 90px 0;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.about_main:after {
  content: " ";
  position: absolute;
  background-color: #000;
  opacity: .4;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;  
  z-index: 1;
}

.about_main .content_container,
.about_main .descp_tag {
  position: relative;
  z-index: 2;
}

.about_main h1 {
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  line-height: 72px;
  letter-spacing: -1.88px;
  color: #fff;
  max-width: 90%;
}

.descp_tag {
  width: fit-content;
  padding: 60px 24px;
  color: var(--text-color);
  background-color: var(--secondary-color);
}

.descp_tag h2 {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
}

.descp_tag {
  width: fit-content;
  padding: 60px 20px;
  color: var(--text-color);
  background-color: var(--secondary-color);
  position: absolute;
  right: 0;
  bottom: -40px;
}

.descp_tag h2 {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
}

.about_content {
  position: relative;
  padding: 130px 0 60px;
}

.aboutContenTOp h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: #d1cec2;
}

.aboutContenTOp p {
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  line-height: 42px;
  letter-spacing: -0.75px;
  color: #d1cec2;
}

.aboutContenTOp {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(209, 206, 194, 0.1);
}

.aboutContentBottom {
  padding-top: 50px;
}

.aboutContentBottom p {
  font-family: 'Exo';
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -0.63px;
  color: #d1cec2;
}

.c_flexItem {
  flex: 50%;
  max-width: calc(100% / 2 - 25px);
}

.aboutfeatures {
  padding: 30px 0 130px;
}

.aboutfeatures .d-flex {
  justify-content: space-between;
}

.c_flexItem {
  min-height: 820px;
  padding: 50px 70px;
}

.aboutfeatures .c_flexItem {
  min-height: unset;
}


.managementfeatures .c_flexItem {
  min-height: unset;
}

.aboutfeatures .container {
  max-width: 1550px;
}

.c_flexItem h2 {
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-style: normal;
  line-height: 100px;
  letter-spacing: normal;
  color: #fff;
  margin-bottom: 6px;
}

.c_flexItem h2 span {
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-family: 'BebasKai';
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  color: rgba(216, 216, 216, 0);
}

.c_flexItem h3 {
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.94px;
  color: #fff;
}

.c_flexItem p {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.56px;
  color: #fff;
}

/* ==============
Footer Css Start
 ============== */

footer {
  padding: 80px 0;
  position: relative;
}

footer .container {
  max-width: 1520px;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer_wrap>div {
  width: fit-content;
}

.footer_brand {
  max-width: 200px;
}

.footer_contact h2 {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.75px;
  color: #d1cec2;
  margin-top: 0;
  margin-bottom: 18px;
}

.footer_contact li {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: -0.56px;
  color: #d1cec2;
}

.footer_contact li a:hover {
  color: var(--secondary-color);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_menu {
  display: flex;
  padding-right: 30px;
}

.footer_menu1 {
  margin-right: 90px;
}

.footer_menu li a {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: #d1cec2;
  text-decoration: none;
}

.footer_menu li a:hover {
  color: var(--secondary-color);
}

.footer_boottomCanvas {
  position: absolute;
  right: 0;
  max-width: 300px;
  z-index: -1;
  bottom: 0;
}

.copyRight {
  margin-top: 80px;
}

.copyRight p {
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  line-height: 35px;
  margin-bottom: 0;
  letter-spacing: -0.44px;
  color: #d1cec2;
  text-align: center;
}

.scrollTop,
.scrollBottom {
  background-color: var(--secondary-color);
  padding: 20px 10px;
  cursor: pointer;
  position: absolute;
}

.scrollTop p,
.scrollBottom p {
  color: var(--primary-color);
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0;
  writing-mode: vertical-lr;
}

.scrollTop {
  background-color: var(--secondary-color);
  padding: 40px 15px;
  cursor: pointer;
  position: absolute;
  top: -200px;
  right: 120px;
}

.scrollBottom {
  bottom: 30px;
  right: 15px;
  transition: all .6s linear;
  transform: translateX(200%);
}

.scrollshow {
  transform: translateX(0);
}

/* ==============
Footer Css End
 ============== */

/* ==============
new proper page css
 ============== */

.main_property {
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}

.main_property h1 {
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-style: normal;
  line-height: 110px;
  letter-spacing: normal;
  color: var(--text-color);
}

.main_property .content_container {
  width: 100%;
}

.contentArea {
  padding: 0 0 60px;
  position: relative;
}

.main_property .location {
  background-color: var(--text-color);
  padding: 24px 30px;
  color: var(--primary-color);
  position: absolute;
  bottom: -40px;
}

.main_property .location span {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #002b3c;
}

.main_property .location span i {
  color: var(--secondary-color);
  margin-right: 15px;
}

.content_property {
  position: relative;
  padding: 120px 0 80px;
}

.content_property h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: #d1cec2;
}

.content_property p {
  max-width: 920px;
  font-size: 24px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: -0.75px;
  color: #d1cec2;
}

.content_property table a:visited,
.content_property table a:hover,
.content_property table a:focus,
.content_property table a:active {
  color: var(--secondary-color);
  cursor: pointer;
  text-decoration: none;
}

.propertDetail {
  position: relative;
  padding: 80px 0;
}

.propertDetail .container {
  max-width: 1820px;
}

.propertLocation {
  padding: 80px 0;
  height: 100%;
  background-color: #efeeea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.propertyDetail {
  padding: 80px;
  background-color: var(--text-color);
  height: 100%;
}

.propertDetail h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: var(--primary-color);
}

.selectDetail {
  display: flex;
  flex-wrap: wrap;
  margin: 30px -10px 40px;
}

.itemDetail {
  flex: 0 0 auto;
  width: 33.33%;
  margin: 10px 0;
  padding: 0 10px;
}

.item_inner {
  padding: 30px 20px;
  border: solid 1px rgba(0, 42, 58, .1);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  cursor: pointer;
}

.item_inner:hover,
.active_detail .item_inner {
  background-color: var(--secondary-color);
}

.itemDetail span {
  display: block;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -0.63px;
  text-align: center;
  color: var(--primary-color);
}

.itemDetail p {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  text-align: center;
  color: var(--primary-color);
}

.propertyBtn {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.propertyBtn>a {
  flex: 0 0 50%;
  max-width: calc(100% / 2 - 11px);
  display: flex;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: var(--text-color);
  text-decoration: none;
  padding: 24px;
  border: solid 2px #f58d6c;
  background-color: var(--text-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
}

.propertyBtn a span {
  margin-right: 10px;
}

.propertyBtn>a:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.propertyBtn a:first-child {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.propertyBtn a:first-child:hover {
  background-color: var(--text-color);
  color: var(--secondary-color);
}

.propertyBtn a:first-child:hover .line {
  background-color: var(--secondary-color);
}

.line {
  height: 2px;
  background-color: var(--text-color);
  width: 40px;
  display: inline-block;
}

.watreMark h1 {
  opacity: 0.1;
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-size: 239px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -7.47px;
  text-align: center;
  color: rgba(216, 216, 216, 0);
}

.watreMark {
  position: relative;
  width: 100%;
  display: block;
  padding-top: 90px;
}

.watreMark h1 {
  opacity: 0.1 !important;
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-size: 239px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -7.47px;
  text-align: center;
  color: rgba(216, 216, 216, 0);
  position: absolute;
  right: 0;
  bottom: -90px;
}

.descriptionProperty {
  padding: 60px 0;
}

.descriptionProperty h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  text-align: center;
  color: #d1cec2;
}

.descriptionProperty p {
  max-width: 1000px;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -0.63px;
  text-align: center;
  color: #d1cec2;
}

.content {
  width: fit-content;
  margin: 0 auto;
}

.slider_H {
  position: relative;
  padding: 60px 0;
}

.slider_H .container {
  max-width: 1820px;
}

.slider_H h2 {
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #d1cec2;
  width: fit-content;
  margin-left: auto;
}

.slider_wrap {
  position: relative;
  padding-bottom: 100px;
  padding-right: 84px;
}

.slider_wrap:after {
  content: "";
  position: absolute;
  width: 700px;
  height: 85%;
  z-index: -1;
  right: 0;
  background-color: var(--secondary-color);
  top: 200px;
}

.top_text h3 span {
  -webkit-text-stroke: 1px #d1cec2;
  background-color: rgba(209, 206, 194, 0);
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: rgba(209, 206, 194, 0);
}

.top_text h3 {
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 100px;
  letter-spacing: normal;
  color: #d1cec2;
}

.slierItem {
  position: relative;
}

.top_text {
  position: absolute;
  top: 20px;
  right: 200px;
}

.slider_wrap ul.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider_wrap ul.slick-dots button {
  display: none;
}

.slider_wrap ul.slick-dots {
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 16%;
}

.slider_wrap ul.slick-dots li {
  width: 50px;
  height: 2px;
  background-color: rgba(0, 42, 58, .3);
  margin-right: 20px;
  cursor: pointer;
}

.slider_wrap ul.slick-dots li.slick-active {
  background-color: var(--primary-color);
}

.neighbourhood {
  position: relative;
  padding: 80px 0;
}

.neighbourhood h2 {
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  text-align: center;
  color: #d1cec2;
  margin-bottom: 20px;
}

.neighbourhood p {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -0.63px;
  color: #d1cec2;
}

.mapArea {
  padding: 40px 0 0;
  height: 570px;
}

.mapArea img {
  width: 100%;
  height: 100%;
}

.mapArea iframe {
  width: 100%;
  height: 100%;
}

/* =============
property page css End 
====================*/

/* ======================
Index Page Css
========================= */
.initialHome header {
  position: absolute;
  width: 100%;
  padding: 50px 70px;
  left: 0;
}

.initialHome header .menueInt a {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.initialHome header .menueInt a:hover {
  color: var(--secondary-color);
}

.initialHome {
  min-height: calc(100vh - 100px);
  max-width: 1820px;
  margin: 50px auto;
  padding: 0 15px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all .5s linear;
}

.maincontentInit {
  position: absolute;
  bottom: 100px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: fit-content;
}

.maincontentInit h2 {
  font-family: 'BebasKai';
  font-size: 90px;
  font-weight: normal;
  font-style: normal;
  line-height: 90px;
  letter-spacing: normal;
  text-align: center;
  color: var(--text-color);
}

.maincontentInit h2 span {
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-family: 'BebasKai';
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  color: rgba(216, 216, 216, 0);
}

.maincontentInit a {
  background-color: var(--secondary-color);
  width: fit-content;
  display: flex;
  margin: 0 auto;
  padding: 29px 64px;
  color: var(--text-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  align-items: center;
  text-decoration: none;
  margin-top: 70px;
}

.maincontentInit a .line {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin-right: 30px;
}

.initalHide {
  width: 0;
  padding: 0;
  min-height: 0;
}

.initalHide .container {
  display: none;
}

.hMain {
  visibility: hidden;
  opacity: 0;
  transition: all .5s linear;
  z-index: -1;
  overflow: hidden;
}

.mainshow {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.wrap_mainC {
  max-width: 1820px;
  margin: 0 auto 50px;
}

.flex_MainS {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.flex_itemM {
  flex: 0 0 33.3%;
  max-width: calc(100% / 3 - 3px);
  position: relative;
  cursor: pointer;
  transition: all .3s linear;
}

.itemContent {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 180px);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-decoration: none;
  padding: 30px 40px;
  cursor: pointer;
}

.itemContent:hover {
  text-decoration: none;
}

.itemContent h2 {
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-style: normal;
  line-height: 100px;
  letter-spacing: normal;
  color: #002b3c;
}

.heading_bottom .itemContent h2 {
  width: fit-content;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.itemContent h2 span {
  -webkit-text-stroke: 1px #fff;
  background-color: rgba(216, 216, 216, 0);
  font-family: 'BebasKai';
  font-size: 120px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: rgba(216, 216, 216, 0);
}

.video_btn {
  position: absolute;
  min-width: 90px;
  min-height: 90px;
  background: #fff;
  border-radius: 100%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  right: 30px;
}

.video_btn:hover {
  text-decoration: none;
  transform: scale(1.2);
}

h2.white {
  color: var(--text-color);
}

.spcesListHM {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  background-color: var(--primary-color);
  cursor: auto;
  opacity: 0;
  padding-top: 40px;
}

.tenant_hM .spcesListHM {
  top: 0;
  height: 100%;
  padding: 0;
}

.tenant_hM.ExpandSpces .spcesListHM {
  padding: 0;
}

.ExpandSpces {
  background: unset;
  /*flex-basis: 80%;*/
  flex-basis: 50%;
  max-width: calc(100% - 33.3%);
}

.ExpandSpces .spcesListHM {
  opacity: 1;
  padding-bottom: 30px;
}

/*.homeSpaceHover .video_hM,
.homeSpaceHovervideo .spaces_hM,
.homeSpaceHovertenant .video_hM {
  flex: 0;
  width: 0;
  max-width: 0;
  padding: 0;
  overflow: hidden;
}*/

.homeSpaceHovervideo .spaces_hM {
  flex: 0;
  width: 0;
  max-width: 0;
  padding: 0;
  overflow: hidden;
}

.homeSpaceHover .video_hM, .homeSpaceHovertenant .video_hM {
  flex: 30;
  width: 0;
  padding: 0;
}

.spaceHflexList {
  display: flex;
  height: 100%;
}

.flexItemMSI {
  flex-basis: 60%;
  max-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.featuredSpace {
  flex-basis: 40%;
  max-width: 100%;
  height: 100%;
  position: relative;
  padding-right: 60px;
}

.featuredSpace img {
  width: 100%;
  height: auto;
}

.flexSmallSL {
  flex-basis: 50%;
  max-width: 100%;
  padding-right: 30px;
  height: 100%;
  position: relative;
}

.smalSWAP {
  width: 100%;
  height: 50%;
  position: relative;
  display: block;
  transition: all .3s linear;
}

.smalSWAP img {
  width: 100%;
  height: 100%;
}

.smalSWAP a {
  position: absolute;
  bottom: -10px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  background-color: #f58d6c;
  color: var(--primary-color);
  text-decoration: none;
}


.flexSmallSL:first-child .smalSWAP:first-child {
  height: 300px;
  width: 450px;
  margin-bottom: 32px;
}

.flexSmallSL:first-child .smalSWAP {
  /*height: 240px;
  width: 260px;*/
  height: 300px;
  width: 450px;
  margin-left: auto;
  margin-top: 32px;

}

.flexSmallSL:first-child .smalSWAP:nth-child(2) a {
  bottom: -10px;
  min-width: 60px;
  min-height: 60px;
  left: auto;
  /*right: 20px;*/
}

.flexSmallSL:nth-child(2) .smalSWAP:first-child {
  height: 240px;
  width: 260px;
  margin-bottom: 36px;
  margin-top: 130px;
}

.flexSmallSL:nth-child(2) .smalSWAP:nth-child(1) a {
  top: -30px;
  min-width: 60px;
  min-height: 60px;
  bottom: auto;
  right: 20px;
  left: auto;
}

.flexSmallSL:nth-child(2) .smalSWAP:nth-child(2) a {
  left: 20px;
}

.flexSmallSL:nth-child(2) .smalSWAP:nth-child(2) {
  height: 360px;
}

.allspaceCat {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  width: fit-content;
}

.allspaceCat:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.allspaceCat .line {
  margin-right: 20px;
}

.featuredTag {
  padding: 22px 14px;
  background-color: var(--secondary-color);
  width: fit-content;
  position: absolute;
  top: -40px;
  right: 80px;
}

.featuredTag a {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  color: #002a3a;
  text-decoration: none;
  writing-mode: vertical-lr;
  transform: rotate(180px);
}

/* ==============
spaces page csss
================ */
.countProperties {
  position: relative;
}

.flex-CountP {
  display: flex;
}

.filter_flex {
  flex-basis: 30%;
  padding: 50px 40px;
  background-color: var(--text-color);
  transition: all .3s linear;
}

.arrowToggle {
  flex-basis: 44px;
  background-color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: solid 1px #e5e9eb;
  color: var(--primary-color);
  cursor: pointer;
}

.map_flex_ {
  flex-basis: calc(80% - 44px);
  max-height: 450px;
}

.map_flex_ iframe {
  width: 100%;
}

.arrowRotate i {
  transform: rotate(180deg);
}

.mapExpand .filter_flex {
  flex-basis: 0;
  width: 0;
  padding: 0;
  overflow: hidden;
  transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mapExpand .filter_flex>* {
  display: none;
}

.mapExpand .map_flex_ {
  max-width: 100%;
  flex-basis: 100%;
}

.total_proprties {
  opacity: 0.5 !important;
  font-family: ' HalyardMicro';
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  display: block;
  margin-bottom: 15px;
  letter-spacing: -0.63px;
  color: #002b3c;
}

.locationAD h3 {
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 4;
  letter-spacing: -0.63px;
  color: #002b3c;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: rgba(0, 42, 58, .1);
}

.propertyAttribute {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.itemAtt {
  flex: 0 0 auto;
  width: 50%;
  padding: 10px;
}

.itemInner {
  padding: 20px 10px;
  /*border: solid 1px #e5e9eb;*/
}

.itemInner p {
  margin: 0;
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #002b3c;
  text-align: center;
}

.filter_flex .primay_btn {
  margin-top: 50px;
}

.spaceListing {
  position: relative;
  padding: 80px 0 30px;
  overflow: hidden;
}

.spaceListing .container {
  max-width: 1340px;
}

.flexSpaces {
  display: flex;
  margin: 0 -50px;
  flex-wrap: wrap;
}

.itemSpace {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 10px 50px;
}

.thumbnailSpace {
  position: relative;
  padding-left: 10px;
}

.thumbnailSpace img {
  max-height: 200px;
}

.spaceArea {
  position: absolute;
  bottom: -20px;
  left: 0;
  padding: 9px 20px;
  background-color: #d2cec1;
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  text-align: center;
  color: #002a3a;
}

.spaceMeta {
  padding: 30px;
  background-color: var(--text-color);
  margin-left: 10px;
}

.spaceMeta h2 {
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.75px;
  color: #002a3a;
  margin-top: 15px;
}

.spaceMeta p.civicAddress {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: #002a3a;
  margin-top: 15px;
}

.spaceMeta a {
  font-family: 'HalyardMicro';
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #f58d6c;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
}

.spaceMeta a .line {
  background-color: var(--secondary-color);
  margin-right: 20px;
}

/* map flex */
.megahovermap .megagallary,
.megagalleryparent .mapmega {
  flex: 0;
  max-width: 0;
  overflow: hidden;
}

.expandmapmega {
  flex-basis: calc(100% - 33.33%);
  max-width: 100%;
}

.properyDetailPrint {
  display: none;
}

/* gallery layout */
.masonry {
  column-count: 3;
  column-gap: 15px;
}

.masonry img {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 15px;
}


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: 9999;
}


.preloader .loader {
  width: 100%;
  max-width: 350px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.preloader img {
  transition: all .3s linear;
  animation: fadeout 6s infinite linear;
}

@keyframes fadeout {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.box {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  box-sizing: border-box;
  overflow: hidden;
}

/* 
.box:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.5s;
  pointer-events: none;
}

.box:hover:before {
  left: -50%;
  transform: skewX(-5deg);
}


.box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;

}

.box span:nth-child(1) {
  transform: rotate(0deg);
}

.box span:nth-child(2) {
  transform: rotate(90deg);
}

.box span:nth-child(3) {
  transform: rotate(180deg);
}

.box span:nth-child(4) {
  transform: rotate(270deg);
}


.box span:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #50dfdb;
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: right;

  }

  100% {
    transform: scaleX(0);
    transform-origin: right;

  }


} */

@keyframes dot-dot-dot {

  0%,
  60%,
  100% {
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
  }

  30% {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
  }
}

.popup {
  padding: 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: var(--primary-color);
  display: none;
}


._close {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 30px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  transition: all .3s linear;
}

._close:hover {
  background-color: var(--text-color);
  color: var(--secondary-color);
}

.video-pop ._close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 9;
}

.video-pop ._close:hover {
  transform: rotate(180deg);
}

.video-pop .video {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-pop iframe {
  width: calc(100vw - 80px);
  height: calc(100vh - 140px);
}

.video-pop video {
  width: calc(100vw - 40px);
  height: calc(100vh - 40px);
  object-fit: cover;
}

/* Menu wrap */
.main_header .menue_togle a {
  margin: 0;
}

.mainmenushow ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menuWrap_hzel {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.mainmenushow ul li {
  width: fit-content;
}

.mainmenushow ul li a {
  font-size: 64px;
  text-transform: capitalize;
  font-weight: 600;
 font-family: 'HalyardMicro';
}

.mainmenushow ul li a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

.primarymenu {
  width: 100%;
  position: relative;
}

.socailMenu {
  position: absolute;
  bottom: 0;
  right: 0;
}

.socailMenu i {
  font-size: 26px;
}

.socailMenu p {
  font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: 'HalyardMicro';
    font-weight: 600;
}

.flex-media {
  display: flex;
}

.flex-media a {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  background-color: rgba(0, 0, 0, .4);
  border-radius: 100%;
  margin-right: 20px;
}

.flex-media a:last-child {
  margin: 0;
}

.flex-media a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
}

@media (min-width:1900px) {
  .spcesListHM {
    overflow: hidden;
  }

  .itemContent {
    min-height: calc(100vh - 170px);
  }

  .headerMega {
    max-width: calc(100% - 80px);
    padding: 30px 0;
  }

  .megaMenuContent,
  .container_lrg,
  .wrap_mainC {
    max-width: calc(100% - 80px);
    margin: 0px auto;
  }

  .initialHome {
    max-width: calc(100% - 80px);
  }

  header {
    padding-left: 0;
    padding-right: 0;
  }

  .megaItem {
    min-height: auto;
    /*height: calc(100vh - 200px);*/
  }

  .itemSpec figure {
    text-align: center;
    height: 74%;
  }

  .itemSpec figure img {
    height: 100%;
  }

  .itemSpec:first-child {
    height: auto;
    min-height: calc(60% - 2.5px);
  }

  .itemSpec:last-child {
    height: calc(40% - 2.5px);
  }
}

@media (min-width:1960px) {
  .maincontentInit {
    bottom: 30vh;
  }

  .maincontentInit h2 {
    font-size: 120px;
    line-height: 120px;
  }

  .itemSpec h2 span,
  .itemSpec h2,
  .megaItem h2,
  .megaItem h2 span {
    font-size: 120px;
    line-height: 120px;
  }

  .itemSpec h3 {
    font-size: 46px;
  }

  .speces a,
  .itemSpec a.permalink {
    font-size: 20px;
  }

  .itemSpec p {
    font-size: 24px;
  }
}


/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--secondary-color);
}

.waves {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 100%;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
/* Corporate Video */
.corporateflextanantVideoes {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  padding-left: 5px;
  justify-content: space-between;
}
.corporatevideotenantliting {
  flex-basis: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}

.corporatevideotenantliting img,
.corporatevideotenantliting video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Tenant vidoes */
.flextanantVideoes {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  padding-left: 5px;
  justify-content: space-between;
}

.videotenantliting {
  flex-basis: 33.33%;
  max-width: calc(100% / 3 - 5px);
  height: 100%;
  position: relative;
}

.videotenantliting img,
.videotenantliting video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.op_1 {
  opacity: 1;
}

.videoBtnant {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  align-items: center;
  border-radius: 100%;
  background-color: #f58d6c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoBtnant:hover {
  background-color: #002b3c;
  color: #f58d6c;
  text-decoration: none;
}

/* Contac Page */
section.maincontact {
  padding-bottom: 30px;
}

@media (min-height:1080px) {
  section.maincontact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.flex__maincontact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flexmaincontact__contentItem {
  flex-basis: calc(58% - 100px);
  padding-left: 120px;
  padding-bottom: 40px;
}

.flexmaincontact__contentItem h1,
.flexmaincontact__contentItem h2 {
  font-size: 120px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 120px;
  letter-spacing: normal;
  color: #fff;
  margin: 0;
  font-family: var(--heading-secondary);
}

.flexmaincontact__contentItem h2 {
  -webkit-text-stroke: 1px #fff;
  line-height: 100px;
  color: transparent;
}

.contact__content {
  margin-top: 30px;
  max-width: 694px;
}

.contact__content p,
.contact_usmail p {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 42px;
  letter-spacing: -0.75px;
  color: #d1cec2;
}

.contact_usmail {
  margin-top: 124px;
}

.contact_usmail p {
  opacity: .5;
  margin-bottom: 10px;
}

.contact_usmail a {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: #d1cec2;
}

.flexmaincontact__formItem {
  flex-basis: 42%;
}

.contact__formarea {
  background-color: var(--text-color);
  padding: 90px 94px 70px 94px;
}

.contact__formarea h2 {
  font-family: var(--heading-font);
  font-size: 31px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.97px;
  color: var(--primary-color);
  margin: 0 0 30px;
}

.form__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.tabItem {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 70px;
  flex: 0 0 auto;
  width: calc(100% / 4 - 10px);
  border: solid 1px rgba(0, 42, 58, .1);
}

.active__tab,
.tabItem:hover {
  border: solid 1px rgba(0, 42, 58, 1);
}

.tabItem a {
  font-family: var(--heading-font);
  display: block;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  text-align: center;
  color: var(--primary-color);
}

.tabItem a:hover {
  text-decoration: none;
}

.contact__formarea form {
  margin-top: 70px;
}

.contact__formarea form input,
.contact__formarea form textarea {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: solid 1px rgba(0, 42, 58, .15);
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  color: var(--primary-color);
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-family: 'HalyardMicro';
}

.contact__formarea form input::placeholder,
.contact__formarea form textarea::placeholder {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.63px;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-family: 'HalyardMicro';
}

.contact__formarea form textarea {
  line-height: 44px;
  background-image: linear-gradient(to bottom, transparent, transparent 42px, rgba(25, 34, 109, .1));
  background-size: 100% 44px;
  background-repeat: repeat-y;
  background-color: transparent;
  border: none;
  resize: none;
}

.contact__formarea form button {
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f58d6c;
  padding: 0;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 0;
  font-family: 'HalyardMicro';
}

.contact__formarea form button .line__submit {
  width: 25px;
  height: 1px;
  margin-right: 10px;
  border: solid 2px #fff;
}

.contact__formarea form button:hover {
  background-color: var(--primary-color);
}

.outerform {
  display: none;
}

.activeform {
  display: block;
}

/* News page css */
.news__body {
  background-color: rgba(0, 42, 58, .9);
}

.newsMain {
  position: relative;
}

.flex__news {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  padding-left: 80px;
}

.newlfex__largeitem,
.newlfex__smallitem {
  flex-basis: 50%;
}

.flex__news picture {
  width: 100%;
  height: 100%;
  display: block;
}

.flex__news img {
  width: 100%;
}

.flex-innernews {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.flex-innernews:last-child {
  margin-bottom: 0;
}

.flexinner__item {
  flex-basis: 50%;
}

.newlarge__content {
  margin-top: 40px;
}

.newlfex__largeitem h2 {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.13px;
  color: #d1cec2;
  margin-bottom: 20px;
}

.newlfex__smallitem h2 {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.75px;
  color: #d1cec2;
  margin-top: 0;
  margin-bottom: 10px;
}

.newlfex__largeitem p {
  max-width: 94%;
}

.flex__news p {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 42px;
  letter-spacing: -0.75px;
  color: #d1cec2;
  margin-bottom: 0;
}

.flex-innernews img {
  max-height: 264px;
}

@media (max-width:1030px) {
  .flex-innernews img {
    max-height: unset;
  }

}

.see__more {
  padding: 19px 0;
  text-align: center;
  background-color: #002a3a;
  margin-top: 36px;
}

.see__more a {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #fff;
  font-family: var(--heading-font);
  display: flex;
  justify-content: center;
  align-items: center;
}

.see__more a i {
  margin-right: 15px;
}

.see__more a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.thumbnail__wrap {
  position: relative;
}

.permalink__news {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  position: absolute;
  right: 3%;
  bottom: -20px;
  font-size: 20px;
}

.permalink__news:hover {
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.flexinner__item .permalink__news {
  right: -4px;
  bottom: -12px;
}
.allSpacesBlock {
    background: #f58d6c;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 550px;
}
.allSpacesBlock a {
    color: #000;
    font-weight: bold;
    font-size: 28px;
    text-decoration: none;
}
.ClsFeaturedSpace {
    background: #F58D6C;
    text-align: center;
    width: 50%;
    margin: auto;
    padding: 10px;
    color: #000;
    font-weight: bold;
}
.rotate90 {
  transform: rotate(-90deg);

  /* Legacy vendor prefixes that you probably don't need... */

  /* Safari */
  -webkit-transform: rotate(-90deg);

  /* Firefox */
  -moz-transform: rotate(-90deg);

  /* IE */
  -ms-transform: rotate(-90deg);

  /* Opera */
  -o-transform: rotate(-90deg);

  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}

@media (min-width:1930px) {
  .flex-innernews img {
    max-height: unset;
  }

  .see__more {
    margin-top: 100px;
  }

  .newsMain {
    padding-top: 60px;
  }
}