@import "../css/grid.css";
@import "../css/form.css";
@import "../css/on-scroll.css";
@import "../css/stylesheet.css";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
/* COLORS: 
GOLDEN         #c9ab7b ;
Dark Golden:    #605b54;

/* ==================================================================
                         01. BASIC 
================================================================= */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
html, body {
  height: 100%;
  background-color: #000;
  font-family: "termina", sans-serif;
  font-style: normal;
  padding: 0 auto;
  height: 100%;
  margin: 0;
  margin-bottom: 0 !important;
  -webkit-text-size-adjust: none;
}
*:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  max-width: 100%;
}
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  pointer-events: visible;
}
a, a:visited {
  cursor: pointer;
  transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  text-decoration: none;
}
a, p, div, h1, h2, h3, h4, h5, h6, span {
  font-family: "termina", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
.fade-in.three {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7;
  animation-delay: 0.7s;
}
.current {
  color: #c9ab7b;
}
/* ==================================================================
                         02. NAVIGATION
================================================================= */
.menu {
  width: 100%;
  text-align: center;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu li {
  position: relative;
  margin: 18px 0;
}
.menu a {
  font-family: "termina", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 30px;
  color: #fff;
  transition: color 0.3s;
}
.menu a:hover {
  color: #d4af37;
}

.dropdown-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease;
  opacity: 0;
}
.dropdown.active .dropdown-menu {
  max-height: 200px;
  opacity: 1;
}
.dropdown-menu li a {
  display: block;
 font-family: "termina", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 30px;
  color: #000;
  transition: color 0.3s;
}
.dropdown-menu li a:hover {
  color: #fff;
}
/* ---------- Dropdown Arrow ---------- */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #d4af37;
  transition: transform 0.3s ease;
  margin-top: 2px;
}
.dropdown.active .arrow {
  transform: rotate(180deg);
  margin-top: -2px;
}
.navigation {
  width: 100%;
  height: 120px;
  padding: 0;
  margin: 0;
  z-index: 10;
  position: fixed;
  background: #000;
}
/* don't display the checkbox */
.full-chk {
  display: none;
}
/* container object for the hamburger */
.full-cntr {
  position: fixed;
  width: 38px;
  height: 28px;
  top: 34px;
  left: 80px;
  border-radius: 4px;
  background-color: transparent;
  z-index: 300;
  cursor: pointer;
}
.full-chk:checked + .full-cntr {
  background-color: transparent;
}
/* spans are the cntr that turn from a hamburger to an x */
.full-span {
  position: absolute;
  left: 4px;
  width: 30px;
  height: 3px;
  background-color: #c9ab7b;
  z-index: 300;
  transform: rotate(0deg);
  transform-origin: left center;
  transition: background-color 0.3s ease-out 0s, opacity 0.3s ease-out 0.1s, transform 0.2s ease-out 0s, width 0.2s ease-out 0s, left 0.2s ease-out 0s;
}
.full-chk:checked + .full-cntr > .full-span {
  background-color: #fff;
}
.full-span:nth-child(1) {
  top: 4px;
}
.full-chk:checked + .full-cntr > .full-span:nth-child(1) {
  transform: rotate(45deg);
  width: 23px;
  left: 11px;
}
.full-span:nth-child(2) {
  top: 12px;
}
.full-chk:checked + .full-cntr > .full-span:nth-child(2) {
  opacity: 0;
  width: 30px;
  transition: opacity 0.1s ease-out 0s;
}
.full-span:nth-child(3) {
  top: 20px;
}
.full-chk:checked + .full-cntr > .full-span:nth-child(3) {
  transform: rotate(-45deg);
  width: 23px;
  left: 11px;
}
/* style for a nav element, the full-screen menu  */
.full-nav {
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background-color: #605b54;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out 0s, z-index 0s ease-out 0.3s;
}
.full-chk:checked ~ .full-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 200;
  transition: opacity 0.3s ease-out 0s;
}
/* unordered list inside nav element or .full-nav */
/* make position relative to help vertically align menu */
.full-nav-ul {
  position: relative;
  height: 100%;
  margin: 0px auto 0px auto;
  padding: 0px;
  list-style-type: none;
}
/* for vertically aligning our menu */
.full-nav-cntr {
  position: absolute;
  top: 48%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  transform: translate(0%, -50%);
}
/* give the mouse cursor a signal */
.full-nav-hltd {
  padding: 5px 10px 5px 10px;
}
.full-nav-hltd:hover {
  color: #c9ab7b;
}
/* undecorate links */
.full-nav-a, .full-nav-a:visited, .full-nav-a:active {
  text-decoration: none;
  color: #ffffff;
}
.full-nav-p {
  margin: 10px 0px 10px 0px;
  padding: 5px 0px 5px 0px;
  font-family: "termina", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 30px;
}
.logo {
  width: 200px;
  height: auto;
  float: none;
  text-align: center;
  background-color: transparent;
  z-index: 300;
  cursor: pointer;
  position: fixed;
  left: 50%;
  top: 32px;
  transform: translate(-50%, 0);
}
.whatsapp {
  width: auto;
  height: auto;
  float: right;
  text-align: right;
  background-color: transparent;
  z-index: 0;
  cursor: pointer;
  position: fixed;
  right: 80px;
  top: 32px;
  transform: translate(-50%, 0);
  color: #c9ab7b;
}
/* ==================================================================
                    HOMEPAGE MAIN IMAGE
================================================================= */
.homepage-image {
  width: 100%;
  height: auto;
  margin-top: 120px;
  padding: 160px 0 240px 0;
}
.homepage-img-right {
  width: 50%;
  float: right;
  text-align: right;
  margin: 1
}
.homepage-img-right img {
  width: 84%;
  padding-right: 120px;
}
.homepage-img-left {
  width: 44%;
  float: left;
  text-align: left;
  padding-top: 236px;
}
.homepage-img-left img {
  width: 85%;
  padding-left: 100px;
}
/* ==================================================================
                    ABOUT
================================================================= */
.about {
  margin: 160px auto 160px auto;
  width: 100%;
  height: 546px;
  background:
    linear-gradient(45deg, transparent 0px, #605b54 0px) left no-repeat, linear-gradient(-135deg, transparent 60px, #605b54 0px) top right no-repeat;
  background-size: 50% 100%;
}
.about-left {
  width: 40%;
  float: left;
  text-align: left;
  padding: 0px 0 0 0;
}
.about-left img {
  float: left;
  width: 400px;
  padding: 80px 0px 0 100px;
}
.about-right {
  width: 60%;
  float: right;
}
.about-right p {
  float: right;
  width: 90%;
  color: #fff;
  font-family: "termina", sans-serif;
  line-height: 38px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  padding: 100px 40px 100px 10px;
}
/* ==================================================================
                    UPCOMING PROJECTS
================================================================= */
.up-coming-project {
  width: 100%;
  height: auto;
  margin-top: 120px;
  padding: 00px 0;
}
.up-coming-project h6 {
  color: white;
  font-family: "termina", sans-serif;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  padding: 60px 0 60px 100px;
}
.up-coming-project-right {
  width: 50%;
  float: right;
  padding-top: 100px;
}
.up-coming-project-right p {
  padding: 30px;
}
.small-letters {
  font-size: 24px;
  line-height: 40px;
  font-family: "termina", sans-serif;
  font-weight: 400;
  color: #cccccc;
  padding-left: 60px;
}
.big-letters {
  font-size: 100px;
  line-height: 140px;
  font-family: "termina", sans-serif;
  font-weight: 400;
  color: #87837b;
  padding-left: 60px;
  color: #c9ab7b;
}
.up-coming-project-left {
  width: 50%;
  float: left;
  text-align: left;
}
.up-coming-project-left button {
  color: #fff;
  font-family: "termina", sans-serif;
  background: #87837b;
  padding: 24px 60px;
  font-weight: 700;
  cursor: pointer !important;
}
.up-coming-project-left button:hover {
  color: #87837b;
  font-family: "termina", sans-serif;
  background: #c9ab7b;
  padding: 24px 60px;
  font-weight: 700;
  cursor: pointer;
}
hr {
  background: #87837b;
  height: 6px;
  width: 100%;
  margin: 120px 0;
}
/* ==================================================================
                    ABOUT - PAGE
================================================================= */
.about-content {
  background: #000;
  height: auto;
  width: 100%;
  margin: 140px auto;
}
.about-content p {
  font-family: "termina", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #c9ab7b;
  float: none;
  text-align: center;
  width: 79%;
  margin: 0 auto;
  padding-top: 0px;
  word-break: keep-all;
}
.about-content span {
  color: #fff;
}
/* ==================================================================
                    FOOTER
================================================================= */
.footer {
  width: 100%;
  height: 360px;
  background: #605b54;
  color: #fff;
}
.footer p {
  font-size: 12px;
  line-height: 40px;
  font-weight: 400;
}
.footer-logo {
  width: 33%;
  float: left;
  text-align: left;
  padding: 83px 0;
}
.footer-logo img {
  width: 200px;
}
.footer-logo p {
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
}
.footer-menu {
  width: 33%;
  float: left;
  text-align: center;
  padding: 72px 0 0 0;
  margin-top: 100px;
}
.footer-social-media {
  width: 33%;
  float: right;
  text-align: right;
  padding: 72px 0;
  margin-top: 80px;
}
.footer-menu li {
  display: inline;
  cursor: pointer !important;
}
.footer-menu li:hover {
  color: #c9ab7b;
}
.footer-menu li:after {
  content: "|";
  padding: 0 24px;
}
.footer-menu li:nth-child(3):after {
  content: "";
  padding: 0;
}
.footer-social-media li {
  display: inline;
  padding: 0 12px;
  cursor: pointer !important;
}
.footer-social-media li:hover {
  color: #c9ab7b;
}
.column-3 {
  width: 30%;
  height: 320px;
  background: #000;
  float: left;
  text-align: left;
  padding: 0px 12px;
}
.column-3:nth-child(3) {
  padding-top: 135px;
  padding-bottom: 0;
}
.column-2 {
  width: 50%;
  height: 320px;
  background: #000;
  float: left;
  text-align: left;
  padding: 0px 12px;
}
.column-1 {
  width: 100%;
  height: 320px;
  background: #000;
  float: left;
  text-align: left;
  padding: 0px 12px;
}
.copyright {
  width: 100%;
  background: #605b54;
  color: #fff;
  height: 30px;
  font-size: 10px;
}
/* ==================================================================
                   Contact Page
================================================================= */
.contact {
  width: 100%;
  height: auto;
  margin: 220px auto 1000px auto;
}
.contact-right {
  width: 50%;
  float: right;
  text-align: right;
}
.contact-left {
  width: 46%;
  float: left;
  text-align: left;
  padding-top: 60px;
}
.contact-left p {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  padding-left: 12px;
}
.visit1 {
  width: 100%;
}
.visit2 {
  width: 49%;
  padding: 18px 24px 0 0;
}
.visit3 {
  width: 49%;
}
.the-vissit {
  padding: 0 0 48px 0px;
}
/* ==================================================================
                   (min-width: 1601px) and (max-width: 2000px)
================================================================= */
@media only screen and (min-width: 1601px) and (max-width: 2000px) {
  .homepage-image {
    margin-top: 60px;
    padding: 160px 0;
  }
  .homepage-img-right img {
    width: 84%;
    padding-right: 120px;
  }
  .homepage-img-left {
    width: 44%;
    float: left;
    text-align: left;
    padding-top: 212px;
  }
  .homepage-img-left img {
    width: 80%;
    padding-left: 100px;
  }
  .about {
    margin: 160px auto 160px auto;
    height: 500px;
  }
  .about-right {
    width: 60%;
  }
  .about-right p {
    width: 88%;
    line-height: 38px;
    font-size: 16px;
    padding: 100px 120px 100px 10px;
  }
  .about-left {
    width: 40%;
    padding: 100px 0 0 0;
  }
  .about-left img {
    width: 300px;
    padding: 80px 0px 0 100px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  .up-coming-project-right {
    width: 50%;
    padding-top: 120px;
  }
  .up-coming-project-right p {
    padding: 30px;
  }
  .small-letters {
    font-size: 18px;
    line-height: 30px;
    padding-left: 60px;
  }
  .big-letters {
    font-size: 60px;
    line-height: 100px;
    padding-left: 60px;
  }
  .up-coming-project-left {
    width: 50%;
  }
}
@media only screen and (min-width: 1251px) and (max-width: 1600px) {
  .homepage-image {
    margin-top: 60px;
    padding: 120px 0;
  }
  .homepage-img-right img {
    width: 84%;
    padding-right: 120px;
  }
  .homepage-img-left {
    width: 44%;
    float: left;
    padding-top: 160px;
  }
  .homepage-img-left img {
    width: 80%;
    padding-left: 100px;
  }
  .about {
    margin: 160px auto 160px auto;
    height: 540px;
  }
  .about-right {
    width: 60%;
  }
  .about-right p {
    width: 88%;
    line-height: 38px;
    font-size: 16px;
    padding: 88px 80px 100px 10px;
  }
  .about-left {
    width: 40%;
    padding: 100px 0 0 0;
  }
  .about-left img {
    width: 300px;
    padding: 80px 0px 0 100px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  .up-coming-project-right {
    width: 50%;
    padding-top: 60px;
  }
  .up-coming-project-right p {
    padding: 30px;
  }
  .small-letters {
    font-size: 18px;
    line-height: 30px;
    padding-left: 60px;
  }
  .big-letters {
    font-size: 60px;
    line-height: 100px;
    padding-left: 60px;
  }
  .up-coming-project-left {
    width: 50%;
  }
  .footer-menu {
    width: 40%;
  }
  .footer-social-media {
    width: 26%;
    padding: 120px 0;
    margin-top: 38px;
  }
}
@media only screen and (min-width: 962px) and (max-width: 1250px) {
  .homepage-image {
    margin-top: 60px;
    padding: 120px 0;
  }
  .homepage-img-right img {
    width: 84%;
    padding-right: 120px;
  }
  .homepage-img-left {
    width: 44%;
    padding-top: 136px;
  }
  .homepage-img-left img {
    width: 80%;
    padding-left: 100px;
  }
  .about {
    margin: 160px auto 160px auto;
    height: 380px;
  }
  .about-right {
    width: 60%;
  }
  .about-right p {
    width: 90%;
    line-height: 24px;
    font-size: 14px;
    padding: 60px 100px 60px 10px;
  }
  .about-left {
    width: 30%;
    padding: 100px 0 0 0;
  }
  .about-left img {
    width: 180px;
    padding: 60px 0px 0 50px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  .up-coming-project-right {
    width: 50%;
    padding-top: 40px;
  }
  .up-coming-project-right p {
    padding: 30px;
  }
  .small-letters {
    font-size: 14px;
    line-height: 30px;
    padding-left: 24px;
  }
  .big-letters {
    font-size: 40px;
    line-height: 60px;
    padding-left: 24px;
  }
  .up-coming-project-left {
    width: 50%;
  }
  .column-3 {
    width: 47%;
    height: 320px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .column-3:nth-child(1) {
    display: none;
  }
  .footer {
    height: 260px;
  }
  .footer-logo {
    width: 40%;
    padding: 54px 0;
  }
  .footer-logo img {
    width: 140px;
  }
  .footer-logo p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
  }
  .footer-menu {
    width: 20%;
    padding: 60px 0 0 48px;
    margin-top: 20px;
  }
  .footer-menu li {
    padding: 0px 0;
    line-height: 36px;
  }
  .footer-menu li:after {
    content: "";
    padding: 0;
  }
  .footer-social-media {
    width: 22%;
    padding: 100px 0;
    margin-top: 0px;
  }
  .footer-social-media li {
    display: inline;
    padding: 0 12px;
  }
  .visit2 {
    width: 48.5%;
    padding: 18px 24px 0 0;
  }
  .visit3 {
    width: 48.5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 961px) {
  .homepage-image {
    margin-top: 60px;
    padding: 120px 0;
  }
  .whatsapp {
    right: 34px;
  }
  .homepage-img-right img {
    width: 84%;
    padding-right: 120px;
  }
  .homepage-img-left {
    width: 41%;
    padding-top: 124px;
  }
  .homepage-img-left img {
    width: 80%;
    padding-left: 100px;
  }
  .about {
    margin: 90px auto 90px auto;
    height: 384px;
  }
  .about-right {
    width: 70%;
  }
  .about-right p {
    width: 90%;
    line-height: 24px;
    font-size: 14px;
    padding: 60px 40px 60px 10px;
  }
  .about-left {
    width: 30%;
    padding: 100px 0 0 0;
  }
  .about-left img {
    width: 160px;
    padding: 60px 0px 0 32px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  .up-coming-project-right {
    width: 50%;
    padding-top: 0px;
  }
  .up-coming-project-right p {
    padding: 30px;
  }
  .small-letters {
    font-size: 14px;
    line-height: 30px;
    padding-left: 18px;
  }
  .big-letters {
    font-size: 40px;
    line-height: 60px;
    padding-left: 18px;
  }
  .up-coming-project-left {
    width: 50%;
  }
  .column-3 {
    width: 46%;
    height: 320px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .column-3:nth-child(1) {
    display: none;
  }
  .footer {
    height: 260px;
  }
  .footer-logo {
    width: 40%;
    padding: 54px 0;
  }
  .footer-logo img {
    width: 140px;
  }
  .footer-logo p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
  }
  .footer-menu {
    width: 20%;
    padding: 60px 0 0 48px;
    margin-top: 20px;
  }
  .footer-menu li {
    padding: 0px 0;
    line-height: 36px;
  }
  .footer-menu li:after {
    content: "";
    padding: 0;
  }
  .footer-social-media {
    width: 26%;
    padding: 100px 0;
    margin-top: 0px;
  }
  .footer-social-media li {
    display: inline;
    padding: 0 12px;
  }
  .full-cntr {
    top: 36px;
    left: 46px;
  }
  .logo {
    top: 20px;
  }
  .visit2 {
    width: 48.1%;
    padding: 18px 24px 0 0;
  }
  .visit3 {
    width: 48.1%;
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    top: 34px;
    width: 120px;
  }
  .homepage-image {
    margin-top: 0px;
    padding: 125px 0 !important;
  }
  .homepage-img-right {
    width: 100%;
    float: none;
    text-align: center;
    margin: 0;
  }
  .whatsapp {
    right: 12px;
  }
  .homepage-img-right img {
    width: 100%;
    padding-right: 0px;
  }
  .homepage-img-left {
    width: 100%;
    padding-top: 24px;
  }
  .homepage-img-left img {
    width: 100%;
    padding-left: 0px;
  }
  .about {
    margin: 90px auto 90px auto;
    height: 736px;
  }
  .about-right {
    width: 84%;
    float: none;
  }
  .about-left {
    width: 100%;
    padding: 0px;
    float: none;
  }
  .about-right p {
    width: 94%;
    line-height: 24px;
    font-size: 13px;
    margin: 0 auto;
    text-align: left;
    float: none;
    padding: 24px;
  }
  .about-left img {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0px 36px 40px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  hr {
    margin: 48px 0;
  }
  .up-coming-project-right {
    width: 100%;
    padding-top: 60px;
  }
  .up-coming-project-right p {
    padding: 12px;
  }
  .small-letters {
    font-size: 14px;
    line-height: 30px;
    padding-left: 0px;
  }
  .big-letters {
    font-size: 30px;
    line-height: 40px;
    padding-left: 0px;
  }
  .up-coming-project-left {
    width: 100%;
  }
  .column-3 {
    width: 100%;
    height: 320px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .column-3:nth-child(1) {
    display: none;
  }
  .column-3:nth-child(2) {
    height: 258px;
  }
  .column-3:nth-child(3) {
    padding-top: 19px;
    padding-bottom: 0;
    width: 100%;
    height: 220px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .footer {
    height: 500px;
  }
  .footer-logo {
    width: 100%;
    padding: 48px 0 48px 0;
  }
  .footer-logo img {
    display: block;
    margin-left: 12px;
    width: 120px;
    text-align: left;
    margin-bottom: 12px;
  }
  .footer-menu li {
    display: block;
    cursor: pointer !important;
    margin-top: 12px;
  }
  .footer-menu li:after {
    content: "";
    padding: 0 24px;
  }
  .footer-logo p {
    font-size: 13px;
    line-height: 22px;
    font-weight: 400;
    text-align: left;
    margin-left: 12px;
  }
  .footer-menu {
    width: 100%;
    padding: 0 0 0 12px;
    margin-top: 0px;
    text-align: left;
  }
  .fa-3x {
    font-size: 30px;
  }
  .footer-menu li {
    padding: 0px 0;
    line-height: 16px;
  }
  .footer-menu li.contact {
    margin-left: 0px;
    margin-bottom: 60px;
  }
  .footer-social-media {
    width: 100%;
    float: none;
    text-align: left;
    padding: 0;
    margin-top: 60px;
    height: auto;
    margin-left: 0px;
  }
  .footer-social-media li {
    display: inline;
    padding: 0 12px;
  }
  .full-cntr {
    top: 36px;
    left: 24px;
  }
  .about-content {
    background: #000;
    height: auto;
    width: 100%;
    margin: 0px auto;
  }
  .about-content p {
    font-size: 13px;
    line-height: 22px;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 48px;
  }
  .contact {
    margin: 220px auto 1000px auto;
  }
  .contact-right {
    width: 100%;
    float: right;
    text-align: right;
  }
  .contact-left {
    width: 100%;
    float: left;
    text-align: left;
    padding-top: 60px;
	  padding-bottom: 110px;
  }
  .contact-left p {
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    padding-left: 12px;
  }
  .column-1 {
    width: 100%;
    height: 320px;
    background: #000;
    float: left;
    text-align: left;
    padding: 0px 12px;
  }
  .visit2 {
    width: 100%;
    padding: 0;
  }
  .visit3 {
    width: 100%;
  }
  .the-vissit {
    padding: 0 0 120px 0px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .logo {
    top: 24px;
    width: 180px;
  }
  .homepage-image {
    margin-top: 60px;
    padding: 120px 0;
  }
  .whatsapp {
    right: 34px;
  }
  .homepage-img-right img {
    width: 100%;
    padding-right: 0px;
  }
  .homepage-img-left {
    width: 100%;
    padding-top: 48px;
  }
  .homepage-img-left img {
    width: 100%;
    padding-left: 0px;
  }
  .about {
    margin: 90px auto 90px auto;
    height: 680px;
  }
  .about-right {
    width: 100%;
    float: none;
  }
  .about-left {
    width: 100%;
    padding: 0px;
    float: none;
  }
  .about-right p {
    width: 80%;
    line-height: 24px;
    font-size: 14px;
    margin: 0px auto 0 auto;
    text-align: center;
    float: none;
    padding: 24px;
  }
  .about-left img {
    width: 40%;
    margin: 0 auto;
    padding: 60px 137px 36px 137px;
  }
  .up-coming-project h6 {
    font-size: 26px;
    line-height: 36px;
    padding: 0px 0 40px 0px;
  }
  .up-coming-project-right {
    width: 100%;
    padding-top: 60px;
  }
  .up-coming-project-right p {
    padding: 12px;
  }
  .small-letters {
    font-size: 14px;
    line-height: 30px;
    padding-left: 0px;
  }
  .big-letters {
    font-size: 30px;
    line-height: 40px;
    padding-left: 0px;
  }
  .up-coming-project-left {
    width: 100%;
  }
  .column-3 {
    width: 100%;
    height: 320px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .column-3:nth-child(1) {
    display: none;
  }
  .column-3:nth-child(2) {
    height: 207px;
  }
  .column-3:nth-child(3) {
    padding-top: 19px;
    padding-bottom: 0;
    width: 100%;
    height: 174px;
    background: #000;
    text-align: left;
    padding: 0px 12px;
  }
  .footer {
    height: 500px;
  }
  .fa-3x {
    font-size: 20px;
  }
  .footer-logo {
    width: 100%;
    padding: 54px 0;
    margin-left: 0px;
  }
  .footer-logo img {
    width: 140px;
    display: block;
    margin-left: 12px;
    width: 30%;
  }
  .footer-logo p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-align: left;
  }
  .footer-menu {
    width: 100%;
    padding: 0 0 0 12px;
    margin-top: 0px;
  }
  .footer-menu li {
    padding: 0px 0;
    line-height: 16px;
  }
  .footer-social-media {
    width: 100%;
    float: none;
    text-align: left;
    padding: 0;
    margin-top: 60px;
    height: auto;
  }
  .footer-social-media li {
    display: inline;
    padding: 0 12px;
  }
  .full-cntr {
    top: 36px;
    left: 46px;
  }
  .visit2 {
    width: 47%;
    padding: 18px 24px 0 0;
  }
  .visit3 {
    width: 47%;
  }
}