

.container-fluid {
    max-width: unset !important;
}


header {
    background: transparent !important;
    z-index: 4;
}



.modal-image{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.86);
    z-index: 9000;
    display: none;
}

.modal-image .container-fluid, .modal-image .row{
    height: 100%;
}

.modal-image.show{
    display: block;
}

.modal-image .row{
    justify-content: center;
    align-items: center;
}

.big-image {
    width: 600px;
    height: 600px;
}

.big-image  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close{
    display: flex;
    align-items: center;
    padding-inline: 40px;
    position: absolute;
    top: 20px;
}

.gallery-swiper .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}



/*banner*/


.swiper-banner-nav{
    display: flex;
    width: 100%;
    top: 76%;
    position: absolute;
    /*right: 17%;*/
    gap: 6px;
}

.swiper-banner-nav .swiper-faraz-next.swiper-button-next, .swiper-banner-nav .swiper-faraz-prev.swiper-button-prev{
    background: unset !important;
    border-radius: unset !important;
}


.banner-section .container-fluid{
    padding: 0;
}

.col-banner-image img{
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.col-banner-image{
    position: relative;
    transform: translateY(-100%);
    transition: .5s linear;
}

.col-banner-image.loaded{
    transform: translateY(0);
    transition: .5s linear;
}

.col-banner-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);

}

.banner-section .row{
    position: relative;
}

.col-banner-image{
    padding: 0;
}

.col-banner-content{
    background: var(--primary-color);
    padding: 0;
    transform: translateY(-100%);
    transition: .5s linear;
}

.col-banner-content.loaded{
    transform: translateY(0);
    transition: .5s linear;
}

.banner-content{
    width: 100%;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}


.banner-box{
    width: 600px;
    border: 1px solid #E7E7E7;
    padding: 30px;
    background: rgba(216, 216, 216, 0.25);
    border-radius: 15px;
    z-index: 2;
    position: relative;
    transform: translateX(200%);
    transition: .5slinear;
    opacity: 0;
    background: #1726257a;
    box-shadow: 0 8px 32px 0 rgba(var(--color-white), 0.1);
    backdrop-filter: blur(19px);
    border: 1.5px solid #ffffff52;
    border-radius: 12px;
}

.banner-box.loaded{
    opacity: 1;
    transform: translateX(0);
    transition: .5s linear;
}

.banner-box h3{
    font-size: 37px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-box span{
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 37px;
    display: block;
}

.banner-box a{
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 30px;
}

/*banner*/



/*services*/

.services-row{
    padding-top: 60px;
}

.services{
    padding-bottom: 0px;
    position: relative;
}

.services .container{
    position: relative;
}


.item1{
    position: absolute;
    height: 400px;
    width: 400px;
    border: 1px solid #c2c2c2;
    border-radius: 100%;
    right: -10%;
    bottom: -90px;
}

.item2{
    position: absolute;
    height: 300px;
    width: 300px;
    border: 1px solid #c2c2c2;
    border-radius: 100%;
    left: -10%;
    top: -90px;
}



.item1:before, .item2:before {
    border: 1px solid #d5d5d5;
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    transform: scale(1.5);
    transform-origin: center center;
    opacity: 0;
    animation: 5.5s pulse2 infinite ease-in-out;
}


.item1:after, .item2:after{
    border: 1px solid #e3e3e3;
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    transform: scale(3);
    transform-origin: center center;
    opacity: 0;
    animation: 5.5s pulse infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    50% {
        transform: scale(2.5);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}
@keyframes pulse2 {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}







.each-service{
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #fff;
    position: relative;
    /*min-height: 400px;*/
}

 .flip-card-front:before {
     content: "";
     position: absolute;
     background: rgba(64, 189, 156, 0.16);
     width: 225px;
     height: 100%;
     z-index: -1;
     transform: rotate(42deg);
     right: -148px;
     top: 145px;
     border-radius: 35px;
}

.flip-card-back:before {
    content: "";
    position: absolute;
    background: rgba(64, 189, 156, 0.09);
    width: 225px;
    height: 100%;
    z-index: -1;
    transform: rotate(42deg);
    right: -148px;
    top: 145px;
    border-radius: 35px;
}

.second-service .flip-card-back:before {
    content: "";
    position: absolute;
    background: rgba(210, 168, 96, 0.26);
    width: 225px;
    height: 100%;
    z-index: -1;
    transform: rotate(42deg);
    right: -148px;
    top: 145px;
    border-radius: 35px;
}

.col-services-line:first-child{
    display: flex;
    align-items: flex-end;
}

.col-services-line:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.col-services-line:nth-child(3) .each-service{
    height: unset;
    justify-content: space-between;
    /*padding-block: 90px;*/
}

/*.second-service{*/
/*    background: var(--secondary-color);*/
/*    border: 2px solid var(--secondary-color);*/
/*}*/

/*.first-service{*/
/*    background: var(--primary-color);*/
/*    !*padding-block: 90px;*!*/
/*}*/
.col-services-line{
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.service-icon{
    width: 50px;
    height: 34px;
    margin-bottom: 12px;
}

.service-icon svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h4 {
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}


.service-content p{
    color: var(--primary-color);
    font-size: 14px;
    text-align: justify;
    line-height: 27px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    /*letter-spacing: -0.7px;*/
    font-family: 'VZ';
}


/*.first-service .service-content h4{*/
/*    color: var(--white-color);*/
/*}*/

.service-content div{
    display: none;
}

.service-content p mark{
    display: none;
}

/*.first-service .service-content p{*/
/*    color: var(--white-color);*/
/*    font-size: 14px;*/
/*}*/

/*.first-service a {*/
/*    color: #fff !important;*/
/*}*/

/*.first-service a svg path{*/
/*    stroke: #fff !important;*/
/*}*/

/*.first-service .service-icon svg path{*/
/*    fill: #fff;*/
/*}*/

.each-service a{
    align-self: flex-start;
    line-height: 28px;
}


.services-grid{
    display: grid;
    grid-template-rows: 1fr 2fr;
    grid-gap: 20px;
}

.second-grid{
    display: grid;
    grid-template-rows: 2fr 2fr;
    grid-gap: 20px;
}

.third-grid{
    display: grid;
    grid-template-rows: 2fr 1fr;
    grid-gap: 20px;
}

.all-grid-items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}


/*flip*/

.hover_color_bubble {
    position: absolute;
    background: rgba(82, 197, 132, 0.09);
    width: 100rem;
    height: 100rem;
    left: 0;
    right: 0;
    z-index: -1;
    top: 16rem;
    border-radius: 50%;
    transform: rotate(-36deg);
    left: -18rem;
    transition: 0.7s;
}


.flip-text {
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}


.flip-card-back .content-container {
    padding: 15px;
    height: 100%;
    overflow-y: auto;
}

.services-list .faraz-btn{
    padding: 2px 16px;
}

.services-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    max-height: 62%;
    overflow: auto;
    height: 62%;
    min-height: 62%;
}

.services-list::-webkit-scrollbar{
    width: 3px;
}

.services-list::-webkit-scrollbar-thumb{
    background: #939393;
}

.services-list::-webkit-scrollbar-track{
    background: #ececec;
}


.service-item span{
   width: 94%;
}



.maincontainer{
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    position: relative;
    display: flex;
    min-height: 222px;
}


/* style the maincontainer class with all child div's of class .front */
.maincontainer > .front
{
    border: 2px solid var(--primary-color);
    background: #fff;
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform .5s linear 0s;
    /*min-height: 400px;*/
    border-radius: 10px;
    padding: 25px;
    overflow: hidden;
}

/* style the maincontainer class with all child div's of class .back */
.maincontainer > .back
{
    padding: 25px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    background: #fff;
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    border-radius: 10px;
    backface-visibility: hidden;
    transition: transform .5s linear 0s;
    /*min-height: 400px;*/
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-flip{
    display: none !important;
}

@media screen and (min-width: 992px){

    .maincontainer:hover > .front
    {
        transform: perspective(600px) rotateY(-180deg);
    }

    .maincontainer:hover > .back
    {
        transform: perspective(600px) rotateY(0deg);
    }


    .first-service.maincontainer:hover .hover_color_bubble {
        top: 0rem;
        transition-delay: .5s;
    }

    .second-service.maincontainer:hover .hover_color_bubble {
        top: 0rem;
        transition-delay: .5s;
    }

    .second-service.maincontainer:hover .back-back{
        background: var(--secondary-color);
    }


    .first-service.maincontainer:hover .back{
        background: var(--primary-color);
    }

}




.maincontainer.no-flip:hover > .front {
    transform: perspective(600px) rotateY(0deg) !important;
}

.maincontainer.no-flip:hover > .back {
    transform: perspective(600px) rotateY(180deg) !important;
}

.front:before {
    content: "";
    position: absolute;
    background: rgba(64, 189, 156, 0.16);
    width: 225px;
    height: 100%;
    z-index: -1;
    transform: rotate(42deg);
    right: -148px;
    top: 187px;
    border-radius: 35px;
}



.second-service.maincontainer .hover_color_bubble {
    background: rgb(237 197 168 / 20%);
}


.first-service.maincontainer .back{
    background: var(--primary-color);
}



.second-service.maincontainer .back{
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}




.first-service .back h5{
    color: #fff !important;
}

.first-service .back .service-item span{
    color: #fff !important;
}

.first-service .back .service-item svg path{
    fill: #fff !important;
    stroke: #fff !important;
}

.first-service .back .faraz-link{
    color: #fff !important;
}

.first-service .back .faraz-link svg path{
    stroke: #fff !important;
}

.maincontainer.no-flip .front{
    background: var(--primary-color);
}

.maincontainer.no-flip .front svg path{
    fill: #fff;
}

.maincontainer.no-flip .front h4{
    color: #fff;
}





/*flip*/

.first-service .service-content p {
    color: var(--primary-color);

}

.first-service.no-flip .service-content p {
    color: #fff;

}



/*services*/





/*about*/

.about-section{
    background-image: url("../images/about.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    background-attachment: fixed;
    position: relative;
}

.col-about-content{
    padding-top: 70px;
    min-height: 570px;
}

.about-box{
    /*width: 600px;*/
    padding: 40px 40px;
    background: #bcbcbc52;
    backdrop-filter: blur(19px);
    border: 1.5px solid #ffffff52;
    border-radius: 12px;
}

.about-title{
    border-right: 2px solid var(--secondary-color);
    padding-right: 10px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-text{
    text-align: justify;
    font-size: 15px;
}


/*about*/




/*projects*/

.projects .faraz-btn{
    position: relative;
    bottom: -18px;
    left: 15px;
}

.projects{
    padding-block: 0px 0;
}

.projects .row-title{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
}

.projects .row-title .faraz-title2{
    width: fit-content;
}

.project-image{
    width: 100%;
    height: 600px;
    position: relative;
    cursor: pointer;
}

.project-icon{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ffff;
    cursor: pointer;
    opacity: 0;
}

.project-image::before{
    position: absolute;
    content: '';
    background: rgb(19 19 19 / 60%);
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 1;
    transition: .5s;
}

.each-project:hover .project-image::before{
    opacity: 1;
    transition: .5s;
}

.each-project:hover .project-icon{
    opacity: 1;
    transition: .5s;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-projects{
    padding: 0;
}


.gallery-next.swiper-button-next:after, .swiper-rtl .gallery-prev.swiper-button-prev:after {
    content: url('data:image/svg+xml,<svg width="35" height="31" viewBox="0 0 25 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 10.5L15.375 20M24 10.5L15.375 0.999998M24 10.5L8.90625 10.5M1 10.5L4.59375 10.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>')
}


.gallery-prev.swiper-button-prev:after, .swiper-rtl .gallery-next.swiper-button-next:after {
    content: url('data:image/svg+xml,<svg width="35" height="31" viewBox="0 0 25 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 10.5L9.625 20M1 10.5L9.625 0.999998M1 10.5L16.0937 10.5M24 10.5L20.4062 10.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}








/* Gallery Styles */
.gallery_container {
    max-width: 1200px;
    margin: 0 auto;
}


.gallery_item {
    overflow: hidden;
}

.popup-gallery a {
    display: block;
    width: 100%;
    /*border: 1px solid #fff;*/
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
    /*min-height: 250px;*/
    /*max-height: 250px;*/
}

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


}

/* END  */

.singicon_btn_nlf {
    position: absolute;
    top: 48%;
    bottom: 52%;
    left: 52%;
    right: 48%;
    opacity: 0;
}

.singicon_btn_nlf svg {
    color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
}

.hover_affect_nlf:hover img {
    /*opacity: 0.5;*/
    background: #63abea;
    backdrop-filter: blur(19px);
}



img.mfp-img {
    width: 100% !important;
}


.mfp-bg {
    overflow: hidden;
}

.mfp-zoom-out-cur{
    overflow: hidden;
}

html:has(> body.mfp-zoom-out-cur) {
    overflow: hidden;
}








/*projects*/


/*comments*/

.comments-section{
    background: var(--primary-color);
    padding-bottom: 89px;
    position: relative;
    z-index: 1;
}

.comments_swiper{
    position: unset;
}

.comments_swiper .swiper-wrapper{
    position: unset;
}

.all-comments{
    position: relative;
}

.comments-section .faraz-title2{
    margin-bottom: 100px;
}

.comments-section .faraz-title2 span {
    color: var(--white-color);
}

.comments-section .title-line {
    border-right: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
}

.comments_swiper .swiper-slide{
    padding-right: 10px;
}

.each-comment{
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.comment-image{
    width: 200px;
    height: 240px;
}

.comment-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.comment-text{
    width: 75%;
}

.comment-text p{
    font-size: 16px;
    color: var(--white-color);
    line-height: 30px;
    margin-bottom: 30px;
}

.comment-name span{
    font-size: 17px;
    color: var(--white-color);
    margin-bottom: 10px;
    display: block;
}

.comment-name h6{
    font-size: 17px;
    color: var(--secondary-color);
}


/*comments*/



/*blogs*/


.blogs{
    position: relative;
}

.blogs .container{
    position: relative;
}


.blogs{
    padding-bottom: 89px;
}

.blogs .row-title{
    margin-bottom: 70px;
}

.col-blogs{
    height: 650px;
}

.each-blog{
    height: 100%;
    /*border: 1px solid #dedede6b;*/
    border-radius: 4px;
    transition: .5s;
}



.blog-image{
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.small-blog{
    height: 50%;
    position: relative;
    margin-bottom:20px ;
}

.small-blog .blog-image{
    height: 100%;
}

.blog-content{
    /*border: 1px solid #dedede;*/
    padding: 20px;
    background: #fff;
    height: 40%;
}

.small-blog .blog-content{
    position: absolute;
    border: unset;
    bottom: -6px;
    height: fit-content;
    width: 70%;
    padding: 12px;
    padding-bottom: 0;
}


@media screen and (min-width: 768px){

    .each-blog:hover{
        box-shadow: 0 0 6px 0px #d5d5d5;
        transition: .5s;
    }

    .each-blog:hover .blog-image img{
        transition: .5s;
        transform: scale(1.1);
    }

}

.blog-content h5{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.small-blog .blog-content h5{
    font-size: 16px;
}

.faraz-link{
    color: var(--primary-color) !important;
    font-size: 16px;
}


.faraz-link svg{
    width: 16px;
    height: 16px;
}

/*blogs*/




/*calculator*/

.calc-index{
    position: relative;
    padding-block: 0 110px;
    /*background-color: #E6E6E6;*/
    z-index: 1;
}

/*.calc-index::before{*/
/*    position: absolute;*/
/*    content: "";*/
/*    background-image: url(../images/plan-calc.png);*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    width: 900px;*/
/*    height: 724px;*/
/*    right: -14%;*/
/*    top: -19%;*/
/*    z-index: 0;*/
/*}*/

.row-calc{
    position: relative;
    padding-top: 100px;
}

.row-calc::after{
    position: absolute;
    content: "";
    background-image: url(../images/calc.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 886px;
    height: 549px;
    left: -11%;
    top: -22%;
    z-index: 0;
}

.col-calc{
    z-index: 2;
}



.calc-box{
    padding: 30px;
    background-color: rgba(216, 216, 216, 0.63);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 356px;

}

.calc-box p{
    text-align: justify;
}



/*calculator*/










/*contact*/

.contact-section{
    background: #d8d8d86e;
    padding-bottom: 33px;
    position: relative;
}


.contact-section .faraz-title2{
    margin-bottom: 70px;
}

.each-input{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form form{
    width: 60%;
}

.each-input{
    margin-bottom: 40px;
}

.contact-form input, .contact-form textarea{
    background: unset;
    border: unset;
    border-bottom: 1px solid var(--primary-color);
    /*border-bottom: 2px solid var(--secondary-color);*/
}

.each-input label{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}






/*contact*/



/*ways*/


.contact-ways {
    background-image: url(../images/ways2.png);
    background-repeat: no-repeat;
    background-size: 71%;
    padding-bottom: 0px;
    /* background-attachment: fixed; */
    background-position: bottom right;
}

.ways-row{
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 100px;
}



.all-contact-ways{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.each-way{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
}

.each-way div{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-direction: column;
    width: 70%;
}

.each-way span{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 4px;
}


.contact-way a{
    display: flex;
    align-items: center;
    gap: 3px;
}

.each-way svg{
    width: 30px;
    height: 30px;
}

.all-contact-ways{
    padding-top: 127px;
    padding-bottom: 99px;
}


.social-contact{
    display: flex;
    align-items: center;
    gap: 7px;
}


/*ways*/


















/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/


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

    .calc-box {
        padding-left: 262px;
    }

    .project-image {
        width: 100%;
        height: 450px;
    }

}

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

    .row-calc::after {
        width: 519px;
        height: 275px;
        left: 0;
        top: 37%;
    }

    .calc-index::before {
        width: 616px;
        height: 578px;
        right: -21%;
        top: -7%;
        z-index: 0;
    }

    .calc-index {
        padding-block: 0 116px;
    }

    .each-way div {
        width: 85%;
    }

    .each-service {
        padding: 20px;
    }

    .project-image {
        height: 400px;
    }

    .all-contact-ways {
        padding-top: 158px;
    }

    .contact-ways {
        padding-bottom: 160px;
    }

    .item1 {
        height: 300px;
        width: 300px;
    }
    .item2 {
        height: 200px;
        width: 200px;
    }

}

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

    .calc-box {
        padding-left: 100px;
    }

    .each-way svg {
        width: 23px;
        height: 23px;
    }

    .each-way {
        flex-direction: column;
    }

    .social-contact {
        justify-content: center;
    }

    .mobile-flip{
        display: block !important;
        font-weight: 600;
        color: var(--primary-color);
    }


    .maincontainer.lets-flip > .front{
        transform: perspective(600px) rotateY(-180deg);
    }

    .maincontainer.lets-flip > .back {
        transform: perspective(600px) rotateY(0deg);
    }

    .all-contact-ways {
        padding-top: 0;
        padding-bottom: 0;
    }

    .item1, .item2{
        display: none;
    }

    .all-grid-items {
        grid-template-columns: 1fr;
    }
    .each-service {
        margin-bottom: 0 !important;
    }

    .services .row:nth-child(2) {
        margin-top: 0;
    }

    .services-grid {
        grid-template-rows: 1fr 1fr;
    }

    .third-grid {
        grid-template-rows: 1fr 1fr;
    }

    .big-image {
        width: 500px;
        height: 500px;
    }


    .each-service {
        padding: 20px;
        margin-bottom: 20px;
    }

    .col-services-line:nth-child(2) {
        gap: 0;
    }

    .services .row:nth-child(2){
        margin-top: 0px;
    }

    .col-about-content {
        min-height: fit-content;
    }

    .project-image {
        height: 327px;
    }

    .col-blogs {
        height: fit-content;
    }

    .each-blog {
        margin-bottom: 20px;
    }


    .service-content p {
        -webkit-line-clamp: 2;
    }


    .service-content p {
        margin-bottom: 5px !important;
    }

    .each-way div {
        align-items: center;
        width: 100%;
    }



}

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


    .row-calc {
        padding-top: 76px;
    }

    .row-calc::after {
        width: 375px;
        height: 201px;
        left: -25%;
        top: 62%;
    }

    .calc-index::before {
        width: 456px;
        height: 398px;
    }

    .calc-box {
        padding-left: 20px;
    }

    .calc-box {
        padding: 20px;
    }

    .calc-box {
        padding-bottom: 50px;
    }

    .calc-index {
        padding-block: 0 73px;
    }

    .contact-form form {
        width: 90%;
    }
    .mfp-content{
        width: 80%;
    }
    img.mfp-img {
        width: 100% !important;
    }

    .big-image {
        width: 400px;
        height: 400px;
    }

    .banner-box {
        width: 100%;
    }

    .banner-box h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .banner-box span {
        font-size: 18px;
        margin-bottom: 42px;
    }

    .banner-box a {
        font-size: 16px;
        gap: 16px;
    }

    .col-banner-image img {
        height: 700px;
    }

    .contact-ways {
        background-size: contain;
        padding-bottom: 250px;
        background-position: bottom;
    }

    .all-contact-ways {
        padding-top: 24px;
        padding-bottom: 100px;
        align-items: center;
    }
    .each-way div {
        width: 100%;
    }

    .contact-ways {
        padding-bottom: 125px;
    }

    .ways-row {
        padding-top: 40px;
    }


}

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

    .contact-ways {
        background-image: url(../images/ways-mobile.png) !important;
    }

    .all-contact-ways {
        padding-bottom: 30px;
    }

    .all-contact-ways {
        padding-top: 8px;
    }

    .projects .faraz-btn {
        bottom: -22px;
    }

    .services-row {
        padding-top: 37px;
    }

    .about-section {
        padding-bottom: 81px;
    }

    .comments-section {
        padding-bottom: 75px;
    }

    .blogs {
        padding-bottom: 55px;
    }



    .singicon_btn_nlf {
        position: absolute;
        top: 44%;
        bottom: 54%;
        left: 57%;
        right: 44%;
        opacity: 0;
    }

    .big-image {
        width: 100%;
        height: 100%;
    }

    .gallery-next, .gallery-prev {
        display: none;
    }

    .each-way {
        font-size: 16px;
        text-align: left;
    }


    .contact-section .faraz-title2 {
        margin-bottom: 55px;
    }

    .each-comment{
        align-items: center;
    }

    .comment-text {
        width: 100%;
    }

    .blog-content h5 {
        font-size: 18px;
    }
    .small-blog .blog-content h5 {
        font-size: 15px;
    }
    .faraz-link {
        color: var(--primary-color) !important;
        font-size: 14px;
    }

    .faraz-link svg {
        width: 13px;
        height: 11px;
    }

    .faraz-btn {
        padding: 5px 18px;
        font-size: 15px;
    }

    .blog-content p{
        font-size: 15px;
    }

    .each-comment {
        flex-direction: column;
    }


    .project-image {
        height: 220px;
    }

    .blog-image {
        height: 300px;
    }

    .small-blog .blog-content {
        position: unset;
        border: unset;
        bottom: -6px;
        height: fit-content;
        width: 100%;
        padding: 12px;
        padding-bottom: 0;
        /*border: 1px solid #dedede;*/
    }

    .banner-box h3 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .banner-box span {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .projects .row-title {
        margin-bottom: 70px;
    }

    .comment-image {
        width: 144px;
        height: 173px;
    }

    .each-comment {
        gap: 16px;
    }

    .comment-text p {
        margin-bottom: 30px;
    }

    .service-icon {
        width: 37px;
        height: 37px;
    }

    .service-content h4 {
        font-size: 17px;
    }

    /*.first-service .service-content p {*/
    /*    font-size: 13px;*/
    /*}*/

    .contact-section {
        padding-bottom: 33px;
    }

    .ways-row {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .col-banner-image img {
        height: 565px;
    }

}

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


    .all-contact-ways {
        padding-top: 40px;
        padding-bottom: 33px;
    }

    .col-banner-image img {
        height: 555px;
    }

    .ways-row {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .service-icon {
        width: 29px;
        height: 29px;
    }

    .flip-card-back h5{
        font-size: 16px;
        font-weight: 600;
    }

    .service-content h4 {
        font-size: 15px;
    }

    .service-content p {
        -webkit-line-clamp: 2;
    }

    .blog-content h5 {
        font-size: 16px;
    }

    .each-input label {
        font-size: 14px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .small-blog .blog-content h5 {
        font-size: 15px;
    }

    .faraz-link {
        font-size: 13px;
    }

    .faraz-link svg {
        width: 13px;
        height: 13px;
    }

    .each-input {
        margin-bottom: 20px;
    }

    .each-input label {
        font-size: 15px;
    }
    .contact-form form {
        width: 90%;
    }

}

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



}

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

    .small-blog .blog-content h5 {
        font-size: 14px;
    }

}













@media screen and (min-width: 2000px){
    .contact-ways {
        background-size: 54% !important;
    }
}




/*responsive*/
/*responsive*/
/*responsive*/
/*responsive*/








