/*header style start here*/
/* *, */
::after,
::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* font-family: 'Mantserrat-Regular'; */
}
:root{
    --blue: #053EFF;
    --white: #FFFFFF;
    --red-font: #FE4519;
    --black: #222222; 
    --gray: #e3e3e3;
    --pblack:#262626;
}
@font-face {
    font-family: 'Mantserrat-thin';
    src: url('/assets/fonts/Montserrat-Thin.ttf');

    font-family: 'Mantserrat-Light';
    src: url('/assets/fonts/Montserrat-Light.ttf');

    font-family: 'Mantserrat-Medium';
    src: url('/assets/fonts/Montserrat-Medium.ttf');
    
    font-family: 'Mantserrat-Regular';
    src: url('/assets/fonts/Montserrat-Regular.ttf');

    font-family: 'Mantserrat-SemiBold';
    src: url('/assets/fonts/Montserrat-SemiBold.ttf');
}

body{
    width: 100%;
    font-family: 'Mantserrat-Regular';
    color: var(--pblack);
}
.PContainers{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}
.mains{
    width: 100%;
    width: 1050px;
}

 h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-family: 'Mantserrat-SemiBold'!important;
}
p{
    font-size: 20px;
}
.h1{
    font-size: 40px;
    font-family: 'Mantserrat-SemiBold' ;
    color: var(--black);
    font-weight: 700 !important;
}
#red-span{
    color: var(--red-font);
    border-bottom: 4px solid var(--red-font);
}
#imgs{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* buttons */
.blueBtn{
    background-color: var(--blue) !important;
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 5px;
    transition: ease 0.5s;
}
.whiteBtn{
    background-color: var(--white);
    color: var(--blue);
    outline: none;
    border: none;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: ease 0.5s;
}
.blueBtn:hover{
    background-color: #dad6d6;
}
.whiteBtn:hover{
    background-color: #dad6d6;
}
/* Nav */
.nav-container{
    width: 100%;
    background-color: white;
    padding: 15px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    position:fixed;
    z-index: 999;
    box-shadow: 5px 5px 10px #22222279;;
}
.nav-container nav{
    width: 100%;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo{
    max-width: 175px;
    max-height: 51.91px;
    overflow: hidden;
}
.nav-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
nav .main-menu{
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: right 0.3s;
}
nav .main-menu a{
    text-decoration: none;
    color: black;
}
.main-menu a.active {
    color: var(--blue); /* Change to the desired color for the active link */
}
nav .main-menu .hover,
.servicebtn{
    font-weight: 600;
    font-size: 18px;
}
nav .main-menu .hover:hover,
.main-menu .dropdown .btns:hover{
    /* border-bottom: 3px solid var(--blue); */
    color: var(--blue);
}
nav .navbtn{
    padding: 10px 16px;
}

.main-menu .dropdown .btns{
    border: none;
    background-color: transparent;
    outline: none;
    /* color: var(--blue); */
}
.dropdown .dropdown-menu{
    /* position: absolute !important; */
    border-radius: 25px;
    border: none;
    /* right: ; */
    padding: 25px ;
    top: 30px !important;

    /* background-color: var(--blue) !important; */
}
.dropdown .dropdown-menu a{
    font-size: 17px;
    padding: 5px;
    /* color: blue !important; */
}

.dropdown .dropdown-menu a:hover{
    color: var(--red-font);
    background-color: var(--white) !important;
}
.icon{
    display: none;
}
.icon i{
    font-size: 30px;
}
@media(max-width:800px){
    .icon{
        display: block;
        z-index: 100;
    }
    .icon .closs{
        display: none;
    }
    .nav-container{
        padding-right: 20px;
    }
    nav .main-menu{
        flex-direction: column;
        position: absolute;
        top: 7rem;
        right: -120%;
        width: 100%;
        min-height: 100vh;
        justify-content: start;
        gap: 20px; 
        overflow: hidden;
        background-color: var(--white);
    }    
    ul.active {
        right: 0;
    }
    ul.active ~ .icon .open{
        display: none;
    }
    ul.active ~ .icon .closs{
        display: block;
    }
    .dropdown .dropdown-menu{
        left: -200px;
    }
}
header{
    margin-top: 0px;
    padding-top: 0px;
}
/* header style end here*/

/* article style start here*/
.articletxt h1{
    color: white;
    font-size: 40px;
    /* font-family: 'Mantserrat-SemiBold'; */
    margin-bottom: 0px;
    font-weight: 700;
    
    padding: 10px 0 10px 0;
}

.atgrid{
    font-size: 20px;
    color: white;
    padding-top: 34px;
    
    padding: 19px 0 28px 18px;
}
.btnrequest{
    margin-top: 20px;
}
.btnrequest button a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.btnrequest button{
    background-color: #053EFF;
    border: none;
    /* font-family: 'montserrat-SemiBold'; */
   padding:17px 29px;
    margin-top: 44px;
    border-radius: 10px;
    color: var(--white);
}
.btnrequest button:hover{
    background-color: rgb(64, 107, 250)
}

.atgrid{
    font-weight: 500;
    font-size: 17px;
}
.article{
    width: 100%;
    justify-content: start;
    align-items: center;
    display: flex;
    padding-left: 20rem;
    height: 800px;
        position: absolute;
    top: 0;
    left: 0;
   
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    
}
.articletxt{
    width: 70%;
    margin-top: 10rem;
    text-align: center;
}

article{
    background: url('/assets/images/TechGhero1.png');
   background-repeat: no-repeat;
   background-size:cover;
   /* padding-top: 15em; */
  
   height: 770px;
   font-family: "Mantserrat-SemiBold";
}
.body{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.bodybg{
    /* background-image: url('/assets/images/improvementBody1.jpg'); */
    background-size: contain;
    /* padding-bottom: 71px; */
    padding-bottom: 104px;
}
.center-body{
    width: 1040px;   
}
.maingrid h5{
    font-size: 20px;
    margin:70px 0 63px 0;
}

.bodycontent{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 30px;
}
.bodycontent p{
    padding-left: 0;
}
.img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.medal-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 109px;
    font-size: 20px;
}
.medal-flex .medal{
    width: 384px;
}
.how-to-body{
    background-color: #F6F7FA;
    padding: 86px 0;
}
.explanation h1{
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}
/* .explanation p{
    font-size: 24px;
} */
.how-to-body .center-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 114px;
}
.description-img{
    width: 686px;
    height: 586px;
    overflow: hidden;
}
.solution h2{
    font-weight: 700;
    text-align: center;
    margin-bottom: 62px;
}
.solution p{
    text-align: center;
    /* font-size: 24px; */
}
.solution-analysis{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.solution-analysis .card{
    width: 500px;
    background-color: var(--white);
}
.card .cardimg{
    height: 227px;
    overflow: hidden;
}
.card .card-content {
    padding: 40px 55px 58px 32px; 
}
.card .card-content h4{
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 28px;
}
.card .card-content p{
    font-size: 14px m !important;
}
.how-to-body .center-body button{
    padding: 14px 35px !important;
}
.why-TechgridBody{
    padding: 53px 0 102px 0;
}
.why-techgrid{
    text-align: center;
    margin-bottom: 200px;
}
.why-techgrid h1{
    font-weight: 700;
    color: black;
    padding-bottom: 35px;
    /* font-family: 'Mantserrat-SemiBold'; */
}
.why-techgrid-analysis{
    display: flex;
    flex-direction: column;
    gap: 146px;
}
.why-techgrid-analysis .why-techgrid-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 47px;
}
.why-techgrid-grid .grid-img{
    width: 478px;
    height: 407px;
}
.dstp-img-hidden{
    display: none;
}
.grid-cont h4{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 35px;
}

.improvement-automation{
    background-color: #F6F7FA;
    /* background-image: url('/assets/images/improvement-underlay.jpg'); */
}
.scoping{
    margin-top: 25px;
    font-size: 24px;
}
.softwareinner h1{
    font-size: 40px;
    margin:120px 0 83px 0;
    font-weight:bold;
    /* color: #262626; */
    text-align: center;
}

.grid1{padding-top: 63px;}

/* software */
.software{
    padding-bottom: 89px;
}
.softwareinner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.softflex{
    /* padding-top: 108px; */
    max-width: 888px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    margin: 100px 0;
}
/* @media(max-width:800px){
 .softflex{
    margin-bottom: ;
 }
} */
.grid1{
    padding-top: 53px;
}
.clientsImg{
    width: 256px;
    height: 140px;
    overflow: hidden;
    border-radius: 10px;
}
.clientsImg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.our-clients-cards h4{
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.pro{
    margin-top: 135px;
    font-size: 16px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.795);
    height: 33%;
    border-radius:0 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.diffhead{
    font-size: 25px;
    margin-bottom: 72px;
    font-weight:bold;
    color: #262626;
}
.charm{
    display: flex;
    justify-content: start;
    align-items: center;
}
.charm img{
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.charm span{
    font-size: 24px;
}
.expertise-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    row-gap: 20px;
}
.diff{
    margin-top: 137px;
    margin-bottom: 60px;
}
/* main style ends here*/

/*fillform style start here*/
.fillform{
    background: url('/assets/images/service-form-section-bg.jpg');
    min-height: 1035px;
    background-repeat: no-repeat;
    background-size:cover;
    /* background-color: black; */
    color:white;
    padding-top: 20px;
    text-align: center;
}
.fillform .fill{
    max-width: 968px;
    text-align: left;
    margin-bottom: 13px;
}
.body .fill p{
    font-size: 24px;
    padding-right: 12rem;
    line-height: 50px;
}
.body form{
    background-color: var(--white);
    padding: 63px 33px;
    max-width: 852px;
    box-shadow: 5px 5px 20px #a5a3a3;
}
.inputs-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 26px;
    margin-bottom: 50px;
}
form #input,
form textarea,
select{
    width: 100%;
    padding: 10px 67px;
    font-size: 20px;
    border-radius: 5px;
    border:1px solid var(--gray);
    outline: none;
}
#checkbox-section{
    display: flex;
    justify-content: start; 
    align-items: center;
    gap: 10px;
    margin: 19px 0;
}
#checkbox-section input{
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray);
}
#checkbox-section p{
    font: 20px;
    padding-top:10px;
    color: var(--pblack);
    /* color: var(--gray); */
}
form button{
    font-size: 20px;
    margin-bottom: 26px;
    padding: 20px 147px !important;

}
form #submitting{
    color: var(--pblack);
    padding: 0 15rem;
}
form p a{
    color: var(--blue);
    text-decoration: none !important;
}


/* section11 / Footer */

.section11{
    background-color: var(--black);
    padding: 70px  0;
    color: var(--white);
}
footer .footer-content-box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.footer-content{
    max-width: 298px;
}
.footer-content h5{
    font-weight: 600;
    color: var(--white);
    padding-bottom: 15px;
    font-size: 17px;
}
.footer-content ul{
    list-style-type: none;
    line-height: 30px;
    padding: 0;
}
.footer-content ul a{
    text-decoration: none;
    color: F6F6F6;
    cursor: pointer;
    font-size: 16px;
}
.footer-content ul a:hover{
    color:orange;
}
.footer-content ul a{
    text-decoration: none;
    color: var(--white);
}
.footer-content button{
    font-size: 20px;
    margin-top: 39px;
}
footer .copyrigth{
    width: 100%;
    text-align: center;
    margin-top: 80px;
}

.mobileTopBorder{
    display: none;
}

/* .fillformbody{
    
} */
 @media (max-width:800px){
    p{
        font-size: 14px;
    }
    .article{
        padding-left: 0;
        justify-content: start;
        align-items: start;
        height: 600px;
    }
    
    .articletxt{
        width: 85%;
        /* padding:0 53px 0 34px; */
        text-align: left;
        margin-top: 12rem;
    }
    .articletxt h1{
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 400;
        padding: 9px 0 11px 18px;
    }
    .atgrid{
        font-size: 12px;
        padding: 16px 0 20px 18px;
        font-family: 'montserrat-thin';
    }
    .btnrequest{
        margin-top: 0;
    }
    .btnrequest button a{
        font-size: 16px;
    }
    .btnrequest button{
       padding:17.5px 26px;
        margin: 15px 0 0 20px;
        /* margin-left: 18px; */
    }
    .atgrid{
        font-weight: 500;
        font-size: 17px;
    }
    article{
        background: url('/assets/images/Web-dev-mobile-bg.png ');
       background-size:cover;
       height: 588px;
    }
    
    .bodybg{
        /* background-image: url('/assets/images/software-body-bg2.jpg'); */
        /* background-size: contain; */
        padding-bottom: 95px;
    }
    .center-body{
        width: 100%;   
        max-width: 321;
        /* padding: 35px; */
    }
    /* .maingrid h5{
        font-size: 10px;
        text-align: center;
        margin:30px 52px;
        
    } */
    .bodycontent{
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 40px;
    }
    
    /* .IT-why-choose-us span{
        padding-top: 20px
    } */
    .softwareinner h1{
        font-size: 20px;
        text-align: center !important;
        margin:89px 35px;
    }




    .maingrid h5{
        font-size: 20px;
        margin:18px 0 32px 0;
    }
    
    .bodycontent{
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 30px;
    }
    .bodycontent p{
        padding-left:0;
        font-size: 14px;
    }
    /* .img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */
    .medal-flex{
        flex-direction: column;
        max-width: 220px;
        gap: 38px;
        font-size: 12px;
        margin-left: 50px;
    }
    .medal-flex .medal{
        width: 211px;
    }
    .how-to-body{
        background-color: #F6F7FA;
        padding: 40px;
    }
    .explanation h1{
        /* font-weight: 700; */
        margin-bottom: 0 0 50px 0;
        /* text-align: center; */
        font-size: 20px;
    }
    /* .explanation p{
        font-size: 24px;
    } */
    .how-to-body .center-body{
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        gap: 48px;
    }
    .description-img{
        width: 232px;
        height: 256px;
        /* overflow: hidden; */
    }
    .solution h2{
        /* font-weight: 700; */
        font-size: 20px;
        /* text-align: center; */
        margin-bottom: 17px;
    }
    .solution p{
        /* text-align: center; */
        font-size: 14px;
    }
    .solution-analysis{
        display: flex;
        flex-direction: column;
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 19px;
    }
    .solution-analysis .card{
        width: 100%;
        height: 774px;
        /* background-color: var(--white); */
    }
    .card .cardimg{
        width: 100%;
        height: 227px;
        overflow: hidden;
    }
    .card .card-content {
        padding: 40px 19px 37px 32px; 
    }
    .card .card-content h4{
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .card .card-content p{
        font-size: 14px !important;
        line-height: 30px;
    }
    .how-to-body .center-body button{
        padding: 18px 35px !important;
        /* width: 288px; */
        font-weight: 700;
        font-size: 20px;
    }
    /* .why-TechgridBody{
        padding: 53px 0 102px 0;
    } */
    .why-techgrid{
        /* text-align: center; */
        margin-bottom: 44px;
    }
    .why-techgrid h1{
        /* font-weight: 700; */
        font-size: 20px;
        color: black;
        padding-bottom: 35px;
        /* font-family: 'Mantserrat-SemiBold'; */
    }
    .why-techgrid p{
        font-size: 14px;
    }
    .why-techgrid-analysis{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .why-techgrid-analysis .why-techgrid-grid{
        display: flex;
        flex-direction: column;
        grid-template-columns: repeat(2, 1fr);
        gap: 47px;
    }
    /* .why-techgrid-grid .grid-1{
        display: flex !important;
        flex-direction: column-reverse !important;
    } */
    .why-techgrid-grid .grid-img{
        width: 100%;
        height: 251px;
    }
    .dstp-img-hidden{
        display: block;
    }
    .mobile-img-hidden{
        display: none;
    }
    .dstp-img-hidden{
        display: block;
    }
    .grid-cont h4{
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .improvement-automation{
        background-color: #F6F7FA;
        /* background-image: url('/assets/images/improvement-underlay.jpg'); */
    }
    
    
    .softflex{
        padding-top: 0;
        max-width: 100%;
        gap: 16px;
        margin: 65px 0;
        display: flex;
        flex-direction: column;
    }
    .our-clients-cards{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .softflex .mobile-disable{
        display: none;
    }

    .grid1{
        padding-top: 53px;
    }
    
    .pro{
        margin-top: 81px;
        font-size: 10px;
    }
    .diff{
        margin: 41px 0 118px 0;
    }
    .diffhead{
        font-size: 2px;
        margin-bottom: 0;
        font-weight:bold;
        color: #262626;
        margin: 41px 0 61px 0 !important;
    }
    .expertise-grid{
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .charm{
        justify-content: start;
        align-items: start;
    }
    .charm img{
        margin-right: 10px;
        width: 19px;
        height: 19px;
    }
    .charm span{
        font-size: 16px;
    }
    
    /* main style ends here*/
    /*fillform style start here*/
    .fillform{
        background: url('/assets/images/service-form-section-bg.jpg');
        min-height: 708px;
        background-repeat: no-repeat;
        background-size:cover;
        /* background-color: black; */
        color:white;
        padding-top: 20px;
        text-align: center;
    }
    .fillform.body{
        align-items: center;
        justify-content: start;
    }
    .fillform .body{
        align-items: start !important;
    }
    .fillform .fill{
        max-width: 968px;
        text-align: left;
        margin-bottom: 13px;
    }
    .body .fill p{
        font-size: 12px;
        padding: 0 30px;
        line-height: 25px;
    }
    
    .body form{
        background-color: var(--white);
        padding: 33px 26px;
        max-width: 332px;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 0;
        margin-bottom: 45px;
        /* align-items: center; */
    }
    .body form h1{
        font-size: 20px;
    }
    .inputs-container{
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    /* form #input{
        padding: ;
    } */
    form textarea{
        height: 80px;
    }
    .select{
        margin: 0;
        width: 100%;
        padding:18px;
    }
    form #input,
    form textarea,
    select{
    padding: 10px 17px;
    font-size: 14px;
    }

    
    #checkbox-section{
        margin: 15px 0;
    }
    #checkbox-section input{
        width: 24px;
        height: 24px;
    }
    #checkbox-section p{
        font: 14px;
    }
    form button{
        font-size: 14px;
        width: 170px;
        padding: 15px 20px !important;
    }
    form #submitting{
        font-size: 10px;
        padding: 0;
    }
    
    /* section11 / Footer */
    
    .section11{
        padding: 43px 0 82px 0;
        position: relative;
    }
    footer .footer-content-box{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 30px;
    } 
    .footer-content{
        max-width: 298px;
    }
    .footer-content h5{
        font-weight: 600;
        color: var(--white);
        padding-bottom: 15px;
        font-size: 17px;
    }
    .footer-content ul{
        line-height: 50px;
        padding: 0;
    }
    .footer-content ul a{
        text-decoration: none;
        color: F6F6F6;
        cursor: pointer;
        font-size: 16px;
    }
    /* .footer-content ul a:hover{
        color:var(--blue);
    } */
    .footer-content ul a{
        text-decoration: none;
        color: var(--white);
    }
    .footer-content button{
        font-size: 16px;
        margin: 39px 0 32px 0;
    }
    footer .mobileTopBorder{
        display: block;
        border-top: 1px solid #686666;
        width: 100%;
        height: 5px;
        position: absolute;
        left: 0;
        bottom: 46.5%;
    }
    footer .mgn1{
        margin-bottom: 35px;
    }
    footer .mgn2{
        margin-top: 35px;
    }
    
    footer .copyrigth{
        /* width: 100%; */
        font-size: 8px;
        /* text-align: center; */
        margin-top: 80px;
    }
}
