@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;500;600;700&display=swap');

:root{
    --green:#7a9c07;
    --white:#ffffff;
    --sap:#4a6000;
    --black:#1b1b1b;
    --greenshade: #7b9c0b;
    --sapshade: #5f654c;
    --deepBlack: #000000;
    --gray: #efeeee;
    --poppins: 'Poppins', sans-serif;
    --oswarld: 'Oswald', sans-serif;
    --sagnika: 'Signika Negative', sans-serif;
}
body{
    font-family: var(--poppins);
    color: var(--deepBlack);
    margin: auto;
    padding: auto;
}
a{
    text-decoration: none;
    color: transparent;
}
p {
    color: var(--deepBlack);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 600;
}
.bg-black{
    background-color: var(--black);   
}
.bg-gray{
    background-color: var(--gray);
}
ul{
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.px-6{
    padding-left: 6rem;
    padding-right: 6rem;
}
.pb-7{
    padding-bottom: 5rem;
}
.my-7{
    margin-top: 5rem;
    margin-bottom: 5rem;
}
/* home page top-header css start  */
.top-header {
    padding: 0.5rem;
    color: var(--white);
}
.topheader-left{
    text-align: left;
}
.topheader-left span{
    font-size: 0.9rem;
    font-family: var(--poppins);
}
.topheader-right ul {
    display: flex;
    justify-content: end;
    gap: 0.9rem;
}
.topheader-right ul li a{
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.2s ease-in;
}
.topheader-right ul li a:hover{
    transition: all 0.2s ease-in;
    color: var(--green);
}
/* middle header css start  */
.middleInner{
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    align-items: center;
}
.contactHeader ul, .contactHeader ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contactHeader ul{
    gap:3rem;
}
.icon i{
    font-size: 1.2rem;
}
.contactHeader ul li .icon {
    width: 55px;
    height: 50px;
    border: 1px solid var(--black);
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    transition: all 0.2s ease-in;
}
.call{
    transform: rotate(90deg);
}
.text span {
    color: var(--deepBlack);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.8rem;
    display: block;
}
.text a{
    color: var(--deepBlack);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1rem;
    display: block;
    transition: all 0.3s ease-in;
}
.icon:after{
    content:"" ;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    transform: scale(0);
    transform-origin: center;
    transition: all 0.3s ease-in;
    z-index: -1;
}
.contactHeader ul li:hover .text a{
    color: var(--green);
    transition: all 0.2s ease-in;
}
.contactHeader ul li:hover .icon{
    color: var(--white);
    border-color: var(--green);
    transition: all 0.2s ease-in;
}
.contactHeader ul li:hover .icon:after{
    transform: scale(1);
    transition: all 0.2s ease-in;
}
.logo img{
    width: 250px;
}
/* end  */
/* navbar css start  */
.bg-green{
    background-color: var(--green);
}
nav{
    padding: 0.7rem 0;
}
nav ul {
    display: flex;
    justify-content: space-around;
}
nav ul li a {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: capitalize;
    transition: all 0.3s ease-in;
    position: relative;
}
nav ul li a::after{
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 1.5px;
    left: 0;
    right: 0;
    background-color: var(--white);
    transition: all 0.3s ease-in;
}
nav ul li a:hover,
nav ul li.active a{
    font-weight: 700;
    transition: all 0.3s ease-in;
    color: var(--white);
}
nav ul li a:hover::after,
nav ul li.active a::after{
    width: 100%;
    transition: all 0.3s ease-in;
}
.navBtn a{
    background-color: var(--white);
    padding: 0.4rem 1.3rem;
    color: var(--black)!important;
    position: relative;
}
.navBtn a:after{
    background-color: var(--green);
}
.navBtn a:hover{
    color: var(--white);
}
/* end  */
/* banner section css start  */
.banner{
    position: relative;
    height: 500px;
    overflow: hidden;
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.bannerOverlay {
    position: absolute;
    background: linear-gradient(50deg, #1b1b1bed 20%, transparent 60%);
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.bannerText {
    position: absolute;
    top: 50%;
    left: 10%;
    height: 60%;
    width: 30%;
    margin: auto 0;
    bottom: 50%;
    /* overflow: hidden; */
}
.bannerText span,
.bannerText h1{
    color: var(--white);
    font-size: 3.2rem;
    font-family: var(--oswarld);
    font-weight: 700;
    z-index: 5;
    display: inline-block;
}
.bg_colorBanner span,
.bg_colorBanner h1{
    position: relative;
    background-color: var(--sap);
    padding: 0.2rem 0.7rem;
}
.bannerText p{
    color: var(--white);
    font-family: var(--poppins);
    font-size: 1.1rem;
    line-height: 1.5;
}
.bannerpara{
    margin: 1rem 0;
}
.bannerBtn {
    display: flex;
    gap: 10px;
    padding-top: 10px;
}
.bannerBtn a{
    display: block;
}
.w-borderBtn{
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    border: 3px solid var(--white);
    padding: 0.6rem 1.5rem;
    position: relative;
    z-index: 5;
    transition: all 0.2s ease-in;
}
.w-borderBtn::after{
    content: '';
    background-color: var(--greenshade);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.2s ease-in;
}
.w-borderBtn:hover{
    border-color: var(--greenshade);
    transition: all 0.2s ease-in;
    color:var(--white) ;
}
.w-borderBtn:hover:after{
    transform: scale(1);
    transition: all 0.2s ease-in;
}

.btnW-bg{
    font-size: 1rem;
    color: var(--greenshade);
    text-transform: capitalize;
    border: 3px solid var(--white);
    padding: 0.6rem 1.5rem;
    position: relative;
    z-index: 5;
    transition: all 0.2s ease-in;
}
.btnW-bg::after{
    content: '';
    background-color: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    transform: scale(1);
    transform-origin: center;
    transition: all 0.2s ease-in;
}
.btnW-bg:hover{
    color: var(--white);
    transition: all 0.2s ease-in;
}
.btnW-bg:hover::after{
    transform: scale(0);
    transition: all 0.2s ease-in;
}
.carousel-item{
    height: 500px;
}
.carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* end /  */ 
/* properties css start  */
.sectionHeader h1,
.sectionHeader h2{
    color: var(--green);
    font-size: 2.2rem;
    font-family: var(--sagnika);
    font-weight: 600;
    text-transform: capitalize;
}
.propertiesbx {
    padding: 1.5rem 1rem;
    height: 200px;
    border-radius: 10px;
    text-align: center;
}
.propertiText{
    padding: 1.5rem 0;
}
.propertiText p{
    color: var(--sapshade);
    font-size: 1.2rem;
    text-transform: capitalize;
}
/* end  */
.para h3{
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 2;
}
.para ul li{
    position: relative;
    padding-left: 20px;
    margin: 0.7rem 0;
}
.para ul li:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--green);
    border-radius: 50%;
    top: 5px;
    margin:  0;
    left: 0;
}
.aboutImg_frist {
    position: relative;
    width: 470px;
    height: 410px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 4px 5px 1px #cccccc91;
    z-index: 5;
}
.about,
.findHouse{
    z-index: 5;
}
.about::after {
    content: '';
    background-image: url(../img/house_gray.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 60%;
    width: 50%;
    height: 100%;
    z-index: -1;
}
.aboutSecoundImg {
    position: absolute;
    top: 40%;
    z-index: 8;
    width: 380px;
    height: 310px;
    border: 8px solid #fff;
    overflow: hidden;
    box-shadow: -1px 1px 5px 1px #ccc;
    border-radius: 10px;
}
.btnAll{
    margin-top: 1.5rem;
}
.btnAll a{
    position: relative;
    padding: 0.5rem 3.5rem 0.5rem 2.5rem;
    color: var(--white);
    text-transform: capitalize;
    z-index: 5;
    transition: all 0.3s ease-in-out;
    transform: translateX(0);
}
.btnAll a::after {
    content: '';
    background-color: var(--green);
    clip-path: polygon(0% 100%, 100% 100%, 75% 0, 0% 0%);
    top: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.btnAll a:hover{
    transform: translateX(-10%);
    transition: all 0.3s ease-in-out;
}
.btnAll a:hover::after {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0, 0% 0%);
    transition: all 0.3s ease-in-out;
}
.py-7{
    padding: 5rem 0;
}
/* end  */
/* find house css start  */
.findHouse{
    z-index: 5;
}
.findHouse::after {
    content: '';
    background-image: url(../img/blog/blog_two.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 65%;
    z-index: 5;
    bottom: 0;
    margin: auto 0;
    box-shadow: -3px 2px 7px 0px #d1d1d1;
}
.Counterbox{
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.counter-container{
    text-align: center;
}
.counter {
    font-size: 2rem;
    color: #5e7805;
    font-weight: 700;
    font-family: var(--sagnika);
    position: relative;
}
.counter-plus:after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-size: 1rem;
    padding: 0 5px;
    margin: auto 0;
    top: 0;
    bottom: 0;
    height: 25px;
}
.staticText{
    font-weight: 700;
    text-transform: capitalize;
}
/* end  */
/* choose section css start  */
.choose{
    overflow: hidden;
}
.imgBox-radius{
    border-radius:70px;
}
.imgBox-radius>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 90px;
    position: relative;
    box-shadow: 1px 1px 5px 1px #ccccccbf;
}
.chooseImgBox{
    height:450px;
    position: relative;
    z-index: 5;
}
.chooseImgBox::after{
    top: -20px;
    width: 100%;
    height: 100%;
    left: -20px;
    content: '';
    background-color: var(--greenshade);
    position: absolute;
    border-radius:90px;
    z-index: -1;
}
.textIcon {
    background-color: var(--green);
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.textchoose ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 1.5rem 0;
}
.textchoose ul li .para {
    width: 90%;
}
.logoImg {
    position: absolute;
    bottom: -10px;
    right: -15px;
    box-shadow: 1px 3px 5px 1px #aaaaaab8;
    z-index: 8;
    background-color: #fff;
}
.choose:after {
    content: '';
    background-image: url(../img/houseBgGray.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 35%;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: -1;
}
.blogBox {
    border-radius: 10px;
    position: relative;
    box-shadow: -1px 0px 5px 2px #aaaaaaba;
}
.blogBox img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s ease-in;
}
.height-350{
    height: 350px;
}
.blogDetails{
    background-color: var(--white);
}
.blogDetails {
    background-color: var(--white);
    position: absolute;
    bottom: -10px;
    padding: 1.2rem 1rem;
    width: 80%;
}
.blogabout i{
    color: var(--green);
    font-size: 1.2rem;
}
.blogabout {
    display: flex;
    gap: 2rem;
}
.blogabout div{
    display: flex;
    gap: 6px;
    align-items: center;
}
.blogHead h4{
    color: var(--greenshade);
    font-family: var(--oswarld);
    font-weight: 700;
    font-size: 1.3rem;
}
.blogText {
    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 5;
}
.blogText .icon i{
    font-size: 2rem;
    color: var(--greenshade);
}
.blogImg{
    overflow: hidden;
}
.blogImg:after{
    content: '';
    background-color: var(--green);
    opacity: 0.6;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease-in;
    transform-origin:center ;
}
.blogBox:hover .blogImg:after{
    transform: scale(1);
    transition: all 0.2s ease-in;
}
.blogBox:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease-in;
}
.height-170{
    height: 165px;
}
/* end  */
/* project section css start  */
.projectImg{
    height: 400px;
    overflow: hidden;
    position: relative;
}
.projectImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlayProject {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    opacity: 0.8;
    transform: scale(0);
    transition: 0.2s all ease-in;
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.projectImg:hover .overlayProject {
    transition: 0.2s all ease-in;
    transform: scale(1);
    transform-origin: center;
}
.projectImg:hover .img-galeria {
    transform: scale(1.1);
    transition: 0.3s all ease-in;
}
.img-galeria {
    object-fit: cover;
    width: 30%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgb(0, 0, 0, 0.5);
    cursor: pointer;
    transition: 0.3s all ease-in;
}
.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transform-origin: center;
    z-index: 10;
    transition: 0.2s all ease-in;
}
.show{
    /* transform: translate(0); */
    transform: scale(1);
    transform-origin: center;
    transition: 0.2s all ease-in;
}
.agregar-imagen {
    object-fit: cover;
    width: 80%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
}

.showImage{
    transform: scale(0.5);
    transition: 0.3s all ease-in;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    cursor: pointer;
    color:#fff;
    font-size: 40px!important;
}
.plusIcon{
    text-align: center;
    position: relative;
}
.plusIcon i{
    color: var(--white);
    font-size: 1.2rem;
    display: inline-block;
}
.plusIcon span{
    color: var(--white);
    display: block;
}
/* end  */
/* faq css start  */
.accordion-item {
    background-color:none;
    border:none;
    padding: 0.5rem 0;
}
.accordion-button{
    background-color: var(--greenshade);
    color: var(--white);
}
.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--greenshade);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button::after {
   background-image: none;
   content: "\f067";
   color: var(--white);
   font-family: 'Font Awesome 5 Free';  
   font-weight: 900;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f068";
    color: var(--white);
    font-family: 'Font Awesome 5 Free';  
    font-weight: 900;
}
.accordion-button:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.accordion-button {
    border-radius: 10px !important;
    padding: 0.7rem 1.2rem;
}
/* end  */
/* footerContact css start   */
.footerContact {
    background-image: url(../img/faq_banner.jpg);
    position: relative;
    box-shadow: 0px 4px 8px 0px #39393996;
    z-index: 5;
}
.bgImg{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.footerContact::after{
    content: '';
    background-color: var(--black);
    opacity: 0.6;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1;
}
.bg-grayshade{
    background-color: #eceaeb;
    z-index: 5;
}
.content ul li a{
    font-size: 1.3rem;
    color: var(--green);
    margin: 0.8rem 0;
    display: block;
    font-weight: 600;
}
.fromInput {
    width: 100%;
    padding: 0.3rem;
    margin: 0.3rem 0;
    border-color: var(--deepBlack);
    border-width: 1.5px;
}
.fromInput::placeholder{
    color: var(--deepBlack);
    font-weight: 500;
    text-transform: capitalize;
}
.submitBtn {
    background-color: #84a21c;
    color: var(--white);
    text-transform: capitalize;
    border: none;
    padding: 0.4rem 2rem;
    transition: all 0.2s ease-in;
    border: 2px solid #84a21c;
}
.submitBtn:hover{
    border: 2px solid #84a21c;
    background-color: transparent;
    color: var(--green);
    transition: all 0.2s ease-in;
}
/* end  */
/* footer css start  */
footer{
    background-image: url(../img/footerBg.jpg);
    position: relative;
    color: var(--white);
}
.GreenOverlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--sap);
    opacity: 0.9;
}
footer p {
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
}
.headFooter h4 {
    font-style: italic;
    font-size: 1.3rem;
}
.footerHead h4{
    font-family: var(--poppins);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
}
.coninfo ul li a {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
    margin: 0.6rem 0;
}
footer .topheader-right ul {
    justify-content: start;
}
footer .topheader-right ul li a {
    font-size: 1.1rem;
}
.footerForm form{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.footerForm input {
    background-color: var(--white);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    border: none;
    width: 100%;
    position: relative;
    color: var(--green);
}
.footerForm input:focus{
    border: none;
    box-shadow: none;
    outline: 0;
}
.footerForm input::placeholder{
    color: var(--green);
    text-transform: capitalize;
}
.footerForm button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20%;
    border: 0;
    background-color: #9dc41f;
}
.footerForm button span i{
    color: var(--deepBlack);
    font-size: 1.2rem;
}

.bg_colorBanner,
.heading,.bannerpara
{
    overflow: hidden;
}
.findHouse .bg-gray{
    overflow: hidden;
}
footer, 
header .bg-green{
    overflow: hidden;
}
/* end  */
/* blog page css start  */
.subBanner{
    height: 250px;
    position: relative;
    overflow: hidden;
}
.subBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
}
.bannerOverlay{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deepBlack);
    opacity: 0.6;
    left: 0;
    right: 0;
}
.subBanner .bannerText {
   height: 35%;
   width: auto;
}
.Blog-imgBox{
    height: 450px;
    overflow: hidden;
}
.Blog-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}
.blogBlk .blogBox{
    box-shadow: none;
}
.blog_head h2{
    font-family: var(--sagnika);
    font-size: 1.8rem;
    font-weight: 600;
}
.date span{
    display: block;
    font-size: 0.9rem;
    color: var(--deepBlack);
    font-weight: 500;
}
.btnSec {
    background-color: var(--greenshade);
    color: var(--white);
    padding: 0.8rem 2rem;
    display: inline-block;
    text-transform: capitalize;
    font-weight: 500;
}
.btnSec span{
    transform: translate(0);
    transition: all 0.25s ease-in;
    display: block;
}
.btnSec:hover span{
    transform: translate(10px);
    transition: all 0.25s ease-in;
    color: var(--white);
}
.blogBlk::after {
    content: '';
    background-image: url(../img/house_gray.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}
/* end  */
/* contact page css start  */
.contactBox{
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    grid-template-columns: 40% 60%;
    background: linear-gradient( to bottom, var(--aliceBlue), transparent);
    z-index: 0;
    position: relative;
}
.detailsContact{
    background-image: url(../img/contact/contactDetailsBg.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 7rem ;
    display: flex;
    align-items: center;
}
.overlayContact{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 80%);
}

.detailsContact ul li{
    padding: 1rem 0;
}
.detailsContact ul li span{
    text-transform: uppercase;
    color: var(--white);
    font-size: 0.8rem;
    display: block;
    opacity: 0.5;
}
.detailsContact ul li a{
    color: var(--white);
    font-family: var(--bevietnamPro);
    font-size: 1.3rem;
}
.contactForm{
    padding: 3rem 6.5rem 3rem 3rem ;
    background-color: #f0f7d9;
}
.color_black h6{
    color: var(--deepBlack);
}
.sectionHeader p {
    font-size: 0.8rem;
    font-weight: 500;
}
.input_form label {
    font-family: var(--bevietnamPro);
    text-transform: uppercase;
    color: var(--shadowBlue);
    font-size: 0.8rem;
    display: block;
    margin: 0.5rem 0.5rem;
    font-weight: 600;
}
.input_form input{
    border: 2px solid #ccd9d9;
    border-radius: 50px;
    padding: 0.5rem 0.8rem;
    background-color: var(--white);
}
.input_form textarea{
    border: 2px solid #ccd9d9;
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    background-color: var(--white);
}
.w100{
    width: 100%;
}
.w50{
    width: 48%;
}
.input_form input:focus,
textarea:focus{
    outline: 0;
}
.input_form input::placeholder,
.input_form textarea::placeholder{
    color:#4f5362;
    text-transform: capitalize;
    font-size: 0.7rem;
    font-weight: 600;
}
.inputdouble{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
input.placeholder::placeholder{
    text-transform: lowercase;
}
.blueBtnSubmit {
    color: var(--white);
    background-color: var(--greenshade);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 1;
    border: 2px solid var(--greenshade);
    transition: all 0.3s ease-in-out;
}
.colorW h2{
    color: var(--white);
}
/* end  */
/* faq section css start  */
.faqBlk{
    position: relative;
}
.faqBlk::after {
    content: '';
    background-image: url(../img/faq/bglight.png);
    position: absolute;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 200px;
    bottom: 0;
    z-index: -1;
}
.faqSecImg {
    z-index: 8;
    border: 8px solid #fff;
    overflow: hidden;
    box-shadow: -1px 1px 5px 1px #ccc;
    border-radius: 10px;
    height: 100%;
}
.faqSecImg img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    width: 100%;
}
/* end  */
/* galleryBlk css start  */
#gallery {
    line-height:0;
    -webkit-column-count:3;
    -webkit-column-gap:1rem;
    -moz-column-count:3;
    -moz-column-gap:1rem;
    column-count:3;
    column: gap 1rem;
    
}
#gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 1rem;
}
.gallery-block{ padding-bottom:80px; }
.gallery-block .title{ padding-bottom:40px; }
.gallery-block .title h3{ color:#099812; }
.gallery-block .box a{ width:100%; }
.gallery-block .title h3 span{ color:#000000; }
.gallery-block .title h3 span:before{ background:#000; }
.gallery-block .img-panel{ position:relative; }
.gallery-block .quack-block{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); opacity:0; visibility:hidden; transition:all 0.5s ease-in-out; display:flex; align-items:center; width:100%; height:100%; background:rgba(9,152,18,0.7); justify-content:center; }
.gallery-block .box:hover .quack-block{ transform:translate(-50%,-50%) scale(.90); opacity:1; visibility:visible; }
.gallery-block .quack-block i{ font-size:30px; color:#fff; margin-bottom:12px; transition: all 0.5s ease-in-out; }
.gallery-block .quack-block i:hover{ color:#949494; }

@media screen and (min-width:1365px){
    .gallery-block .container-fluid { padding-right: 0; padding-left: 0; }
}
.galleryBlk{
    position: relative;
}
.galleryBlk::before {
    position: absolute;
    width: 50%;
    height: 30%;
    background-image: url(../img/house_gray.png);
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 20%;
    left: 0;
    z-index: -1;
}
.galleryBlk::after {
    content: '';
    background-image: url(../img/faq/bglight.png);
    position: absolute;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 150px;
    bottom: 0;
    z-index: -1;
}
/* end  */
/* shed page css start css  */
.shedsBlk{
    position: relative;
}

.sectionHeaderTwo h2{
    font-size: 2rem;
    color: var(--deepBlack);
    font-weight: 600;
    font-family: var(--sagnika);
}
.px-7{
    padding-left: 5rem;
    padding-right: 5rem;
}
.shedBox{
    background-color:#ccdfb8a1;
    padding: 1rem 0;
}
.title h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0rem 1rem;
    color: #1f2703;
    filter: drop-shadow(-1px 1px 2px var(--green));
}
.boxImgShed{
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.boxImgShed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
    transform: scale(1);
    transition: all 0.3s ease-in;
}
.shedBox:hover .boxImgShed img{
    transform: scale(1.1);
    transition: all 0.3s ease-in;
}
.shedBtn{
    display: block;
    text-align: center;
    padding: 0.8rem;
}
.shedBtn a {
    text-transform: uppercase;
    color: #1b1b1b;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--poppins);
    background-color: var(--green);
    padding: 0.5rem 1.4rem;
    display: inline-block;
    border: 2px solid var(--green);
    transition: all 0.3s ease-in;
}
.shedBtn a:hover{
    border: 2px solid #1b1b1b;
    transition: all 0.3s ease-in;
    color: #1b1b1b;
    background-color: transparent;
}
.shedsBlk::before {
    position: absolute;
    width: 50%;
    height: 30%;
    background-image: url(../img/house_gray.png);
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 20%;
    left: 0;
    z-index: -1;
}
.shedsBlk::after {
    content: '';
    background-image: url(../img/faq/bglight.png);
    position: absolute;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 150px;
    bottom: 0;
    z-index: -1;
}
/* end  */
/* about css start  */
.aboutSecoundImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.bg-greenLight {
    background-color: #f9ffe5;
    z-index: 5;
    position: relative;
}
.aboutPage{
    position: relative;
}
.aboutPage::after {
    content: '';
    background-image: url(../img/gallery/window_handle.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 65%;
    z-index: 5;
    bottom: 0;
    margin: auto 0;
    box-shadow: -3px 2px 7px 0px #d1d1d1;
}
.aboutChoose {
    position: absolute;
    width: 40%;
    left: 0;
    top: 0;
    height: 100%;
}
.aboutChoose img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 0px 70px 70px 0;
    position: relative;
    z-index: 5;
}
.aboutChoose:after{
    content: '';
    background-color: var(--green);
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 95%;
    width: 95%;
    z-index: -1;
    border-radius: 0px 70px 70px 0;
}
.colorGreen h2{
    color: var(--greenshade);
}
.buildBox {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    right: 0;
    height: 100%;
    padding: 0 0 0 1rem;
}
.buildBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 70px 0 0 70px;
    position: relative;
    z-index: 5;
}
.buildBox::after{
    position: absolute;
    content: "";
    background-color: var(--green);
    width: 100%;
    height: 100%;
    top: -15px;
    left: 0;
    z-index: -1;
    border-radius: 70px 0 0 70px;
}

/* mobile header sction css start  */
.menubar{
    color: var(--white);
    font-size: 1.2rem;
}
/* blog details page css start  */
.blog_content p b,
.blog_content a{
    color: var(--greenshade);
}