@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --heading:'Oswald', sans-serif;
    --para:'Poppins', sans-serif;
    --highlight-color:#feb706;
    --dark-color:#000000;
}
p,h1, h2,h3, ul, h5, h6{
    margin-bottom: 0px;
}
h2{
      font: 400 50px var(--heading);
      color: var(--dark-color);
      text-align: center;
}
input:focus, textarea:focus{
      outline: none;
}
.common-gap{
    padding: 60px 0px;
}
.yellow-btn{
    margin: 20px auto;
}
.yellow-btn a,.form-outer:last-child .yellow-btn input, .form-half .yellow-btn input{
    font: 500 16px var(--para);
    color: var(--dark-color);
    padding: 10px 40px;
    background-color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
    transition: .3s;
}
.form-outer:last-child .yellow-btn, .form-half .yellow-btn input{
    margin: 0px;
}
.yellow-btn input, .text-img .yellow-btn a, .why .yellow-btn a, .gallery .yellow-btn a{
    text-transform: uppercase;
}
.yellow-btn a:hover, .form-outer:last-child .yellow-btn input:hover, .form-half .yellow-btn input:hover{
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}
/* banner */
.banner{
  width: 100%;
  height: auto;
  background-position: top;
  background-size: cover;
  background-repeat: repeat;
}
.banner .top{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.top .yellow-btn{
    margin: 0px;
}
.logo img{
    width: 40%;
    margin-top: 10px;
}
.title-form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 0px;
}
.title{
    color: #fff;
    width: 55%;
}
.title h1{
    font: 400 80px var(--heading);
    line-height: 5.625rem;
}
.title h5{
    font: 400 20px var(--para);
}
.title h6{
    font: 400 18px var(--para);
    margin: 30px 0px 10px;
}
.form{
    width: 45%;
    height: auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
}
.form p{
    font: 400 18px var(--para);
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 0px 1px #6b6b6b;
}
.form-outer{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.form-outer input, .form textarea{
    width: 100%;
    background-color: #fff; 
    padding: 8px 15px; 
    border: none;
}
.form textarea{
    margin: 20px 0px;
}
.form-outer input::placeholder, .form textarea::placeholder{
    color: var(--dark-color);
    font: 400 16px var(--para);
}
.form-outer:last-child{
    gap: 50px;
}

.form-finan {
    margin: 5px 0;
}

.form-finan p{
    margin:0 !important;
    font: 400 18px var(--para);
    color: #fff;
    text-shadow: 1px 0px 1px #6b6b6b;
    line-height: 42px;
}

.form-finan label {
    font: 400 18px var(--para);
    color: #fff;
    text-shadow: 1px 0px 1px #6b6b6b;
}

.form-finan .form-select {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.form-finan .form-select select{
    width:100%;
    background-color: #fff;
    padding: 8px 15px;
    border: none;    
}
/* how-it-works */
.how-it-works p{
    font: 400 20px var(--para);
    color: var(--dark-color);
    text-align: center;
}

/* Style the tab */
.how-it-works{
    width: 100%;
}
.tab-list{
    background-color: var(--dark-color);
    margin-top: 40px;
    width: 100%;
}
.tabs{ 
    width: 18%;
    height: 100%;
    align-self: center;  
    list-style: none;
    list-style-position: inside;
    list-style-type: decimal; 
}
.tabs li{
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    font: 400 18px var(--para);
    color: #fff;
    margin-bottom: 40px;
    list-style-type: decimal;
}
.tab-list{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.tabs li.current{
    color: var(--highlight-color);
    position: relative;
}

.contents{
    width: 82%;
}
.tab-content{
    display: none;   
}
.text{
    width: 50%;
    padding: 40px 8% 40px 40px;
}

.text-img img{
    width: 50%;
    min-height: 40.3125rem;
    object-fit: cover;
}
.text-img p{
    color: #fff;
    font: 300 16px var(--para);
    text-align: left;
    margin: 30px 0px 50px;
}
.text-img h3{
    font: 400 30px var(--para);
    color: var(--highlight-color);
}

.text-img{
    width: 100%;
    display: flex;
    flex-direction: row;
    color: #fff;
}
.tab-content.current{
    display: inherit;
}

.hover-underline-animation {
    position: relative;
    color: var(--highlight-color);
  }
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 90%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0px;
    left: 5%;
    background-color: var(--highlight-color);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
  }
  
  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }


/* Why Build An ADU? */
.why ul{
    list-style: none;
    margin:40px 0px 40px 30px;
}
.why .row{
    align-items: center;
}
.why ul li{
    font: 400 16px var(--para);
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
}
.why ul li::before{
    position: absolute;
    content: '\f00c';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    text-align: center;
    line-height: 15px;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: var(--highlight-color);
    top: 30%;
    left: -5%;
    transform: translate(-30%, 5%);
}
.img-grid{
    width: 100%;
    display: flex;
    flex-direction: row;
flex-wrap: wrap;
    column-gap: 10px;
}
.half{
    width: 50%;
}
.img-grid .half img{
    width: 100%;
    margin-bottom: 10px;
    object-fit: cover;
}
.img-grid .half img:nth-child(2){
    margin-bottom: 0px;
}
.img-grid img{
    width: 48%;
    height: auto;
    object-fit: cover;
}
.why h2{
    text-align: left;
}
.why .yellow-btn a:hover, .choose .yellow-btn a:hover, .gallery .yellow-btn a:hover{
    color: var(--dark-color);
}
/* choose */
.choose img{
    width: 50%;
    display: block;
    margin: 40px auto 30px;
}
.choose{
    text-align: center;
    color: var(--dark-color);
}
.choose h4{
    font: 400 26px var(--para) ;   
}
.choose p{
    font: 400 16px var(--para);
}
.choose .yellow-btn{
    margin-top: 40px;
}

/* project */
.project{
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
}
.project h2{
    margin-bottom: 40px;
}
.project .half{
    display: inline-flex;
    column-gap: 10px;
    width: 100%;
}
.project .img-grid img{
    width: 100%;
}
.project .half img{
    height: auto;
    width: 49%;
}
.project .half img:nth-child(2){
    margin-bottom: 10px;
}
.project-outer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
    row-gap: 50px;
}
.project-content h3{
    font: 600 26px var(--para);
    color: var(--highlight-color);
}
.project-content p{
    color: var(--dark-color);
    font: 400 16px var(--para);
}

/* gallery */
.gallery h2{
    margin-bottom: 40px;
}
.column {
    flex: 23%;
    padding: 0 4px;
  }
  .column-half{
    display: flex;
    flex: 100%;
    max-width: 100%;
    flex-direction: column;
    column-gap: 10px;
  }
  .column.video-img img{
    margin-top: 0px;
  }
  .column.video-img video{
    padding-top: 7px;
  }
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    cursor: pointer;
  }
  .modal-img,.model-vid{
    width:100%;
    height:auto;
  }
  .modal-body{
    padding:0px;
  }
  .gallery {
    text-align: center;
  }
  .gallery video{
    width:100%;
    height:auto;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.gallery .yellow-btn{
    margin-top: 50px;
}

/* footer */
.footer{
    background-color: #000;
    color: #fff;
    padding: 40px 0px 0px;
}
.footer h2{
    color: #fff;
}
.footer-outer{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 30px 0px;
}
.footer-content{
    width: 30%;
}
.info{
    margin-bottom: 15px;
}
.info:last-child{
    margin-bottom: 0px;
}
.info a, .form-half{
    color: #fff;
    font:300 16px var(--para);
    display: flex;
    flex-direction: row;
}
.info a:hover{
    color: var(--highlight-color);
    text-decoration: none;
}
.info a i{
    font-size: 18px;
    margin-right: 10px;
    color: var(--highlight-color);
}
.footer-form{
    width: 50%;
}
.footer-logo{
width: 20%;
}
.footer img{
    width: 80%;
}
.form-half{
    column-gap: 30px;
}
.footer-form input, .footer-form textarea{
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.footer-form input::placeholder, .footer-form textarea::placeholder{
    color: #fff;
    font: 300 16px var(--para);
}
.form-half img{
    width: 35%;
    object-fit: contain;
}
.form-half .yellow-btn input{
    width: 50%;
}
.form-half .yellow-btn{
    margin: 0px;
    width: 65%;
}

/* copyright */
.copyright{
    padding: 10px 0px;
    width: 100%;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.copyright p{
    font: 300 14px var(--para);
    width: 78%;
}
.img-brand{
    width: 30%;
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    align-items: center;
}
.img-brand p{
    width: 80%;
}
.img-brand a{
    width: 50%;
}
.img-brand a img{
    width: 100%;
}


#contactmsg{margin-top: 10px; float: left; color: #fff;}

/* policy page */

.policy-top{
    width: 100%;
    padding-bottom: 10px;
    background-color: #000;
}
.policy-top .top{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.policy-title h1{
    font: 400 80px var(--heading);
    line-height: 5.625rem;
    text-align: center;
}

.policy-content{
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
}
.policy-content p{
    font: 400 16px var(--para);
    color: var(--dark-color);
}
.policy-content h4{
    font: 400 26px var(--para);
    font-weight: 600;
    margin: 30px 0px 10px;
}
.policy-content a, .policy-content a:hover{
    color: var(--highlight-color);
}
.copyright p a{
    color: #fff;
}




/*new_css*/
.started_sec{padding: 200px 0;background: url(../images/contactbg.jpg) repeat 0 0;}
.start_lft{background: #514e4b;padding: 50px 60px;}
.start_rgt{background: #fff;padding: 55px 40px; max-width: 570px; box-shadow: 0 0 4px 1px #b7b2b2; border-radius: 10px; position: absolute; right: 0px;}



.start_rgt input[type="text"], .start_rgt input[type="email"], .start_rgt input[type="tel"], .start_rgt input[type="submit"], .start_rgt select, .start_rgt textarea{border:none; border-bottom: #666666 solid 2px;background: none;outline: none; -webkit-appearance: none;color: #6b6b6b;font-size: 16.06px; line-height: 26px;font-weight: 500;font-family:'Poppins', sans-serif;width: 100%; resize: none;margin: 9px 0; padding: 5px;}
.start_rgt input[type="submit"]{background: #feb706;width: 220px;text-transform: uppercase;font-weight: 500;color: #000000; height: 55px; font-family:'Poppins', sans-serif; font-size: 22px; text-align: center; border: none; outline: none; -webkit-appearance: none;  border-radius: 10px; -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06); transition: all 0.5s;}
.start_rgt input[type="submit"]:hover{background: #000;color: #fff;}
.start_rgt select{background: #fff url(../images/arw.png) no-repeat right center;}
.start_rgt label{ width: 100%; display: inline-block; color: #6b6b6b;font-size: 16.06px; line-height: 26px;font-weight: 500;font-family:'Poppins', sans-serif; margin: 10px 0 0; }
.start_rgt select option{ color: #6b6b6b;font-size: 16.06px; line-height: 24px;font-weight: 500;font-family:'Poppins', sans-serif;}
/* .started_sec .start_rgt h5{color: #800080; font-size: 18px;} */
.started_sec .start_rgt h5{color: #fff; font-size: 16px; background: #800080; padding: 5px 0 8px 0; line-height: normal; text-align: center;}
.started_sec .start_rgt .adu-location input[type="text"]{height: 20px;}

.consult_innr{ width: 100%; position: relative; }
.consult_innr img{ width: 60%; object-fit: cover; min-height: 550px; border-radius: 10px; }
.consult_innr h2 { font-size: 34px; color: #000; text-transform: uppercase; font-weight: 700; padding: 0 0 20px; letter-spacing: 1px; }

.start_rgt input[type="text"]::placeholder, .start_rgt input[type="email"]::placeholder, .start_rgt input[type="tel"]::placeholder, .start_rgt select::placeholder, .start_rgt textarea::placeholder{color: #6b6b6b; opacity: 1; }

.start_rgt .capchaBox .g-recaptcha{transform:scale(0.77); transform-origin:0 0;}
.start_rgt input[type="submit"]{margin: 0 0 5px 0;}


.why_sec{ background-size: cover !important; }


.process_sec .container{max-width: 100%;}
.process_sec img{    max-width: 100%;
    width: 100%;
    height: auto; /* Removed fixed height for responsive adjustment */
    object-fit: cover; float: left;}
.proce_bx {    padding: 45px 0 45px 40px;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is vertically centered */}
.proce_bx h2{color: #feb706; text-align: left; }
.proce_bx p{color: #fff;font-size: 18px;font-family:'Poppins', sans-serif; line-height: 28px; }
.caro_bx strong{color: #feb706;font-size: 26px; line-height: 30px;font-weight: 700;font-family:'Poppins', sans-serif;padding-bottom: 13px;display: inline-block; }

.process_sec .col_md_6{padding: 0;}
.caro_bx{padding-top: 45px;display: flex;}
.caro_bx ul{display: flex;color: #fff;flex-direction: column; list-style: none; }
.caro_bx li a{font-size: 20px; line-height: 26px; font-weight: 700;width: 40px; height: 40px; border-radius: 50%;border: #fff solid 1px;display: flex;justify-content: center; align-items:center;margin:  10px 0;color: #fff;}
.caro_bx li.active a {background: #feb706; color:#3d3d3d; border-color:#feb706;}
.caro_in{padding: 16px 0 0 30px;display: none;}
.process_sec img{min-height: 630px; height: 100%;}
.proce_rgt{    background: #212121;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is centered */}
.process_sec .rows{margin: 0;}

.process_sec  .row.d-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.process_sec .col-lg-6{ padding: 0px;     display: flex;
    flex-direction: column;}
.process_sec .yellow-btn{ margin: 30px 0 0; }

.project_why{ background-size: cover !important; text-align: center; }
.project_whybox{ width: 100%; background: #cfcece; padding: 25px; border-radius: 10px; min-height: 380px; }
.project_whybox i{ width: 154px; height: 154px; background: #212121; border-radius: 100%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; flex-direction: column; box-shadow: 0 0 6px 3px #969595; }
.project_whybox i img{ max-width: 100% !important; width: auto !important; display: inline-block !important; }
.project_whybox h4{ font-size: 24px; line-height: 30px; text-transform: uppercase; font-weight: 700; padding: 0 0 15px; margin: 0px; text-shadow: 0 1px 4px #626161; }
.project_whybox p{ font-size: 16px; line-height: 26px; font-family:'Poppins', sans-serif; font-weight: 400; }
.project_why .owl-prev{ width: 23px; height: 39px; background: url(../images/prev.png) no-repeat 0 0 !important; background-size: 100% !important; position: absolute; left: -40px; top: 50%; font-size: 0px !important;transform: translate(0, -50%); }
.project_why .owl-prev:hover{background: url(../images/prev_hvr.png) no-repeat 0 0 !important;}
.project_why .owl-next{ width: 23px; height: 39px; background: url(../images/next.png) no-repeat 0 0 !important; background-size: 100% !important; position: absolute; right: -40px; top: 50%; font-size: 0px !important; transform: translate(0, -50%); }
.project_why .owl-next:hover{background: url(../images/next_hvr.png) no-repeat 0 0 !important;}
.project_why .owl-dots{ display: none; }
.project_why .yellow-btn a:hover{ color:#000; }
.project_why .yellow-btn a{color:#000 !important; font-family:'Poppins', sans-serif; text-transform: uppercase; font-weight: 500; }
.project_why .yellow-btn{ margin-top: 50px; }
.yellow-btn a{color:#000; font-family:'Poppins', sans-serif; text-transform: uppercase; font-weight: 500; border-radius: 10px; -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.06);}

.banner_sec { width: 100%; position: relative; min-height: 670px; }
.banner_left{ width: 100%; }
.banimg{ width: 50%; position: absolute; right: 0px; top: 0px; }
.banimg img{ width: 100%; object-fit: cover; height: 670px; }
.banner_sec .col-sm-6{ padding: 0px; }
.banner_sec:before{background: url(../images/banner_patterns.jpg) repeat 0 0; width: 50%; position: absolute; left: 0px; top: 0px; height: 100%; content: ""; }
.banner_left .title { width: 100%; }
.banner_left .title h1{ font-size: 60px; line-height: 75px; color: #e8aa14; padding: 0 0 15px; }
.banner_left .title h5{ padding: 0 0 15px; }
.banner_left .title-form { padding: 75px 0 0px;}
.logo img { width: 200px; margin-top: 10px; }
.banner_sec .top .call{ color:#fff; margin: 0 30px 0 0; background: url(../images/call.png) no-repeat left top 3px; padding: 0 0 0 30px; }
.mob{ display: none;}
.desk{ display: block; }
.start_rgt #contactmsg{ color: #000 !important;}.project_whybox h4{ text-shadow: 0 1px 1px #626161;}
.project_whybox{ text-align: center;}.project_why, .why_sec, .started_sec{ background-attachment: fixed !important;}



/* Website redisgn starts here */
.gldbrg-bnr-sec{width: 100%; padding: 10px 0 12% 0; position: relative; z-index: 1;}
.gldbrg-bnr-sec .overlay{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: -1;}
.gldbrg-bnr-sec .banner_left{width: 100%;}
.gldbrg-bnr-sec .top{width: 100%; align-items: center; justify-content: space-between; display: flex;}
.gldbrg-bnr-sec .top .call{ color:#fff; margin: 0 30px 0 0; background: url(../images/call.png) no-repeat left top 3px; padding: 0 0 0 30px; }
.gldbrg-bnr-sec .banner_left .title { width: 100%; }
.gldbrg-bnr-sec .banner_left .title h1{ font-size: 60px; line-height: 75px; color: #e8aa14; padding: 0 0 15px; }
.gldbrg-bnr-sec .banner_left .title h5{ padding: 0 0 15px; font-size: 27px;}
.gldbrg-bnr-sec .banner_left .title-form { margin: 75px 0 0px;}




.start_rgt{background: #fff;padding: 30px; max-width: 570px; -webkit-box-shadow: 0px 4px 30px -1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 4px 30px -1px rgba(0,0,0,0.1);
    box-shadow: 0px 4px 30px -1px rgba(0,0,0,0.1); border-radius: 0px 0px 21px 21px; position: absolute; right: 4%; top: 0; z-index: 3;}
.start_rgt h2 { font-size: 34px; color: #000; text-transform: uppercase; font-weight: 700; padding: 0 0 10px; letter-spacing: 1px; }
.start_rgt h5{color: #fff; font-size: 16px; background: #800080; padding: 5px 5px 8px 5px; line-height: normal; text-align: center;}

.tag-section{width: 100%; padding: 5% 0;}
.tag-section .tag-row{width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 90px;}

.tag-section .tag-row .tag img{/*filter: grayscale(100%);   */
    transition: filter 0.5s ease; /* Smooth transition */ width: 250px;}
.tag-section .tag-row .tag .best-price{width: 200px;}

.tag-section .tag-row .tag img:hover{filter: grayscale(0%); /* Full color on hover */}


.why-chose-sec{width: 100%; padding: 60px 0;}
.why-chose-sec .choose-row{margin: 30px 0 0 0; display: flex; justify-content: center; row-gap: 30px; flex-wrap: nowrap;}
.why-chose-sec .col-md-6, .why-chose-sec .col-lg-4 {
    display: flex;
    flex: 1 1 30%; /* Adjust the basis as needed */
}


.why-chose-sec .choose-box {
    background-color: #fff; /* Default white background */
    background: linear-gradient(135deg, #fff 50%, transparent 50%);
    background-size: 200% 200%;
    background-position: top left;
    transition: background-color 0.5s ease-in-out, background-position 0.5s ease-in-out;
    padding: 30px 20px;
    border-radius: 21px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.09);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.5s ease-in-out, background-position 0.5s ease-in-out; /* Smooth transition */
}
.why-chose-sec .choose-box .choose-icon{width: 100px; height: 100px; border-radius: 50%; padding: 10px; border: 1px solid #b8b8b8; display: block; margin: 0 auto 10px auto;}
.why-chose-sec .choose-box .choose-icon img{padding: 10px;}
.why-chose-sec .choose-box .choose-icon .black-icon{display: none;}
.why-chose-sec .choose-box:hover .choose-icon img{display: none;}
.why-chose-sec .choose-box:hover .choose-icon .black-icon{display: block;}

.why-chose-sec .choose-box:hover {
    background-color: #feb706; /* Change to #feb706 on hover */
    background-position: bottom right; /* Keep diagonal gradient animation */
}
.why-chose-sec .choose-box:hover .choose-icon{border: 1px solid #000000;}
.why-chose-sec .yellow-btn a:hover{color: #000000;}
.why-chose-sec .yellow-btn{text-align: center; margin: 40px auto 20px auto;}



.slider-sec{width: 100%; padding: 60px 0;}
.slider-sec h2{margin: 0 0 30px 0;}
.slider-sec h4{font: 600 24px var(--para); text-align: center; margin: 0 0 15px 0;}

.slider-sec #image-gallery{height: 500px !important;}
.slider-sec #image-gallery li img{width: 100%;}

.video-sec{width: 100%; padding: 0 0 60px 0;}
.video-sec .video-row{row-gap: 20px;}
.video-sec h4{font: 600 24px var(--para); text-align: center; margin: 0 0 15px 0;}




  
  

@media only screen and (max-width: 1199px) {
.project_why .owl-carousel {padding: 0 30px; }
.project_why .owl-prev {left: -12px;}
.project_why .owl-next {right: -12px;}
.proce_bx { padding: 30px 0 30px 30px; max-width: 475px;}
.caro_bx { padding-top: 34px;}
.proce_bx p { font-size: 16px; line-height: 27px;}
.caro_bx strong { font-size: 24px; line-height: 28px; padding-bottom: 13px;}
.caro_in { padding: 16px 0 0 24px;}
.start_rgt { padding: 30px; max-width: 500px; min-height: 640px;}
.consult_innr h2 { font-size: 30px; padding: 0 0 30px;}
.banner_left .title h1 { font-size: 48px; line-height: 64px; padding: 0 0 15px;}
.banimg img { height: 580px;}
.banner_sec { min-height: 580px;}
.banner_left .title {padding-right: 15px;}






}

@media only screen and (max-width: 991px) {
.banner_left .title h1 { font-size: 40px; line-height: 52px; padding: 0 0 15px;}
.banimg img { height: 500px;}
.banner_sec { min-height: 500px;}
.banner_left .title {padding-right: 15px;}
.banner_left .title-form { padding: 55px 0 0px;}
.project_whybox h4 { font-size: 22px; line-height: 28px;}
.project_whybox { padding: 20px; min-height: 390px;}
.project_why .owl-next { right: 0; width: 17px !important;  background-size: 17px !important;}
.project_why .owl-next:hover{ width: 17px !important; background-size: 17px !important; }
.project_why .owl-prev { left: 0; width: 17px !important; background-size: 17px !important; }
.project_why .owl-prev:hover{ width: 17px !important;background-size: 17px !important; }
.proce_rgt, .process_sec img { min-height: inherit; height: auto;}
.proce_bx { padding: 30px; max-width: 100%;}
.start_rgt { padding: 30px; max-width: 100%; min-height: inherit; position: inherit; right: inherit;  top: inherit; margin: 0; border-radius: 10px 10px 0 0;
}
.consult_innr img { width: 100%; object-fit: cover; min-height: inherit; border-radius: 0 0 10px 10px;}
.started_sec { padding: 60px 0;}


.start_rgt .capchaBox .g-recaptcha{transform: none;}
.start_rgt .capchaBox{display: flex; justify-content: center;}
.start_rgt .btnbox{text-align: center; margin: 15px 0 0 0;}


}

@media only screen and (max-width: 767px) {
.yellow-btn a { padding: 7px 18px;  width: auto;  display: inline-block;  text-align: center;}
.proce_bx { padding: 40px 30px; max-width: 100%;}
.banner_left .title h1 { font-size: 51px; line-height: 51px; padding: 0 0 15px;}


}

@media only screen and (max-width: 575px) {
.banimg { width: 100%;  position: inherit; right: inherit; top: inherit;}
.banner_sec::before { width: 100%;}	
.banner_left .title-form { padding: 40px 0 0px;}
.banimg img { height: auto;}
.project_whybox i img { width: 75px !important;}
.project_whybox i { width: 125px; height: 125px;}
.project_whybox { padding: 15px; min-height: 390px;}
.project_whybox h4 { font-size: 19px; line-height: 24px;}
.project_whybox p { font-size: 15px; line-height: 25px;}
.caro_bx strong { font-size: 18px; line-height: 25px; padding-bottom: 13px;}
.caro_bx li a { font-size: 17px; line-height: 22px; width: 35px; height: 35px;}
.caro_in { padding: 16px 0 0 18px;}
.start_rgt { padding: 20px;}	
.consult_innr h2 { font-size: 25px; padding: 0 0 20px;  margin: 0;}
.start_rgt input[type="submit"]{ width: 100%; }
.mob{ display: block;}
.desk{ display: none; }
.banner_left .title { padding: 0 15px;}
.banner_sec .top .call { margin: 15px 0 0;}

	
}


@media only screen and (max-width: 450px) {
.start_rgt .capchaBox .g-recaptcha{transform:scale(0.77);}
}



