@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');
html,
body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #5D5D5C;
}

p {
    font-size: 18px;
}


.gray{
    color: #5D5D5C;
}
.gray:hover{
    color: #FAA519;
    text-decoration: none;
}
#header-container {
    position: absolute;
    z-index: 8080;
    top: 0;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.8); */
    /* border-bottom: 1px solid #eceff1; */
}

nav {
    min-width: 79%;
    max-width: 88%;
    float: left;
}

@media (max-width: 767px) {
    #header-container {
        /* position: relative; */
    }
}


/***********************************************************************************
*	+ HEADER
***********************************************************************************/

#header {
    position: relative;
    padding: 0 30px;
}

#header [class^="col-"] {
    position: static;
}

@media (min-width: 1200px) {
    #header-container [class^="col-"] {
        position: relative;
    }
}

@media (max-width: 991px) {
    #header {
        padding: 0;
    }
}


/***********************************************************************************
*	- LOGO
***********************************************************************************/

#logo {
    min-width: 17%;
    max-width: 12%;
    padding: 0px 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    float: left;
}

#logo a {
    display: inline-block;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    #logo {
        margin-right: 60px;
    }
}


/* Smartphones (portrait) ----------- */

@media only screen and (max-width: 1000px) {
    #logo {
        min-width: 20%;
        max-width: 20%;
        padding: 20px 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        float: none;
    }
    /* Styles */
}

@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    #logo {
        margin-right: 60px;
        float: none;
        /* display: none; */
    }
    /* Styles */
}


/***********************************************************************************
*	- MENU
***********************************************************************************/
.dropdown ul li a{
    color: #FAA519;
}
.menu,
.menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu {
    float: right;
}

.menu > li {
    float: left;
}

.menu li a {
    display: block;
    padding: 5px 25px;
    margin: 5px 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.menu > li > a {
    position: relative;
    padding: 34px 20px;
    margin: 0;
    margin-right: 10px;
    font-size: 16px;
    line-height: 24px;
}

.menu > li > a:first-child {
    padding-left: 0;
}

.menu > li:last-child > a {
    margin-right: 0;
}

.menu li {
    position: relative;
}

.menu li.dropdown ul {
    position: absolute;
    z-index: 2000;
    top: 100%;
    left: 0;
    display: none;
    width: 310px;
    background-color: #fff;
}

.menu li.dropdown ul li a {
    position: relative;
}

.menu li.dropdown ul li a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    border-left: 5px solid #FBA51A;
    opacity: 0;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu li.dropdown ul li a:hover:before,
.menu li.dropdown ul li.sfHover > a:before {
    opacity: 1;
}

.menu li.dropdown ul ul {
    top: -6px;
    left: 100%;
}

.menu li.dropdown:hover > ul {
    display: block;
}

.menu li.megamenu .megamenu-container {
    position: absolute;
    z-index: 2000;
    top: 100%;
    left: 0;
    display: none;
    padding: 20px 0;
    width: 100%;
    border: 1px solid #333;
    background-color: #1c0533;
}

.megamenu-container .section {
    float: left;
    width: 25%;
    border-right: 1px solid #333;
}

.megamenu-container .section:last-child {
    border-right: none;
}

.megamenu-container.col-2 .section {
    width: 50%;
}

.megamenu-container.col-3 .section {
    width: 33.33333333%;
}

.megamenu-container.col-4 .section {
    width: 25%;
}

.megamenu-container.col-5 .section {
    width: 20%;
}

.menu li.megamenu ul li a {
    position: relative;
}

.menu li.megamenu ul li a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    border-left: 5px solid #FBA51A;
    opacity: 0;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu li.megamenu ul li a:hover:before {
    opacity: 1;
}

.menu li.megamenu:hover > .megamenu-container {
    display: block;
}

.sf-arrows .sf-with-ul:after {
    position: absolute;
    top: 50%;
    right: 6px;
    font-family: "FontAwesome";
    content: "\f107";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sf-arrows > li:hover > .sf-with-ul:after {}

.sf-arrows ul .sf-with-ul:after {
    right: 15px;
    content: "\f105";
}

.sf-arrows ul li:hover > .sf-with-ul:after {}

.menu li a:hover,
.menu li.active > a,
.menu li.sfHover > a {
    color: #FBA51A;
    text-decoration: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .menu {
        display: none;
    }
}


/***********************************************************************************
*	- MOBILE MENU
***********************************************************************************/

#mobile-menu-button {
    position: absolute;
    top: 28px;
    right: 15px;
    display: none;
    font-size: 24px;
    line-height: 24px;
    color: #FAA519;
}

#mobile-menu-button:hover,
#mobile-menu-button:focus {
    color: #FBA51A;
}

#mobile-menu,
#mobile-menu ul {
    list-style: none;
    display: none;
    margin: 0;
    background-color: #FBA51A;
    padding: 0px;
    margin: 0px;
}

#mobile-menu {
    border-bottom: 1px solid #fff;
}

#mobile-menu li a {
    display: block;
    padding: 10px 20px;
    border-top: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
}

#mobile-menu > li > a {
    font-size: 14px;
    font-weight: 500;
}

#mobile-menu ul a {
    padding-left: 40px;
}

#mobile-menu ul ul a {
    padding-left: 60px;
}

#mobile-menu .megamenu-container {
    display: none;
    margin-left: 0;
}

#mobile-menu .megamenu-container .section {
    float: none;
    width: 100%;
    margin-bottom: -1px;
    padding: 0 20px 20px 20px;
}

#mobile-menu .megamenu-container .section ul {
    display: block;
    margin: 0 -25px -20px;
}

#mobile-menu .megamenu-container .section ul a {
    padding-left: 40px;
}

#mobile-menu .megamenu-container .section > ul li a:before {
    display: none;
}

#mobile-menu .megamenu-container .section ul li:last-child a {
    border-bottom: 1px solid #fff;
}

#mobile-menu li.dropdown > a,
#mobile-menu li.megamenu > a {
    position: relative;
}

#mobile-menu li.dropdown > a:after,
#mobile-menu li.megamenu > a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    font-family: "FontAwesome";
    font-size: 15px;
    content: "\f107";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#mobile-menu li.dropdown > a.open:after,
#mobile-menu li.megamenu > a.open:after {
    content: "\f106";
}

#mobile-menu li.search a {
    display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    #mobile-menu-button {
        display: block;
    }
}

@media (max-width: 767px) {
    #mobile-menu-button {
        display: block;
    }
}


/***********************************************************************************
*	- STICKY
***********************************************************************************/

#header-sticky [class^="col-"] {
    position: static;
}

#header-sticky.header-sticky-small #logo .hide1 {
    /* padding: 10px 0; */
    display: none!important;
}

#header-sticky.header-sticky-small #logo .hidden {
    /* padding: 10px 0; */
    display: block!important;
    padding: 4px 0px 0px 0px;
}

#header-sticky.header-sticky-small #logo {
    padding: 6px 0px 0px 0px;
}

#header-sticky .menu > li > a {
    position: relative;
    padding: 44px 20px;
    margin: 0;
    margin-right: 10px;
    font-size: 16px;
    line-height: 0px;
}

#header-sticky {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    left: 0;
    display: none!important;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

#header-sticky .cont {
    margin-top: 15px!important;
    background-color: #F60043;
    color: #fff;
}

#header-sticky.header-sticky-small .menu > li> a {
    /* padding-top: 17px;
	padding-bottom: 17px; */
}

#header-sticky.header-sticky-small #search-form {
    top: 4px;
}

@media (min-width: 1200px) {
    #header-sticky:after {
        width: 35%;
    }
    #header-sticky [class^="col-"] {
        position: relative;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #header-sticky {
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    #header-sticky {
        visibility: hidden;
    }
}

.menu li.dropdown:last-child ul {
    position: absolute;
    z-index: 2000;
    top: 100%;
    left: -80px;
    display: none;
    width: 200px;
    background-color: #fff
}

.pad-40 {
    padding: 40px 30px;
}

.pad-30 {
    padding: 10px 30px;
}

.pad-mainbanner {
    padding: 0px 30px;
}

.bg-index {
    background-image: url(../images/ban1.png);
	background-size: cover;
	background-repeat:no-repeat;
	background-position:bottom;
	height: 100vh;
}

.pad-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.mar-t-150 {
    margin-top: 150px;
}

.mar-t-10 {
    margin-top: 10px;
}

.mar-t-100 {
    margin-top: 100px;
}

.mar-b-100 {
    margin-bottom: 100px;
}


.mar-t-50 {
    margin-top: 50px;
}

.orange {
    color: #FAA519!important;
}
.hero2-content {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
    padding: 100px 0px 0px;
}


.back {

    margin-top: 23vh;
    color: #fff;

}
.hero2-text h1 {
    font-size: 40px;
    line-height: 60px;
    text-shadow: 1px 1px #000;
    text-transform: uppercase;
}
.hero2-text span {
    color: #ffffff;
    font-size: 18px;
    background-color:none;
    padding: 0px 10px;
}

.bg-serv{
    background-image: url(../images/bg-gray.png);
    background-repeat: no-repeat;
    background-position: center;
padding-bottom:60px;
}
.mar-t-20{
    margin-top: 20px;
}
.bg-whitecolor{
margin-top: -47%;
    -webkit-box-shadow: 0 0 68px rgba(17, 17, 17,0.11);
    /* background-color: #ffffff; */
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
}

.well{
    margin-bottom: 0px;
}
.button-more{
    color:#fff;
}
.button-more:hover{
    color:#fff;
    text-decoration: none;
}

.more-btn{
    background:#FAA519;
    padding: 6px 35px;
    color: #fff;
}
.more-btn:hover{
    color:#FAA519;
    padding: 6px 35px;
    background-color: #fff;
}
.bg-abset{
    background-image: url(../images/bgeffect.jpg);
    /* background-position: left bottom; */
    background-repeat: no-repeat;
    background-size:cover ;
    padding: 10px 20px 100px;
}
.project1{
    background-image: url(../images/indigrill/11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project2{
    background-image: url(../images/gksduplexhouse/1foyer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.projectvja{
    background-image: url(../images/3bhkflat@vijayawada/drawing2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project2-home{
    background-image: url(../images/Portafilter/4.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.projectdhar{
    background-image: url(../images/dharmista/1-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-taj{
    background-image: url(../images/flavorsoftaj/1.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project3{
    background-image: url(../images/factory/view1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-pvr{
    background-image: url(../images/pvrconstructions/6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project4{
    background-image: url(../images/gksduplexhouse/photo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project6{
    background-image: url(../images/grnconstructions/receptionop11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project7{
    background-image: url(../images/vajrajasmincountyflat1004/02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project8{
    background-image: url(../images/grnconstructions/receptionop11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project5{
    background-image: url(../images/villa@mantri/mantri27scene3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}

.project-vajra{
    background-image: url(../images/vajrajasmincountyflat1004/02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-vajra2{
    background-image: url(../images/vajrajasmincountyflat1302/photo2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-armor-commercial{
    background-image: url(../images/armor8corporateoffice/photo9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-factory{
    background-image: url(../images/factory/view3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.pad-60{
    padding: 60px;
}
.mar-100{
    margin-top:100px;
    margin-bottom: 100px;
}
.hover-effect-content {
    position: relative;
    padding: 9px 9px;
      margin-top: -81px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s linear;
    color: #fff;
}
.hover-effect-content1 {
    position: relative;
    padding: 9px 15px;
      margin-top: -55px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s linear;
    color: #fff;
}

.hover-effect-content-commercial {
    position: relative;
    padding: 9px 15px;
      margin-top: -83px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s linear;
    color: #fff;
}

.bg-cont .bg-discover{
    background-image: url(../images/cont1.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* /* margin-right: -600px; */
    /* margin-bottom: 110px; */
    /* margin-left: -540px;  */
    height: 80vh;

}
.set-log{
    background-color: #fff;
    padding: 60px;
    margin-left:-200px ;
    margin-top:22vh;
    -webkit-box-shadow: 0 0 45px rgba(10, 10, 10,0.08);
}
.getin1{
    font-size: 50px;
    font-weight: bold;
}
.bg-faq{
    background-image: url(../images/bg-faq.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;

}
.pad10{
    padding: 10px;
}
.white{
    color: #fff;
}
.bg-footer{
    background-image: url(../images/n2.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 20px 150px;

}
.bg-whitecolor1{
    margin-top: -7%;
        -webkit-box-shadow: 0 0 68px rgba(17, 17, 17,0.11);
        /* background-color: #ffffff; */
        background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
    }
    .social-media li{
        list-style-type: none;
        float: left;
        padding-right: 20px;
    }
    .useful li{
        list-style-type: none;
        /* float: left; */
        padding-right: 20px;
        color: #5D5D5C;
    }
    .useful li a{

        color: #5D5D5C;
    }
    .mar-t-70{
        margin-top: 85px;
    }
    .useful{
        margin: 0;
        padding: 0;
    }

.social-media{
    margin: 0;
    padding: 0;
}
.card{
     background: none;
}
.card .faq-each{
    background: #fff;
    border-radius: 10px;
    width: 100%;
}
.accordion .card-header.collapsed:after {
    content: "\f067";
}
.accordion .card-header:after {
    font-family: 'FontAwesome';
    content: "\f068";
    float: right;
}
.accordion .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    /* background-color: rgba(0, 0, 0, .03); */
    border-radius: 8px;
    /* border-bottom: 1px solid rgba(0, 0, 0, .03); */
}
.img-bgg .del-set{
    background-image: url(../images/sq.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-faqpage{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slide3.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}
.bg-aboutpage{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/ab2.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}
.about12{
    /* background: #FAA519; */
    color: #fff;
    bottom: 0;
padding:10px 30px;
margin-top: 27vh;
display: inline-block;
font-size: 30px;
text-transform: uppercase;
}
.bg-setses1{
    background-image: url(../images/a1.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 50vh;    */
}
.bg-ab2{
    background-image: url(../images/a2.png);
    background-position:right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 50vh;   */
    padding-bottom: 100px;
    padding-top: 30px;
}
.bg-setses1 .bg-ptn{
    background-image: url(../images/pic8.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-setses1 .bg-fa1{
    background-image: url(../images/fa1.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-fa2{
    background-image: url(../images/ab1.png);
    background-position:left bottom;
    background-repeat: no-repeat;
    /* background-size: cover; */
}
.bg-faqs .bg-fa21{
    background-image: url(../images/interior.jpg);
    background-position:left bottom;
    background-repeat: no-repeat;
        background-size: cover;
}
.bg-setses1 p:last-child{
    margin-bottom: 0px;
}
.pad-10{
    padding-left: 25px;
}
.bg-ab2 .bg-ptn1{
    background-image: url(../images/pic3.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.pad-20{
    padding: 20px;
}
.mart{
    margin-bottom: 0px;
}
.bg-interior{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}
.bg-int21 .bg-int1{
    background-image:  url(../images/in3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-int22 .bg-ptn22{
    background-image:  url(../images/sq.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.long-arrow li{
    list-style: none;
}
.bg-int23 .bg-ptn33{
    background-image:  url(../images/f2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mar-b-50{
    margin-bottom:50px;
}
.bg-pmc{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slide9.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: #fff;
}
.bg-residential{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slide5.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: #fff;
}
.bg-turnkey{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slide7.jpg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: #fff;
}
.bg-commercial{
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/slide13.jpg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: #fff;
}
.div-set1{
    height: 100px;
}

.bg-setses1 .bg-turn{
    background-image:  url(../images/turnkey.jpg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.bg-setses1 .bg-pmc1{
    background-image:  url(../images/pm1.png);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.bg-setses1 .bg-res1{
    background-image:  url(../images/re1.jpg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}
.bg-setses1 .bg-cm1{
    background-image:  url(../images/cm1.jpg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}


/*******contact*******/
.bg-body {
    background-color: #eceff1;
  }
  .bg-contact {
    background-image:  url(../images/contact1.jpg);
    background-position:top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: #fff;
  }

  .mar-t-tittle {
    margin-top: 20vh;
    text-align: center;
  }

  .bg-whiteset {
    background-color: #fff;
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
    padding: 20px 25px;
    /* margin-top: -10vh; */
    /* text-align: center; */
    /* height: 37vh; */
    margin-top: 15px;
  }

  .bg-whiteset i {
    font-size: 35px;
    padding-bottom: 20px;
    color: #cd2012;
  }


  .mar-t-100 {
    margin-top: 100px;
  }

  .bg-whiteset1 {
    background-color: #fff;
    padding: 80px 20px 40px;
    background-image: url(../images/bgeffect.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .form-bg{
    padding: 50px 0px;
    /* border: 2px solid #ddd; */
  }
  .mar-t-50 {
    margin-top: 50px;
  }
  .send  {
    background-color: #FAA519;
    padding: 10px;
    text-align: center;
    border: none;
    color: #fff;
    width: 100%%;
  }
  .send a {
    color: #fff;
  }

  .disabledclass  {
    /* background-color: #FAA519; */
    padding: 10px;
    text-align: center;
    border: none;
    cursor: none;
    /* color: #fff; */
    width: 100%%;
  }

  .form-bg .set-het{
      height: 55px;
  }
  input:focus, textarea:focus{
      box-shadow: none!important;
  }




  .mar-t-30{
      margin-top: 30px;
  }


/* lightbox */


#photos img {
    width: 100%;
    /* float: left; */
    display: block;
    height: 220px;
    margin: 5px;
    border-radius: 5px;
  }

  #photo-gallery {
	list-style: none;
	display: block;
	max-width: 100%;
	height: auto;
	text-align: center;
  }

  .lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
  }

  .lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
  }

  .lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	border-radius: 3px;
  }

  .lightbox a img {
	border: none;
  }

  .lb-outerContainer {
	position: relative;
	background-color: white;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
  }

  .lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
  }

  .lb-container {
	padding: 4px;
  }

  .lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
  }

  .lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(https://raw.githubusercontent.com/lokesh/lightbox2/master/src/images/loading.gif) no-repeat;
  }

  .lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
  }

  .lb-container > .nav {
	left: 0;
  }

  .lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  }

  .lb-prev,
  .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
  }

  .lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../images/prev.png) left 48% no-repeat;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }

  .lb-nav a.lb-prev:hover {
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

  .lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../images/next.png) right 48% no-repeat;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }

  .lb-nav a.lb-next:hover {
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

  .lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
  }

  .lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
  }

  .lb-data {
	padding: 0 4px;
	color: #ccc;
  }

  .lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
  }

  .lb-data .lb-caption {
	font-size: 13px;
	line-height: 1em;
  }

  .lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
  }

  .lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(../images/close.png) top right no-repeat;
	text-align: right;
	outline: none;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;

  }

  .lb-data .lb-close:hover {
	cursor: pointer;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

.listing-projects li{
    list-style: none;
    display: flex;
}
.listing-projects {
    padding: 0;
}

.listing-projects li i{
    padding-right: 16px;
    padding-top: 7px;
}
.pad-50{
    padding: 50px;
}
.mar-t-40{
    margin-top: 40px;
}

.hide-img{
    display: none;
}


.icon-aligns{
    text-align: center;
}
.more-btn:hover{
    text-decoration: none;
}
.more-btn-exe{
    background:#FAA519;
    padding: 20px 45px;
    color: #fff;
    border-radius: 45px;
}
.more-btn-exe:hover{
    text-decoration: none;
    color:#fff;
}

.project-emrald{
    background-image: url(../images/emeraldgrand/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-taj{
    background-image: url(../images/flavorsoftaj/1.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-port{
    background-image: url(../images/Portafilter/1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}
.project-pvrconst{
    background-image: url(../images/pvrconstructions/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}

.project-indi{
    background-image: url(../images/indigrill/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    height: 40vh;
}












.highcard1 {
    width: 24%;
    margin-right:15px;
}

.heighlightbox .projects-box {
    margin-right: 10px;
}


.heighlightbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px;
}


.bg-restaurtant{
    background:-webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/lv1.jpg);
    background-position:center;
    color: #fff;
    padding: 60px 10px 60px 30px;
    border-radius: 40px;
    /* height: 63vh; */
}
.bg-offices{
    background:-webkit-linear-gradient(rgba(251, 165, 25, 0.9), rgba(251, 165, 25, 0.9)), url(../images/cm1.jpg);
    background-position:center;
    color: #fff;
    padding: 60px 10px 60px 30px;
    border-radius: 40px;
    /* height: 63vh; */
}
 .bg-show-rooms{
    background:-webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/f1.jpg);
    background-position:center;
    color: #fff;
    padding: 60px 10px 60px 30px;
    border-radius: 40px;
    /* height: 63vh; */
 }
 .bg-residence-list{
    background:-webkit-linear-gradient(rgba(251, 165, 25, 0.9), rgba(251, 165, 25, 0.9)),url(../images/f5.jpg);
    background-position:center;
    color: #fff;
    padding: 60px 10px 60px 30px;
    border-radius: 40px;
    /* height: 63vh; */
}
