@import 'font.css';

:root{
    --primaryColor:#2d4859;
    --secondPrimaryColor:#FE8F3F;
    --textColor:#f2f2f2;
}

*{
    outline: none;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

a{
    text-decoration: none;
    color: inherit;
}

body{
    font-family: 'Shabnam';
    direction: rtl;
    padding: 0;
    margin: 0;
}

.tempbtn{
    font-family: 'Shabnam';
    background-color: var(--secondPrimaryColor);
    text-align: center;
    cursor: pointer;
    border: 0;
    padding: 11px 22px;
}

.tempInput{
    font-family: 'Shabnam';
    background-color: transparent;
    color: var(--textColor);
    border: 0;
}

.siteTitle{
    font-family: 'Shabnam-bold';
    font-size: 20px;
}

.container{
    width: 90%;
    margin: auto;
}

.boxWithColor{
    background-color: var(--primaryColor);
}

/* plugin Input */


/* form starting stylings ------------------------------- */
.formInputGroup{ 
    position:relative; 
    margin-bottom:45px; 
  }
  .formInputGroup input         {
    font-size:18px;
    padding:10px 10px 10px 5px;
    display:block;
    width:300px;
    border:none;
    background-color: transparent;
    border-bottom:1px solid #757575;
  }
  .formInputGroup input:focus     { outline:none; }
  
  /* LABEL ======================================= */
  .formInputGroup label          {
    color:#999; 
    font-size:18px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:10px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  
  /* active state */
  .formInputGroup input:focus ~ .formInputGroup label, .formInputGroup input:valid ~ .formInputGroup label    {
    top:-20px;
    font-size:14px;
    color:#5264AE;
  }
  
  /* BOTTOM BARS ================================= */
  .formInputGroup bar  { position:relative; display:block; width:300px; }
  .formInputGroup bar:before, .formInputGroup bar:after   {
    content:'';
    height:2px; 
    width:0;
    bottom:1px; 
    position:absolute;
    background:#5264AE; 
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  .formInputGroup bar:before {
    left:50%;
  }
  .formInputGroup bar:after {
    right:50%; 
  }
  
  /* active state */
  .formInputGroup input:focus ~ .formInputGroup bar:before, .formInputGroup input:focus ~ .formInputGroup bar:after {
    width:50%;
  }
  
  /* HIGHLIGHTER ================================== */
  .formInputGroup .highlight {
    position:absolute;
    height:60%; 
    width:100px; 
    top:25%; 
    left:0;
    pointer-events:none;
    opacity:0.5;
  }
  
  /* active state */
  .formInputGroup input:focus ~ .formInputGroup label {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
  }
  
  /* ANIMATIONS ================ */
  @-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
    to  { width:0; background:transparent; }
  }
  @-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
    to  { width:0; background:transparent; }
  }
  @keyframes inputHighlighter {
    from { background:#5264AE; }
    to  { width:0; background:transparent; }
  }
  
  

/* plugin Input (END) */

/* Side Nav */

#sideNavMain{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
}

.sidenav {
    /*height: 100%;*/
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: var(--primaryColor);
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /*justify-content: space-between;*/
    padding-top: 60px;
}
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 25px;
    font-size: 36px;
    padding-left: 0;
    margin-right: 50px;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

.sideNavBox{
    text-align: center;   
}

.sideNavBox img{
    width: 100px;
    height: 100px;
    border: 2px solid var(--secondPrimaryColor);
    border-radius: 50%;
    object-fit: cover;
}

.logoutlinkSideNav{
    color: var(--textColor);
    text-align: center;
}

.logoutlinkSideNav a{
    text-decoration: underline;
    font-size: 17px;
    padding-left: 0;
}

/* Side Nav (END) */

.siteForm{
    position: relative;
    background-color: var(--primaryColor);
    padding: 25px;
}

.successFullySendForm{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.successFullySendFormBox{
    background-color: #fff;
    text-align: center;
    border: 1px solid var(--secondPrimaryColor);
    color: #27bd68;
    padding: 25px;
}

.SSFB-box{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(39, 141, 104, 0.251);
    margin: auto;
    margin-bottom: 20px;
}

.errorForm{
    color: #FE622C;
    font-size: 14px;
    position: absolute;

}

/* header */

.mainHeaderBox{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}

.mainHeaderBox .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Shabnam';

    padding: 20px 0;
}

.resMenuBtn{
    display: none;
    cursor: pointer;
}

.headerSearch{
    background-color: var(--primaryColor);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
}

.headerMenu{
    display: flex;
    align-items: center;
}

.headerMenuCard{
    color: #000;
    margin: 0 10px;
}

.headerTitle{
    font-family: 'Shabnam-bold';
}

.authHeaderMainDiv{
    display: flex;
    align-items: center;
}

/* header (END) */

.mainHeaderImageBox{
    position: relative;
    font-family: 'Shabnam';
    margin-bottom: 60px;
}

.mainHeaderImageBox img{
    width: 100%;
}

.MHIB-onImage{
    width: 100%;
    height: calc(100% - 8px);
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    color: var(--textColor);
    padding-right: 15px;
}

.MHIB-onImageCard{
    width: 50%;
    line-height: 1.5;
}

.MHIB-onImageCardTitle{
    font-family: 'Shabnam-bold';
    font-size: 40px;
    margin-bottom: 15px;
}

.MHIB-onImageCardText{
    margin-bottom: 15px;
}

.MHIB-onImageCardbtn{
    width: 200px;
}

/* Home Box */

.homesBox {
    padding: 85px 0;
}

.homesBox .container{
    display: flex;
    align-items: center;
    color: var(--textColor);
}

.homesBoxRight{
    width: 35%;
    margin-left: 45px;
}

.HBR-title{
    font-size: 36px;
    font-family: 'Shabnam-bold';
    margin-bottom: 15px;
}

.HBR-text{
    font-size: 15px;
}

.homesBoxLeft{
    width: 60%;
}

.homesBoxLeft img{
    width: 100%;
    border: 1px solid var(--secondPrimaryColor);
}

/* Home Box(END) */

/* We Works */

.weWorks{
    padding: 45px 0;
}

.weWorks .container{
    text-align: center;
}

.weWorksTitle{
    font-size: 48px;
    margin-bottom: 20px;
}

.WSC-text{
    font-size: 15px;
    line-height: 1.5;
}

.weServiceMainBox{
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}

.weServiceCard{
    width: 31%;
    text-align: right;
    background-color: var(--primaryColor);
    color: var(--textColor);
    font-family: 'Shabnam';
    line-height: 1.5;
    padding: 15px;
    margin-left: 2%;
    margin-bottom: 15px;
}

.WSC-title{
    font-family: 'Shabnam-bold';
}

/* We Works (END) */

/* Home Box1 */

.homeBox1{
    display: flex;
    margin-top: 45px;
    margin-bottom: 65px;
}

.homeBox1Right{
    width: 50%;
}

.homeBox1Right img{
    width: 100%;
}

.homeBox1Left{
    width: 30%;
    margin: 10px 10% 0;
}

.homeBox1LeftCard{
    margin-bottom: 30px;
}

.homeBox1LeftCardTitle{
    font-family: 'Shabnam-bold';
    font-size: 20px;
    margin-bottom: 15px;
}

.homeBox1LeftCardText{
    font-size: 13px;
}

/* Home Box1 (END) */

/* My Best Customer */

.myBestCustomer{
    display: flex;
    align-items: center;
    padding: 85px 25px 85px 0;
}

.myBestCustomerRight{
    width: 60%;
    color: var(--textColor);
}

.MBCR-title{
    font-size: 30px;
    margin-bottom: 20px;
}

.myBestCustomerLeft{
    width: 40%;
    margin-right: 10%;
}

/* My Best Customer (END) */

.homeBox1reverse{
    flex-direction: row-reverse;
    margin-top: 85px;
}

.MBC-card{
    width: 100%;
}

.MBC-card img {
    width: 100%;
    border: 1px solid var(--secondPrimaryColor);
}

.owl-theme .owl-dots .owl-dot.active span{
    background-color: var(--secondPrimaryColor);
}

/* Why Us */

.whyUsBox1Main{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.whyUsBox1{
    width: 50%;
    float: left;
    padding-left: 5%;
    margin-bottom: 25px;
}

.pageswhyUsBox{
    justify-content: flex-start;
}

.pageswhyUsBox .whyUsBox1{
    padding-left: 0;
    padding-right: 5%;
}

.pageswhyUsBox .whyUsBox1Title{
    font-size: 38px;
}

.whyUsBox2{
    width: 100%;
    /* float: right; */
    /* display: flex; */
    margin-bottom: 70px;
}

.whyUsBox2Card{
    /* width: 33%; */
    padding-left: 15px;
}

.whyUsBox2Card img{
    width: 100%;
}

.whyUsBox2Card:last-child{
    padding-left: 0;
}

/* Why Us (END) */

/* Our Suggestion */

.ourSuggestion{
    padding: 85px 0;
}

.ourSuggestion .container{
    display: flex;
    align-items: center;
    color: #fff;
}

.ourSuggestionRight{
    width: 50%;
    margin-left: 10%;
}

.ourSuggestionRight img{
    width: 100%;
    border: 1px solid var(--secondPrimaryColor);
}

.ourSuggestionLeft{
    width: 40%;
}

.ourSuggestionLeft .siteTitle{
    font-size: 40px;
    margin-bottom: 15px;
}

/* Our Suggestion (END) */

/* Our Projects */

.ourProjects{
    padding: 50px 0;
}

.ourProjectsTitle{
    text-align: center;
    font-size: 48px;
    margin-bottom: 25px;

}

.resOurProjectMainBox{
    display: none !important;
}

.ourProjectsCard{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.ourProjectsCard img{
    width: 40%;
}

.OPC-detail{
    width: 50%;
    border-right: 5px solid var(--primaryColor);
    line-height: 1.5;
    padding-right: 15px;
}

.OPC-detailTitle{
    font-size: 24px;
    margin-bottom: 15px;
}

/* Our Projects (END) */

/* Home FAQ */

.homeFaq{
    padding: 55px 0;
}

.homeFaqTitle{
    text-align: center;
    color: var(--textColor);
    font-size: 37px;
    margin-bottom: 35px;
}

.faqAccordionCard{
    color: var(--textColor);
    border-top: 1px solid var(--textColor);
    border-bottom: 1px solid var(--textColor);
    padding-bottom: 10px;
}

.faqAccordionCardHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Shabnam-Bold';
    font-size: 25px;
    padding: 15px 0;
}

.faqAccordionCardHeaderIcon{
    transition: all .5s ease;
}

.TR-45deg{
    transform: rotate(45deg);
}

.faqAccordionCardBody{
    display: none;
}

/* Home FAQ (END) */

/* Requset Project */

.requsetProjectMainBox{
    padding: 70px 0;
}

.requsetProjectMainBox .container{
    display: flex;
    align-items: center;
}

.requsetProjectForm{
    width: 40%;
    color: var(--textColor);
}

.requsetProjectLeft{
    width: 50%;
    margin-right: 10%;
}

.formHomeInput{
    margin-bottom: 20px;
}

.formHomeInput input{
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--textColor);
    color: var(--textColor);
    padding: 15px 10px;
}

.formHomeInput textarea{
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--textColor);
    color: var(--textColor);
    padding: 15px 10px;
}

.formSubmitButton{
    float: left;
}

/* Requset Project (END) */

/* Footer */

.footerMainBox{
    padding: 80px 0;
}

.footerMainBox .container{
    display: flex;
    align-items: center;
}

.footerInfoBox,
.footerMaps,
.footerNamad{
    width: 33%;
    padding: 0 15px;
}

.footerInfoCard{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
}

.footerInfoCard img{
    width: 25px;
    margin-left: 10px;
}

.footerMaps{
    border-right: 1px solid var(--secondPrimaryColor);
    border-left: 1px solid var(--secondPrimaryColor);
    padding: 0 25px;
}

.footerMaps iframe{
    width: 100%;
    height: 200px;
}

.footerNamadTitle{
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.footerNamadBox{
    display: flex;
    /* flex-wrap: wrap; */
}

.footerNamadCard{
    width: 33%;
    padding: 0 15px;
}

/* Footer (END) */

/* Pages */

.pagesHomeBox1{
    padding:0 5%;
}

.PHB-title{
    font-size: 35px;
    margin-bottom: 15px;
}

.pagesHomeBox1 img{
    height: 300px;
    object-fit: cover;
}

.formBoxInput{
    display: flex;
    align-items: center;
}

.formBoxInput .formHomeInput{
    width: 100%;
}

.formBoxInput .formHomeInput:first-child{
    margin-left: 15px;
}

.contantUsForm .formHomeInput input{
    border: 1px solid var(--textColor);
    margin-top: 10px;
}

.showRequierdItem{
    color: var(--secondPrimaryColor);
    margin-right: 5px;
}

.contantUsForm .formSubmitButton{
    float: unset;
    transform: translateX(50%);
    margin-right: 50%;
}

/* Pages (END) */

/* 404 */

.page404{
    width: 90vw;
    height: 90vh;
    background-color: var(--primaryColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-family: 'Shabnam-Bold';
    margin: auto;
    margin-top: 5vh;
    
}

/* 404 (END) */

/* Upload File */

.uploadFileMainBox{
    padding-top: 0;
}

.uploadFileMainBox .container{
    flex-direction: column;
}

.uploadFileMainBox .requsetProjectLeft{
    margin-right: 0;
    margin-bottom: 25px;
}

.uploadFileMainBox .requsetProjectLeftTitle{
    font-size: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.uploadFileMainBox .siteForm{
    width: 50%;
}

.uploadFileMainLabel{
    border: 1px dashed var(--textColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: .8;
    transition: all .5s ease;
    padding: 20px;
}

.uploadFileMainLabel img{
    width: 30px;
    margin-bottom: 25px;
}

.uploadFileMainLabel:hover{
    opacity: 1;
}

/* Upload File (END) */

/* Responsive */

@media screen and (max-width:999px){

    .authHeaderMainDiv{
        display: none;
    }

    .headerTitle{
        font-size: 21px;
    }

    .headerMenuCard{
        color:#fff;
        font-size:14px;
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }

    .headerMenuCard:hover{
        background-color: var(--secondPrimaryColor);
        color: #fff;
    }

    .headerContainer{
        width: 100%;
    }

    .mainHeaderBox{
        padding: 0 10px;
    }

    .resMenuBtn{
        display: block;
        margin-right:12px;
    }

    .headerMenu{
        display: none;
    }

    .mainHeaderImageBox{
        display: flex;
        margin-bottom: 0;
    }

    .MHIB-onImage{
        height: 100%;
    }

    .mainHeaderImageBox img {
        height: 400px;
        object-fit: cover;
    }

    .MHIB-onImageCardText{
        display: none;
    }

    .MHIB-onImageCardbtn{
        width: 100px;
        color: #000;
    }

    .homesBoxLeft{
        width: 100%;
        margin-top: 20px;
    }

    .homesBox .container{
        flex-direction: column;
    }

    .homesBoxRight{
        width: 100%;
        margin-left: 0;
    }

    .HBR-title{
        text-align: center;
    }

    .weServiceMainBox{
        flex-wrap: wrap;
    }

    .weServiceCard{
        width: 100%;
    }

    .myBestCustomer {
        flex-direction: column;
        padding-right: 0;
    }

    .MBCR-title{
        text-align: center;
    }

    .myBestCustomerRight{
        width: 100%;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .myBestCustomerLeft{
        width: 100%;
        margin-right: 0;
    }

    .homeBox1{
        flex-direction: column !important;
    }

    .homeBox1Right{
        width: 100%;
        margin-bottom: 20px;
    }

    .homeBox1Right img{
        width: 90%;
    }

    .homeBox1reverse .homeBox1Right{
        text-align: left;
    }

    .homeBox1Left{
        width: 100%;
        padding: 0 15px;
        margin: 0;
    }

    .whyUsBox1{
        width: 100%;
        padding: 0 15px;
    }

    .ourSuggestion .container{
        flex-direction: column;
    }

    .ourSuggestionRight{
        width: 100%;
        margin-left: 0;
    }

    .ourSuggestionLeft{
        width: 100%;
    }

    .ourSuggestionLeft .siteTitle{
        text-align: center;
    }

    .ourProjectMainBox{
        display: none;
    }

    .resOurProjectMainBox{
        display: block !important;
    }

    .ourProjectsCard{
        flex-direction: column;
    }

    .ourProjectsCard img{
        width: 100%;
    }

    .OPC-detail{
        width: 100%;
        border: 0;
    }

    .OPC-detailTitle{
        text-align: center;
        margin-top: 20px;
    }

    .requsetProjectMainBox .container{
        flex-direction: column-reverse;
    }

    .requsetProjectLeft{
        width: 100%;
        margin-right: 0;
    }

    .requsetProjectForm{
        width: 100% !important;
        margin-top: 20px;
    }

    .uploadFileMainBox .container{
        flex-direction: column;
    }

    .footerMainBox .container{
        flex-direction: column;
    }

    .footerInfoBox, .footerMaps, .footerNamad{
        width: 100%;
        margin-bottom: 25px;
    }

    .footerMaps{
        border: 0;
        border-top: 1px solid var(--secondPrimaryColor);
        border-bottom: 1px solid var(--secondPrimaryColor);
        padding: 20px 0;
    }

    .pagesHomeBox1 .homeBox1Right img{
        width: 100%;
    }

    .pagesHomeBox1 .homeBox1Left{
        padding: 0;
    }

    .PHB-title{
        text-align: center;
    }

    .pageswhyUsBox .whyUsBox1Title{
        text-align: center;
    }

    .pageswhyUsBox{
        margin-top: 40px;
    }

    .pageswhyUsBox .whyUsBox1{
        padding: 0 15px;
    }
}

/* Responsive (END) */

/*css for MYAlert*/

.siteModalMainBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.sitModalBox {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border: 1px solid var(--secondPrimaryColor);
    text-align: center;
    font-family: 'Shabnam';
    padding: 25px;
    margin: auto;
}

.SMB-icon {
    width: 80px;
    height: 80px;
}

    .SMB-icon img {
        width: 40px;
    }

.SMB-iconError {
    background-color: rgba(255, 0, 0, 0.25);
}

    .SMB-iconError img {
        filter: invert(20%) sepia(89%) saturate(7477%) hue-rotate(359deg) brightness(101%) contrast(117%);
    }

.SMB-Title {
    font-family: 'Shabnam-bold';
    margin-bottom: 15px;
    /* font-weight: 700; */
}

.SMB-btn {
    width: 150px;
    margin: 20px auto;
}

.showModal {
    opacity: 1;
    visibility: visible;
}

    .showModal .sitModalBox {
        animation: showModalAnimate .9s;
    }

@keyframes showModalAnimate {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*END css for MYAlert*/