/* [reset styles] */
:root 
{
  --bodyfont:'Lato';
  --regularfont:'Cormorant Garamond';
  --mediumfont:'Cormorant Garamond Medium';
  --lightfont:'Cormorant Garamond Light';
}

*{
    box-sizing: border-box;
    margin: 0;
}

@font-face {
    font-family:'Cormorant Garamond';
    src: url('../fonts/Cormorant Garamond Regular.eot');
	  src: url('../fonts/Cormorant Garamond Regular.eot?#iefix') format('embedded-opentype'),
		     url('../fonts/Cormorant Garamond Regular.woff2') format('woff2'),
		     url('../fonts/Cormorant Garamond Regular.woff') format('woff'),
		     url('../fonts/Cormorant Garamond Regular.svg#Cormorant Garamond Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}


@font-face {
    font-family:'Cormorant Garamond Medium';
    src: url('../fonts/Cormorant Garamond Medium.eot');
  	src: url('../fonts/Cormorant Garamond Medium.eot?#iefix') format('embedded-opentype'),
		     url('../fonts/Cormorant Garamond Medium.woff2') format('woff2'),
		     url('../fonts/Cormorant Garamond Medium.woff') format('woff'),
		     url('../fonts/Cormorant Garamond Medium.svg#Cormorant Garamond Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
  font-family:'Cormorant Garamond Light';
  src: url('../fonts/Cormorant Garamond Light.eot');
	src: url('../fonts/Cormorant Garamond Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Cormorant Garamond Light.woff2') format('woff2'),
		url('../fonts/Cormorant Garamond Light.woff') format('woff'),
		url('../fonts/Cormorant Garamond Light.svg#Cormorant Garamond Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family:'Lato';
    src: url('../fonts/Lato Regular.eot');
	src: url('../fonts/Lato Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Lato Regular.woff2') format('woff2'),
		url('../fonts/Lato Regular.woff') format('woff'),
		url('../fonts/Lato Regular.svg#Lato Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2044;
}

body {
    font-family:'Lato';
    padding:0px;
    margin:0px;
    font-size:16px;
    line-height:1.5;
    overflow-x:hidden;
    text-align:justify;
    color:#000;
}
  
ul {
    padding: 0;
    list-style-type: none;
}
  
a {
    text-decoration: none;
    cursor: pointer;
}

.w100{width:100%;}

img {
    max-width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin: 0px;
  }
  /* [/reset styles] */
  
  .p-0{
      padding: 0;
  }
  .m-0{
      margin: 0;
  }
  .mt30px {margin-top:30px;}


*:focus {
    outline: none;
}

*::placeholder {
color: #ccc;
font-family:var(--normalfont);
}
input {font-family:var(--normalfont);}
textarea {font-family:var(--normalfont);}
select:required:invalid {
    color: #fff;
  }
  option[value=""][disabled] {
    display: none;
  }
  option {
    color: black;
  }
select { background-color:#fff;}
.w100 { width:100%;}

.mobiledisplay {display:none !important;}
.desktopdisplay {display:block;}

/** home page popup **/
/*** header open ***/
.tc {text-align:center;}
.w90 {width:90%; margin-left:auto; margin-right:auto;}
.w80 {width:80%; margin-left:auto; margin-right:auto;}

.topheader{background-color:#081c35; border-top:3px solid #e6daab;}
.headerRow {display:flex; justify-content:space-between;}
.logo a {display:flex;}
.logo img {width:170px;}
.topleft 
{
  display:flex;
  justify-content:space-between;
  align-items:center;
}


.closeNav { display:none; cursor:pointer; background:rgb(52 32 11); border: 1px solid rgba(255, 255, 255, 0.08); padding:0.2rem 0.4rem; transition:0.3s cubic-bezier(0.4, 0, 0.2, 1);}
.closeNav i {color:#fff; font-size:25px;}
/**hemberg**/
.menuRow {position:fixed; opacity:0; z-index:1;}
.menuRow.fixed-header {opacity:1;}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background-color:#fff;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color:#fff;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
  height:100vh;
  z-index:99;
}
.menu__btn {
  display:flex;
  align-items:center;
  position:fixed;
  top:40px;
  right:35px;
  width:26px;
  height:26px;
  cursor:pointer;
  z-index:999;
  background-color:#081c35;
  padding:30px;
  border-radius:7px;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display:block;
  position:absolute;
  width:73%;
  height:2px;
  background-color:#fff;
  transition-duration:.25s;
  left:8%;
}
.menu__btn > span::before {
  content: '';
  top:-8px;
  width:88%;
}
.menu__btn > span::after {
  content:'';
  top:8px;
  width:88%;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 110px 0;
  list-style: none;
  background-color:#081c35;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  transition-duration: .25s;
}

.menu__item {
  display:block;
  padding:14px 24px;
  color:#fff;
  font-size:24px;
  text-decoration: none;
  transition-duration: .25s;
  font-family: var(--regularfont);
}
.menu__item:hover {
  background-color:#17375e;
  color:#d4c590;
}
.menu__item.active {background-color:#17375e; color:#d4c590;}

.menu__box  li{position:relative; text-transform:capitalize; border-bottom:1px solid #103058;}
.menu__box  li:first-child{border-top:1px solid #103058;}
.menu__box  li .sub-menu {display:none;}
.menu__box  li .menu__item img {width:16px; margin-left:15px; filter: invert(100);}
.menu__box  li .sub-menu .menu-item
{
  padding:10px 40px;
  color:#fff;
  font-size:18px;
  text-decoration: none;
  transition-duration: .25s;
  display:block;
  font-family: var(--regularfont);
  background-color:#214674;
}
.menu__box  li:hover .sub-menu
{
  display:block;
  background-color:#fff;
}
.menu__box  li:hover .sub-menu .menu-item 
{
  display:block;
}
.menu__box  li:hover .sub-menu .menu-item:hover 
{
  background-color:#1a243f;
  color:#fff;
}
.menu__item:hover img {filter: invert(100);}
/**hemberg**/
/***navigation open***/
.nav-menu {display:flex;}
.nav-links {display:flex;}
.nav-links li {list-style:none;}
.nav-links li a {
    font-family: var(--regularfont);
    color:rgb(242, 242, 242);
    font-size:20px;
    font-weight: 500;
    text-decoration: none;
    padding: 9px 40px;
    transition: 0.3s;
    text-transform: uppercase;
}
.nav-links li a:hover {color:#d4c590;}
.nav-links li a.active {color:#d4c590;}
.nav-links .drop-menu {
    position:absolute;
    width:240px;
    line-height:45px;
    top:90px;
    opacity: 0;
    visibility: hidden;
    box-shadow:rgba(0, 0, 0, 0.15) 0px 6px 10px;
    background:#233e60;
}
.nav-links li:hover .drop-menu
{
  transition: all 0.3s ease;
  top:90px;
  opacity: 1;
  visibility: visible;
  z-index:9;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  font-size:18px;
}
/***navigation close***/

.aboutsection 
{
  display:flex;
  flex-direction:row;
  justify-content:center;
  margin-top:30px;
  margin-bottom:30px;
}
.aboutsection .aboutLeft 
{
  width:50%; 
  position:relative;
  display:flex;
}
.aboutsection .aboutLeft img {width:100%;}
.abouthd 
{
  position:absolute;
  top:15%;
  left:10%;
  width:80%;
  color:#fff;
  display:flex;
  flex-direction:column;
  text-transform:uppercase;
}
.abouthd span:first-child { font-family:var(--lightfont); font-size:55px; line-height:45px;}
.abouthd span:nth-child(2) { font-family: var(--mediumfont); font-weight:600; font-size:62px; line-height:60px;}
.abouthd span:last-child { font-family: var(--regularfont); font-size:30px; line-height:32px;}

.aboutsection .aboutRight {
  width:50%;
  display:flex;
  background: #0a6989 url(../images/white-turtle.png) no-repeat;
  background-position: -49px 269px;
  padding:0px 100px;
  justify-content: center;
  align-items: center;
  color:#fff;
  line-height:30px;
  flex-direction:column;
  position:relative;
}

.aboutsection .aboutRight a 
{ background-color:#d2c99c;
  color:#3c2e23;
  text-transform:uppercase;
  font-weight:bold;
  font-size:20px;
  padding:15px 100px;
  margin-top:60px;
  transition:0.3s;
}

.whiteturtle 
{
  position:absolute;
  bottom:0px;
  transform: rotate(64deg);
  right:75px;
}
.whiteturtle-one
{
  position:absolute;
  top:15px;
  transform:rotate(12deg);
  right:100px;
}


.btn
{
  background-color:#241404;
  color:#fff;
  padding:8px 20px;
  border-radius:6px;
  text-transform:uppercase;
  font-size:12px;
  line-height:20px;
  transition:0.3s;
}
.btn:hover 
{
  background-color:#6e3b07;
}

/**property highlight open**/
.property-highlight-container { display:flex; flex-direction:column;}
.heading
{
  margin-left:auto;
  margin-right:auto; 
  padding:30px 0px;
  display:flex;
  flex-direction:column;
  text-align:center;
  font-family:var(--lightfont);
  font-size:50px;
  line-height:45px;
  text-transform:uppercase;
  justify-content:center;
}
.heading span {font-family:var(--mediumfont);}
.nameplace-row 
{
  display:flex; 
  background:url(../images/highlight-bg.png) no-repeat;
  background-position:left top;
  padding:80px 0px;
  flex-direction:row;
  justify-content:space-between;
}
.hotelc-left 
{
width:30%;
display:flex;
flex-direction:column;
justify-content:center;
padding:0px 50px;
}
.hotelc-left .heading
{
  text-align: left;
  margin-left: inherit;
}

.downBtn
{
background-color: #d2c99c;
    color: #fff;
    padding: 20px;
    width: 271px;
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 26px;
}
.downBtn i {font-size:36px;}
.downBtn:hover {background-color:#ada375;}

.hotelc-right {width:66%;}
.bODslider .slick-dots {bottom:-20px;}
.bODslider .slick-arrow { z-index:auto;}
.bODslider { padding-bottom:100px;}
.bODslider div {padding-right:10px;}
.bODslider .slick-slide {position:relative;}
.bODslider .slick-slide img {width:80%; margin-top:auto; margin-bottom:auto; padding:40px 0px;}
.bODslider .slick-slide.slick-current img {width:95%; padding:0px;}
.bODslider .slick-slide .info
{
  visibility:hidden;
  position:absolute;
  z-index:9;
  top:10%;
  width:70%;
  left:50%;
  transform:translateX(-50%);
}
.bODslider .slick-slide.slick-current .info { visibility:visible;}
.bODslider .slick-slide .info .inhding 
{
  font-family:var(--lightfont);
  font-size:40px;
  line-height:40px;
  color:#fff;
  text-transform:uppercase;
  text-align:center;
  margin-bottom:120px;
}
.bODslider .slick-slide .info img {margin-left:auto; margin-right:auto; width:100%;}
.bODslider .slick-prev { background:url(../images/arrow-left.png) no-repeat; width:90px; height:89px; bottom:-70px; left:20%; }
.bODslider .slick-next { background:url(../images/arrow-right.png) no-repeat; width:90px; height:89px;  bottom:-70px; right:50%;}
/**property highlight close**/

/**location highlights open**/
.location-highlights 
{
  background: url(../images/location-bg.png) no-repeat;
  padding:60px 0px;
  background-size:100%;
}
.location-highlights-container
{
  width:90%;
  margin-left:auto;
  margin-right:auto;
  background-color: #fffbec;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  box-shadow:0px 0px 40px 6px #000;
}
.location-hig-left { width:45%; display:flex; flex-direction:column; padding-left:30px; padding-top:100px;}
.location-hig-left .heading
{
  margin-left: inherit;
  text-align: left;
}
.locatioonSliderRow { margin-top:30px;}
.milestones-nav .slick-slide
{ 
border: 1px solid #000; 
color:#000; 
text-align:center;
padding:12px 5px;
line-height:22px;
text-transform:uppercase;
margin:0px 5px;
cursor:pointer;
font-weight:bold;
}
.milestones-nav .slick-active.slick-current
{
  background-color:#d2c99c;
  border:1px solid #d2c99c;
  color:#fff;
}
.milestones-for{margin-top:30px; background-color:#fffbec;}
.milestones-for .slick-active ul {padding-left:25px;}
.milestones-for .slick-active ul li {list-style:disc;}

.location-hig-right { width:50%; display:flex; position:relative;}
.location-hig-right .submap {position:absolute; width:90%; left:0px; top:50%; transform:translateY(-50%);}
/**location highlights close**/

.explore-container 
{
  padding:60px 0px;
}
.explorehding {position:relative; text-align:center; padding:60px 0px;}
.explorehding .tgold {position:absolute; top:50%; transform:translateY(-50%);}
.floorPlan-img {display:flex; flex-direction:row; justify-content:space-between; align-items:center;}

.fp-1 { width:30%;}
.fp-2 { width:23%;}
.fp-3 { width:22%;}
.fp-4 { width:25%;}


.floorPlan-img-left {width:59%;}
.floorPlan-img-right {width:39%;}
.floorplan-dec 
{ width:80%; 
  margin-left:auto; 
  margin-right:auto;
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  margin-top:40px;
}


/**features box open**/
.feature-box-first 
{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:space-between;
}
.feature-box-first .box1 {width:62%; display:flex; position:relative; margin-bottom:8px;}
.feature-box-first .box2 {width:37%; display:flex; position:relative; margin-bottom:8px;}
.feature-box-first .box3 {width:33%; display:flex; margin-bottom:8px; position:relative;}
.feature-box-first .box3 .hding.b3 {font-size:34px;}
.feature-box-first .box3 .hding {height:82px;}
.boxCnt-overlay
{
  position:absolute;
  top:6%;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  color:#fff;
  width:70%;
}
.boxCnt-overlay img {margin-left:auto; margin-right:auto; margin-bottom:30px;}
.hding 
{ text-align:center;
  font-family:var(--lightfont);
  font-size:46px;
  line-height:40px;
  text-transform:uppercase;
  margin-bottom:30px;
}
.boxCnt-overlay ul li { list-style:disc; font-size:17px; margin-bottom:20px;}
/**features box close**/




/***** gallery css open****/
.photo-gallery-container 
{
  width:90%;
  margin-left:auto;
  margin-right:auto;
  padding:60px 0px;
}
.photo-gallery-container .heading {text-align:left;}

.photogallery-box 
{
  width:100%;
  margin-top:30px;
  display:flex;
  justify-content:space-between;
}
.photogallery-left {width:32%; display:flex; flex-direction:column;}
.photogallery-left .row1 {width:100%; display:flex;  overflow:hidden;}
.photogallery-left .row1 img {transition: 3s ease;}
.photogallery-left .row1:hover img {transform:scale(1.1);}

.photogallery-left .row2 {width:100%; display:flex; margin-top:20px;  overflow:hidden;}
.photogallery-left .row2 img {transition: 3s ease;}
.photogallery-left .row2:hover img {transform:scale(1.1);}


.photogallery-right {width:65%; display:flex; flex-direction:column; justify-content:space-between;}
.photogallery-right .row3 {width:100%; display:flex;  overflow:hidden;}
.photogallery-right .row3 img {transition: 3s ease;}
.photogallery-right .row3:hover img {transform:scale(1.1);}

.photogall-btml { margin-top:20px; display:flex; flex-direction:row; justify-content:space-between;}
.galbtm-left {width:48%; display:flex; flex-direction:column;}
.galbtm-right {width:48%; display:flex; flex-direction:column;  overflow:hidden;}
.galbtm-right img {transition: 3s ease;}
.galbtm-right:hover img {transform:scale(1.1);}

.rwtt {display:flex; justify-content:flex-start; align-items:flex-start; overflow:hidden;}
.rwtt img {transition: 3s ease;}
.rwtt:hover img {transform:scale(1.1);}

/***** gallery css close****/











/***contactUs***/
.contactUs 
{
  background: url(../images/getIntourch-bg.png);
  padding:50px 0px;
}
.contactbox {display:flex; flex-direction:row; justify-content:space-between; margin-top:30px;}
.contact-left {width:50%;}
.contact-left p {font-family:var(--mediumfont); font-size:23px; margin-top:60px;}
.contact-left iframe {width:100%; margin-top:40px; height:380px;}

.contact-right {width:45%; background-color:#fff; padding:30px;}
.contact-right .heading span {font-size:40px;}
.contact-right form {margin-top:10px; display:flex; flex-direction:column;}
.contact-right form .rows {display:flex; flex-direction:column; position:relative; margin-top:17px;}
.contact-right form .rows p {text-transform:capitalize;}
.contact-right form .rows input
{
  padding:8px;
  line-height:20px;
  border:2px solid #939393;
  width:100%;
}
.contact-right form .rows textarea
{
  padding:8px;
  line-height:20px;
  border:2px solid #939393;
  width:100%;
  min-height:120px;
}
.contact-right form .rows span
{
  position:absolute;
  bottom:-17px;
  font-size:14px;
  color: crimson;
}
.contact-right form .rows button
{
    background-color: #d2c99c;
    color: #000;
    font-family: var(--mediumfont);
    font-size: 24px;
    text-transform: uppercase;
    border: navajowhite;
    padding: 7px;
    line-height: 34px;
    cursor: pointer;
}
.contact-right form .rows button:hover
{
  background-color:#b9af7d;
}
footer {background-color: #081c35; color:#fff; text-align:center; padding:20px 0px;}

/** projects css open **/
.porject-container 
{
  width:100%;
  padding:50px 0px;
}

.pro-head 
{ 
  display:flex; 
  flex-direction:row;
  justify-content: space-around;
  align-items:center;
}

.pro-head .pheading
{
  width:44%;
  font-family:var(--lightfont);
  font-size:80px;
  line-height:70px;
  display:flex;
  flex-direction:column;
  text-transform:uppercase;  
  text-align:right;
}
.pro-head .pheading span {color:#b5a258;}
.pro-head .protext
{
  width:50%;
}

.projectImage-container 
{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  flex-direction:row;
  align-items: flex-start;
}

.projectImage-container-inn {width:47%;}

.project-images 
{ 
  width:100%;
  position:relative;
  display:flex;
  align-items:flex-start;
  margin-bottom:50px;
  box-shadow:0px 0px 15px 2px #d1d1d1;
}
.project-images img {width:100%;}
.pro-cnt-box 
{
  width:87%;
  position:absolute;
  bottom:100px;
  background-color:#fff;
  left:50%;
  transform:translateX(-50%);
  padding:50px 30px;
  display:flex;
  flex-direction:column;
  text-align:center;
  transition: height 0.3s ease
}
.headingpro 
{
  display:flex;
  text-align:center;
  flex-direction:column;
  font-size:26px;
  line-height:32px;
  text-transform:uppercase;
  font-weight:bold;
}
.headingpro span {font-weight:lighter;}
.project-images .pro-cnt-box .overlay {display:none; margin-top:20px;}
.project-images .pro-cnt-box .overlay p {text-align:left; margin-top:5px;}
.project-images .pro-cnt-box .overlay p span {font-weight:bold;}
.project-images .pro-cnt-box:hover .overlay {display:block;}
.buttonRow {width:100%; margin:10px 0px 60px 0px; text-align:center;}
.buttonRow a 
{
  font-size:18px;
  text-transform:uppercase;
  color:#000;
  font-weight:bold;
  border:1px solid #e1dfdf;
  padding:13px 50px;
  transition: 0.5s ease;
}
.buttonRow a:hover 
{
  background:#233e60;
  color:#b5a258;
  border:1px solid #233e60;
}
/** projects css close **/

/** contact us css open**/
.contact-us-container 
{
  background: url(../images/starfish.png) repeat-x;
  
}
.contacttop
{
  display:flex;
  padding:170px 0px 100px 0px;
  justify-content:flex-start;
  align-items:center;
}
.contacthd 
{
  font-family:var(--mediumfont);
  font-size:80px;
  text-transform:uppercase;
  text-align:left;
  line-height:70px;
  display:flex;
  flex-direction:column;
}
.contacthd span {color:#b5a258;}

.formContainer {display:flex; flex-direction:row; box-shadow:0px 0px 26px 1px #dbd7d5;}
.formContainer-left {width:40%; background-color:#efebda; padding:80px;}
.iconRow {display:flex; flex-direction:row; align-items:flex-start; margin:80px 0px;}
.iconRow .icontext {display:flex; flex-direction:column; margin-left:20px; line-height:20px;}
.iconRow .icontext span {color:#b5a258; font-weight:bold; font-size:25px; margin-bottom:10px;} 

.formContainer-right {width:60%; background-color:#fff; padding:80px;}
.formHeading {font-family:var(--lightfont); font-size:45px; text-transform:uppercase;}
.formContainer-right form 
{
  margin-top:10px;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:space-between;
}
.width45{width:48%;}
.formContainer-right form .rows {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 17px;
}
.formContainer-right form .rows p 
{
  text-transform: capitalize;
  font-size:18px;
}
.formContainer-right form .rows p sup {color:#f00;}
.formContainer-right form .rows input 
{
  padding: 8px;
  line-height: 20px;
  border: 2px solid #ecebe4;
  width: 100%;
}
.formContainer-right form .rows select 
{
  padding: 8px;
  line-height: 20px;
  border: 2px solid #ecebe4;
  width: 100%;
}
.formContainer-right form .rows span 
{
    position: absolute;
    bottom: -17px;
    font-size: 14px;
    color: crimson;
}
.formContainer-right form .rows textarea {
    padding: 8px;
    line-height: 20px;
    border: 2px solid #ecebe4;
    width: 100%;
    min-height: 120px;
}
.formContainer-right form .rows button 
{
    background-color: #d2c99c;
    color: #000;
    font-family: var(--mediumfont);
    font-size: 24px;
    text-transform: uppercase;
    border: navajowhite;
    padding: 7px;
    line-height: 34px;
    cursor: pointer;
}

.contactMap {width:100%; margin-top:60px;}
.contactMap iframe {width:100%;}

/** about us open **/
.about-us-banner 
{
  width:100%;
  position:relative;
}
.aboutBigh {display:none;}

.aboutsmalliMG 
{
  position:absolute;
  left:0px;
  top:48%;
}  
.abooutUs-content 
{
  position:absolute;
  width:80%;
  left:50%;
  transform:translateX(-50%);
  top:15%;
  display:flex;
  flex-direction:column;
}
.abooutUs-content .arrowIcon 
{
 position: absolute;
 right: 25px;
 border: 1px solid #6d839c;
 border-radius: 50%;
 width:250px;
 height:250px;
 top:45px;
 display:flex;
 flex-direction:column;
 justify-content:center;
 align-items:center;
 cursor:pointer;
}
.aboutImg {margin-left:auto; margin-right:auto; position:relative; z-index:9;}
.aboutHeading
{
  font-family:var(--lightfont);
  font-size:90px;
  line-height:80px;
  text-transform:uppercase;
  color:#fff;
  display:flex;
  flex-direction:column;
  text-align:right;
  width:56%;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:20px;
}
.aboutHeading span{color:#b5a258;}
.aboutpagecntbox 
{
  width:80%;
  background:url(../images/abouttexter.png);
  margin-left:auto;
  margin-right:auto;
  padding:80px;
  margin-top:-80px;
}
.aboutpagecntbox p {margin-top:50px; text-align:center;}
.whatup-icon-row a
{
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  margin-top:50px;
}
.whatup-icon-row a img {margin-right:15px;}
.whatup-icon-row a span
{
  color:#8e886b;
  font-size:25px;
}

.aboutrow {width:100%; height:26vh; float:left;}

.mission-row 
{ 
  width:75%; 
  margin-left:auto; 
  margin-right:auto; 
  display:flex; 
  flex-direction:row; 
  padding:0px 0px 100px 0px;
 
}
.mission-row .lbox 
{
  width:33%;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.mission-row .lbox img {width:100%;}
.mission-row .lbox:first-child{background-color:#031e3d;}
.mission-row .lbox:nth-child(2){background-color:#096888;}
.mission-row .lbox:last-child{background-color:#d0cab3;}
.a-hding
{
  font-family:var(--lightfont);
  font-size:40px;
  line-height:40px;
  text-transform:capitalize;
  margin-top: 50px;
  padding: 0px 30px !important;
}
.mission-row .lbox p {padding:40px 30px 70px 30px;}

.otherproject-container 
{
  width:92%;
  margin-left:auto;
  display:flex;
  flex-direction:column;
  padding:20px 0px 60px 0px;
  position:relative;
}
.about-turtleGold {position:absolute; left:50%; top:-17px; transform:rotate(55deg);}
.otherproject-container .heading
{
  text-align:left;
  margin-left:initial;
  margin-right:auto;
}
.abtslider {margin:40px 0px; padding-bottom:100px;}
.abtslider .slick-arrow { z-index:auto; }
.abtslider .slick-slide {position:relative;}
.abtslider .slick-slide img {width:95%;}
.abtslider .slick-dots {bottom:-50px;}
.abtslider .slick-slide p {
    position:absolute;
    bottom:50px;
    width:90%;
    left:50%;
    transform:translateX(-50%);
    color:#e6daab;
    text-transform:uppercase;
    font-size:29px;
    line-height:35px;
    display:flex;
    flex-direction:column;
}
.abtslider .slick-slide p span {color:#fff;}
.aboutSlider {background:url(../images/aboutus-pro-bg.png) repeat-x; background-position:bottom;}
.aboutSlider .slick-prev { background:url(../images/a-left.png) no-repeat; width:90px; height:90px; bottom:-90px; left:70%; }
.aboutSlider .slick-next { background:url(../images/a-right.png) no-repeat; width:90px; height:90px;  bottom:-90px; right:10%;}
/** about us close **/

.photo-gallery-slider {margin-bottom:60px;}
.photo-gallery-slider .slick-dots {bottom:-38px;}


@media screen and (min-device-width:2560px) and (max-device-width:3024px)
{
   .menu__box {width:400px;}
   .aboutrow {height:10vh;}

   .aboutSmlh {display: none !important;}
  .aboutBigh {display: block !important; width:100%;}
}

@media screen and (min-width:1920px)
{
   .menu__box {width:400px;}
  .aboutrow {height:20vh;}
  .abooutUs-content {top: 20% !important;}
  .aboutpagecntbox {padding:120px 160px !important; margin-top:-50px;}
  .aboutSmlh {display:none;}
  .aboutBigh {display:block; width:100%;}
}

@media screen and (min-width:1680px)
{
  .aboutrow {height:25vh;}
  .abooutUs-content {top:15%;}
  .aboutpagecntbox {padding:60px 120px; margin-top:-50px;}
  .aboutSmlh {display:none;}
  .aboutBigh {display:block; width:100%;}
  
}  

@media screen and (max-width:1280px)
{
  .aboutrow {height:35vh;}
}

@media screen and (max-width:1024px)
{
  .nameplace-row {flex-direction:column; padding:40px 0px;}
  .hotelc-left {width:65%; margin-left:auto; margin-right:auto; text-align:center; margin-bottom:30px;}
  .hotelc-left .heading {text-align:center; margin-left:auto; width:100%; flex-direction:row;}
  .hotelc-right {width:100%;}
  .bODslider .slick-slide img {width:100%;}
  .bODslider div {padding:10px;}
  .bODslider .slick-slide img {padding:0px;}
  .bODslider .slick-slide.slick-current img {width:100%;}
  .bODslider .slick-slide .info {visibility:visible;}
  .location-hig-left {padding-top:0px;}
  .explorehding .tgold {display:none;}
  .aboutsection .aboutRight {padding:0px 35px;}
  .boxCnt-overlay {top:7%;}
  .boxCnt-overlay img {margin-bottom:10px; width:65px;}
  .feature-box-first .box3 .hding {font-size:22px; line-height:26px;}
  .feature-box-first .box3 .hding.b3 {font-size:22px; line-height:26px;}  
  .feature-box-first .box3 .hding {height:50px;}  
  .boxCnt-overlay ul li {font-size:16px;}
  .floorplan-dec {width:95%;}
  /***about***/
  .abooutUs-content {top:5%;}
  .abooutUs-content {width:90%;}
  .aboutpagecntbox {width:100%;}
  .pro-head .pheading {font-size:55px; line-height:55px;}
  .formContainer-left {padding:15px;}

  .aboutrow {height:45vh;}

}

@media screen and (max-width:768px)
{
  .logo img {width:136px;}
  .nav-links li a {font-size:18px; padding:9px 20px;}
  .aboutsection {flex-direction:column;}
  .aboutsection .aboutLeft {width:100%;}
  .aboutsection .aboutRight {width:100%; padding:30px;}
  .property-highlight-container .heading {width:90%; margin-left:auto; margin-right:auto;}
  .property-highlight-container p {width:90%; margin-left:auto; margin-right:auto;}
  .location-highlights {background-size:cover;}
  .location-hig-left {width:50%;}
  .location-hig-right {width:45%;}
  .explorehding img {width:90%;}
  .floorplan-dec {flex-wrap:wrap;}
  .floorplan-dec ul {width:50%;}
  .mission-row {width:90%; margin-top:380px;}
  .about-turtleGold {display:none;}
  .a-hding {font-size:34px; line-height:30px;}
  .formContainer {flex-direction:column;}
  .formContainer-left {width:100%; padding:25px;}
  .iconRow {margin:40px 0px;}
  .formContainer-right {width:100%; padding:40px 80px;}
  .aboutrow {height:57vh;}
    .bODslider .slick-prev {left:20%;}
  .bODslider .slick-next {right:20%;}

  .aboutSlider .slick-prev {left:20%; }
  .aboutSlider .slick-next {right:20%;}

}


@media screen and (max-width:700px)
{
  .mobiledisplay {display:block !important;}
  .desktopdisplay {display:none !important;}

  .topleft {display:none;}
  .logo img {width:110px;}
  .abouthd {text-align:left;}
  .whiteturtle {display:none;}
  .heading {font-size:35px; line-height:35px;}
  .hotelc-left {width:90%; padding:0px;}
  .property-highlight-container .heading {width:100%; flex-direction:column;}
  .bODslider .slick-slide .info {width:90%;}
  .bODslider .slick-slide .info .inhding {font-size:20px; line-height:22px; min-height:100px; margin-bottom:0px;}
  .nameplace-row {padding:140px 0px 60px 0px;}
  .location-highlights-container {flex-direction:column;}
  .location-hig-left {
        width: 90%;
        padding-left: 0px;
        margin-left: auto;
        margin-right: auto;
    }
  .location-hig-right {width:100%;}
  .location-hig-right .submap {left:5%;}
  
  .feature-box-first {flex-direction:column;}
  .feature-box-first .box1 {width:100%;}
  .feature-box-first .box2 {width:100%;}
  .feature-box-first .box3 {width:100%;}
  .contactbox {flex-direction:column; margin-top:0px;}
  .contact-left {width:100%;}
  .contact-right {width:100%;}
  .menuRow {opacity:1;}
  .menu__btn {top:15px; right:15px;}
  
  .aboutsmalliMG {display:none;}
  .aboutHeading {font-size:35px; line-height:35px; flex-direction:row;}
  .abooutUs-content .arrowIcon 
  {
    z-index:99; 
    background-color:rgb(255 255 255 / 94%);
    width:80px;
    height:80px;
    top:0px;
  }
  .aboutpagecntbox {padding:50px 20px; margin-top:40px;}
  
  .mission-row {margin-top:-200px; padding:20px 0px; flex-direction:column;}
  .mission-row .lbox {width:100%;}
  .about-turtleGold {display:none;}
  .otherproject-container {margin-right:auto;}
  .aboutSlider {background-size: contain;}
  .abtslider .slick-slide {margin:0px 5px;}
  .abtslider .slick-slide img {width:100%;}
  .abtslider .slick-slide p {font-size:20px; line-height:21px; bottom:10px; width:90%;}

  .projectImage-container {flex-direction:column;}
  .project-images {width:100%;}
  .projectImage-container-inn {width:100%;}
  .pro-head {flex-direction:column;}
  .pro-head .pheading 
  {
    width:100%;
    font-size:27px;
    line-height:28px;
    flex-direction:column;
    justify-content:center;
    margin-bottom:20px;
    align-items:center;
  }
  .pro-head .pheading span {margin-left:5px;}
  .pro-head .protext {width:100%;}

  .contacttop {flex-direction:column; padding:130px 0px 20px 0px;}
  .contacthd {font-size:30px; line-height:30px;}

  .formContainer-right {padding:25px;}
  .formHeading {font-size:30px;}
  .width45 {width:100%;}
  .floorPlan-img {flex-direction:column;}
  .fp-1 {width:100%;}
  .fp-2 {width:100%;}
  .fp-3 {width:100%;}
  .fp-4 {width:100%;}
  .floorPlan-img-left {width:100%;}
  .floorPlan-img-right {width:100%;}
  .floorplan-dec ul {width:45%; margin-left:auto; margin-right:auto; font-size:14px; text-align:left;}
  .hding {font-size:30px; line-height:30px;}
  .boxCnt-overlay img {margin-bottom:25px; width:85px;}
  .boxCnt-overlay {top:10%; width:85%;}
  .feature-box-first .box3 .hding.b3 {font-size:32px; line-height:34px;}
  .feature-box-first .box3 .hding {height:60px; font-size:32px; line-height:34px;}
  .boxCnt-overlay ul li {font-size:18px;}
  .headingpro {font-size:20px; line-height:24px;}
  .pro-cnt-box {padding:30px; bottom:30px;}
  .iconRow .icontext span {font-size:22px; font-weight:normal;}
  .boxCnt-overlay ul li {margin-bottom:7px;}
  .aboutrow {height:30vh; display:none;}

  .aboutsection .aboutRight img {display:none;}
  .aboutsection .aboutRight {background:#0a6989;}
  .about-us-banner img {display:none;}
  .about-us-banner .arrowIcon img {display:block;}
  .about-us-banner .abooutUs-content .aboutImg{display:block;}
  .about-us-banner .abooutUs-content .whatup-icon-row img {display:block;}
  .abooutUs-content {position:relative; top:0px;}
  .about-us-banner {background:#fff url(../images/about-us-banner.png); padding:100px 0px 60px 0px; background-size:100%; background-repeat:no-repeat;}

  .bODslider .slick-prev {left:20%;}
  .bODslider .slick-next {right:20%;}

  .aboutSlider .slick-prev {left:20%; }
  .aboutSlider .slick-next {right:20%;}
  
  .photo-gallery-container {padding:0px 0px 30px 0px;}
  .photogallery-box {flex-direction:column; margin-top:0px;}
  .photogallery-left {width:100%;}
  .photogallery-right {width:100%; margin-top:20px;}
  .photogall-btml {flex-direction:column;}
  .galbtm-left {width:100%;}
  .galbtm-right {width:100%; margin-top:20px;} 

  .downBtn{margin-left:auto; margin-right: auto;}

}








































