// CSS
//https://codepen.io/nyctophiliac/pen/xpmpyp

html {
  //scroll-padding-top: 100px;
}
html,body{
    overflow-x: hidden;
}
* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.flex-container  {
position: fixed;
top:0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
      background: #956a3a;
	  width:100%;
padding: 0px 70px;
}

.logo {
flex: 10%;
}
    .logo a {
      color: rgb(28, 24, 22);
    }

    .logo, .navigation {
        list-style: none;
    }

    .logo a, .navigation a {
  text-decoration: none;
  font-size: 18px; 
  font-weight: bold;
    }

.navigation  {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
flex:50%;
}

.animateMenuItem {
  animation-name: menuItem;
  animation-duration: 3s;
}

@keyframes menuItem {
  from {color: #d0b08c;}
  to {color: white;}
}

.navigation a {
  display: block;
  color: white;
}

.navigation a:hover {
  color: #d0b08c;
text-decoration: underline;
}
#home {
padding-top: 50px;
}
.chhedagreensSummary {
padding-top: 80px;
padding-left: 200px;
padding-right: 200px;
text-align: center;
}

.chhedagreensSummary h1, .chhedagreensSummary p {
margin-bottom: 50px;
}

p, li{
font-size: 14px;
line-height: 30px;
}

span {
font-size: 12px;
}

.bigButton {
border: 0px;
background-color: #a17341;
color: white;
padding: 20px 40px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
//margin-bottom: 50px;
}

.smallButton {
border: 0px;
background-color: #a17341;
color: white;
padding: 10px 40px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
}

.bigButton:hover , .smallButton:hover{
  box-shadow: 2px 2px 11px rgba(33,33,33,.2); 
border: 2px solid brown;
}

.heads {
background-color: #d0b08c;
color: white;
padding: 10px 15%;
}

.forHeaderAdjust {
padding-top:70px;
}
.project-highlight-main-container {
  padding: 20px 70px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 10px;
}

.project-highlight-sub-container {
  padding: 20px 20px;
  flex: 0 1 25%;
}

.configuration-main-container {
  padding: 20px 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
    align-items: center;
  column-gap: 50px;
}

.configuration-sub-container {
  padding: 20px 20px;
  flex: 0 1 20%;
}

.gallery-main-container {
  padding: 20px 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
}

.gallery-sub-container {
	cursor:zoom-in;
  flex: 0 1 30%;
}

h3 {
color: #a17341;
text-align: center;
padding-top: 20px;
}

#typical-floor-plan-img {display: block;
  margin: 50px auto;
  width: 60%;
}

.video-main {
  padding: 20px 50px;
  display: flex;
  flex-flow: row wrap;
  align-items:center;
  justify-content:center;
}

.video-sub1 {
width: 30%;
}

.video-sub2 {
width: 60%;
}

iframe {
  overflow: hidden;
}

.aboutus-main-container {
  padding: 0px 170px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
    align-items: center;
}

.aboutus-sub-container {
  padding: 0px 20px;
}

.contactus-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
    align-items: center;

}

.contactus-main > * {
padding: 0px 30px;
        text-align: center;
  flex: 0 0 auto;

}

input {
border: 1px solid brown;
width: 100%;
padding: 10px 10px;
font-size: 16px;
}

.contactus-form > input:hover {
border: 2px solid brown;
}

.foothead {
background-color: #d0b08c;
color: white;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
    align-items: center;
column-gap: 10%;
}

.foot-disclaimer{
  font-style: italic;
color: #bcbec2;
  line-height: normal;
font-size: 12px;
}
#enquirenowbutt {
    position: fixed;
    top: 80px;
    right: 0px; 
	width:50px;
	height:150px;
}

#enquirenowbutt:hover {
	width:52px;
	height:152px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
  padding: 5px 10px;
  text-align:center;
}

// Lightbox open
.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
    background: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  margin: auto;
  padding: 0;
  width: 80%;
  max-width: 1200px;
  //height: 100%;
}

.enquire-form {
  background-color: #fefefe;
  margin: auto;
  margin-top:8%;
  padding: 0px 20px;
  padding-bottom:40px;
  padding-top: 5px;
  width: 30%;
  text-align:center;
}
/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.closeEnq {
  color: #a17341;
  margin-left: 95%;
  font-size: 35px;
  font-weight: bold;
	
}

.closeEnq:hover,
.closeEnq:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: auto;
  height:100%;
  padding: 16px;
  //margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
// Lightbox close

.formHeader {
	border:1px solid;
	font-size:50px;
	color: #a17341;
}
.mySampleFlatModal-content {
	width:100%;
	text-align: center;
}
.chhedaGreenVideo{
	margin-top: 40px;
	width: 100%;
}
.chhedaGreenVideo video {
	height: 500px;
}

@media screen and (max-width: 800px) {

.flex-container  {
padding: 0px 0px;
    flex-direction: column;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation  {
padding: 0px 0px;
//flex:80%;
}
  .navigation a { 
font-size: 14px;
    text-align: center; 
    padding: 5px;
  }

  .bigButton {
    font-size: 14px;
}

.forHeaderAdjust {
padding-top:180px;
}

#home {
padding-top: 180px;
}
.chhedagreensSummary {
padding-top: 180px;
padding-left: 5px;
padding-right: 5px;
}
  .chhedagreensSummary h1,.chhedagreensSummary p {
    //margin: 30px 10px;
  }

  .project-highlight-main-container {
     padding: 5px 5px;
     column-gap: 0px;
     row-gap: 0px;
  }
  .project-highlight-sub-container {
     padding: 5px 5px;
     flex: 0 1 90%;
  }

.configuration-main-container {
    padding:0px 0px;
  //row-gap: 20px;
}

  .configuration-sub-container {
    padding:0px 0px;
     flex: 0 1 90%;
  }
  #amenities{
      margin-top: -30px;
}

.gallery-main-container {
    padding:0px 0px;
}
.gallery-sub-container {
  flex: 0 1 100%;
}
.video-main, .aboutus-main-container {
    flex-direction: column;
    padding:0px 0px;
}
.video-sub1, .video-sub2 , .aboutus-sub-container {
padding: 0px 5px;
    width:100%;
}
#enquirenowbutt {
    top: 200px;
}

.project-highlight-main-container video {
	width:100%;
}

.enquire-form {
  width: 80%;
}

.chhedaGreenVideo video {
	height: 300px;
}

#typical-floor-plan-img {
  width: 90%;
}
}