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

  body {
    margin: 0px;
    font-family: poppins;
    background-color: #333;
    color: #fff;
  }
  
  .heading {
      text-align: center;
      font-size: 2.0em;
      letter-spacing: 1px;
      padding: 40px 0px 0px 0px;
      color: white;
      text-decoration: underline 2px solid #FE7235;
  }
  
  .gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
  }
  
  .img-box {
    box-sizing: content-box;
    margin: 10px;
    height: 250px;
    width: 350px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
  }
  
  .caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .transparent-box {
    height: 250px;
    width: 350px;
    background-color:rgba(250, 18, 18, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
  }
  
  .img-box:hover img { 
    transform: scale(1.1);
  }

  
  
  .img-box:hover .transparent-box {
    background-color:rgba(254, 114, 53, 0.5);
  }
  
  .img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
  }
  
  .img-box:hover {
    cursor: pointer;
  }
  
  .caption > p:nth-child(2) {
    font-size: 0.8em;
  }
  
  .opacity-low {
    opacity: 0.5;
  }

  /* top nav starts here */


  .topnav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    background-color: #04AA6D;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  /* Dropdown container - needed to position the dropdown content */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Style the dropdown button to fit inside the topnav */
  .dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* Style the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Style the links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: rgb(255, 255, 255);
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    text-align: left;
    
  }
  
  /* Add a dark background on topnav links and the dropdown button on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #333;
    color: #FE7235;
  }
  
  /* Add a grey background to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #333;
    color: #FE7235;
  }
  
  /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 600px) {
    .topnav a, .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 750px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }


    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      background-color: #333;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }
    .flex{
        padding: 0px 20px 0px 20px !important; 
    }
  }

  .flex{
    padding: 0px 100px 0px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo
    {
        padding: 3px 10px 3px 10px;

    }


     /* hero banner starts here */

     .hero-wrapper {
        clear: both;
        position: relative;
        width: 100%;
        text-align: center;
        font-size:  18px;
        color: white;
  
      }
  
      .hero {
        background-image: url(/projects/3-bhk/images/main-banner.png);
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position: center;
        background-size: 100% auto;
      }
  
      .hero-sizing {
        padding-top: 26%;
        background-color: rgba(254,114,53,.4);
      }
  
      .hero-content {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        
      }
      
      .hero-content:before {
        content: ' ';
        display: block;
        height: 32%;
      }
      
      .hero-content h1 {
      letter-spacing: 8px;
      margin-top: 0;
      margin-bottom: 6px;  
      }
  
      .hero-content p {
        margin-top: 0px;
        margin-bottom: 6px;   
        font-weight: 400;
      }
  
      @media(max-width: 767px){
        .hero-content p{
        font-size: 10px;   
        font-weight: 300;
      }
      .hero-content h1 {
        letter-spacing: 5px;
        font-size: 14px;
        }
      }
      @media(max-width: 574px){
        .hero-content p{
          font-size: 10px;   
        font-weight: 300;
      }
      .hero-content h1 {
        letter-spacing: 5px;
        font-size: 14px;
        }
      }
  
      /* hero banner ends here */


         /* sliding banner starts */

.wrapper {
	width: 100%;
	overflow: hidden;
}
.photobanner {
	position: relative;
	height: 200px;
	margin-bottom: 30px;
	display: flex;
	width: 100%; 
}

.photobanner img {
  margin: 0px 10px;
}

.photobanner {
  animation: bannermove 50s linear infinite alternate-reverse;
}

.heading-3{
  font-family: poppins;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #ffffff;
  margin: 20px 0px 20px 0px;
}
.align-center{
  text-align: center;
}

@keyframes bannermove {
  from {
    left: 0px;
  }
  to {
    left: -2700px;
  }
}

    /* sliding banner ends */
    

  /* footer sec starts here */
  .container{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #232323;
      padding: 20px 0px 10px 0px ;
  }
  .footer-col{
     width: 33%;
     padding: 0 15px;
  }
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #FE7235;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #232323;
    background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
      
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }
  
  .footer-reserved p{
    text-align: center;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 200;
  }