@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
}
:root{
    --primary-font: "Mulish", sans-serif;
}
html, body{
    overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track{
    background: #ddd;
}
body::-webkit-scrollbar-thumb{
    background: #000;
}
html{
    scroll-behavior: smooth;
}
body{}
p{font-size: 20px;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
a{text-decoration: none; color: #000; display: block;}
ul{margin: 0; padding: 0; list-style: none;}


/*================== global css start here ===============*/
.msgbox{
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 0 20px 5px #00000021;
    border-radius: 5px;
    z-index: 99;
}

.msgbox .loading{
    width: 30px;
    height: 30px;
    display: block;
    border: 3px solid #ddd;
    border-radius: 50px;
    border-top: 2px solid #000;
    animation: loading 1s linear infinite;
    margin: 10px;
}
@keyframes loading{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

.msgbox .alertmsg{
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}
.msgbox .alertmsg p{
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 15px;
}

.msgbox .alertmsg.success p{
    color: green;
}
.msgbox .alertmsg.error p{
    color: red;
}

#preloader{
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preloader-content .loader{
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-content .loader span{
    width: 60px;
    height: 60px;
    display: block;
    border: 3px solid #ddd;
    border-radius: 50px;
    border-top: 2px solid #000;
    animation: loader 3s linear infinite;
}
@keyframes loader{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.preloader-content .author{
}
.preloader-content .author span{
    font-weight: 600;
    display: inline-block;
    font-size: 5em;
    color: #ccc;
    position: relative;
}
.preloader-content .author span:after{
    content: attr(data-txt);
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    animation: txtflip 4s linear infinite;
}

.pagebtn{
    border: 1px solid #000000;
    display: inline-block;
    color: #000000;
    padding: 15px 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: .3s linear;
}
.pagebtn:after,
.pagebtn:before{
    content: "";
    width: 20px;
    height: 0.1px;
    position: absolute;
    top: 50%;
    background: #000000;
    transform: translateY(-50%);
    z-index: 9;
    transition: .3s linear;
    line-height: 1;
    display: inline-block;
}
.pagebtn:after{
    left: -10px;   
}
.pagebtn:before{
    right: -10px;
}
.pagebtn:hover:after,
.pagebtn:hover:before{
    background: #000;
}
.pagebtn:hover{
    background: #000;
    color: #fff;
}

.pagecrumb{
    background: url("../images/breadcrumb.webp");
    background-size: cover;    
    position: relative;
    z-index: 1;
}
.pagecrumb:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 13%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.pagecrumb .crumbbox{
    padding: 100px 0 30px;
}
.pagecrumb .crumbbox h3{
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pagecrumb .crumbbox ul{
    display: inline-flex;
    margin: 15px 0 0;
    background: #fff;
    padding: 10px;
}
.pagecrumb .crumbbox ul li{
    color: #228db6;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.pagecrumb .crumbbox ul li:not(:first-child):before{
    content: "/";
    margin: 0 5px;
    color: #000000;
}
.pagecrumb .crumbbox ul li a{
    color: #000000;
}
/*================== global css end here ===============*/
header .header-right .sidebar-toggle a.menu-toggle,
header .header-right .sidebar-toggle div{display: none;}

header{
    position: relative;
    width: 100%;
    z-index: 99;
    padding: 0 20px;
}
header.active{
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 1px 15px 0px rgb(0 0 0 / 10%);
}
.weblogo{
    padding: 10px 0;
}
.weblogo img{width: 100%;}
.headmenu{
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 18px;
    height: 100%;
}
.headmenu .headlist{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.headmenu .headlist .headlink{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    transition: .3s linear;
    letter-spacing: 1px;
}
.headmenu .headlist .headlink:hover{
    color: #666;
}
header.active .headmenu .headlist .headlink{
    font-weight: 500;
}
header.active .headmenu .headlist .headlink:hover{
}
.headmenu .headlist .headlink i{
    font-size: 10px;
    margin-left: 5px;
}
.headmenu .headlist-media{
    position: relative;
    z-index: 1;
}
.headmenu .headlist-media .headlink-media{
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 30px;
    color: #fff;
    transition: .2s linear;
    background: #000;
    border: 1px solid #000;
}
.headmenu .headlist-media .headlink-media:hover{
    background: #fff;
    color: #000;
}
.headmenu .headlist .submenu{
    width: 220px;
    padding: 20px;
    margin-left: 10px;
    position: absolute;
    top: 100%;
    left: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 15%);
    transition: .2s linear;
    display: flex;
    align-items: start;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    border-radius: 4px;
    z-index: 99;
}
.headmenu .headlist .submenu li{}
.headmenu .headlist .submenu li a{
    white-space: nowrap;
    padding: 5px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.headmenu .headlist .submenu li a:hover{
    color: #666;
}
.headmenu .headlist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 0;
}

.headerlinkbox{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    margin: 15px 0 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: .3s linear;
}
.headerlinkbox.active{
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    margin: 5px 0 0;
}
.headerlinkbox .icon{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin: 4px 0 0;
    border: 1px solid #000000;
    color: #000000;
}
.headerlinkbox .icon:hover{}

/*============ slider widget ====================*/

.sliderwidget {
    position: relative;
    z-index: 1;
}
.sliderwidget:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 35%);
}
.sliderimg{
    margin: 0;
}
.sliderimg img{
    width: 100%;
}
.slidergrid{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 30px 0;
    text-align: center;
}
.slidergrid .tagline{
    color: #000000;
    letter-spacing: 6px;
}
.slidergrid h2{
    font-size: 50px;
    font-weight: 800;
    color: #222;
    letter-spacing: 3px;
}
.slidergrid a{
    margin: 50px 0 0;
    border-color: #fff;
    color: #fff;
}
.slidergrid a:after,
.slidergrid a:before{
    background: #fff;
}
.slidergrid a:hover{
    background: #fff;
    color: #000;
}
.slidergrid a:hover:after,
.slidergrid a:hover:before{
    background: #000;
}

/*============ about widget ================*/
.widgetabout{
    padding: 50px 0 0;
}
.aboutleftbox{
}
.aboutleftbox img{width: 100%;}
.aboutleftbox .numbers{
    background: #fff;
    display: flex;
    flex-wrap: wrap;
}
.aboutleftbox .numbers .numbox{
    flex: 1 0 50%;
    text-align: center;
    padding: 40px;
}
.aboutleftbox .numbers .numbox span{
    display: block;
}
.aboutleftbox .numbers .numbox span:nth-child(1){
    font-size: 50px;
    font-weight: 800;
    background: url("../images/aboutus.webp");
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 1000%;
    background-position: 0%;
}
.aboutleftbox .numbers .numbox span:nth-child(2){
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.aboutrightbox{}
.aboutrightbox .tagline{
    margin: 0 0 20px;
    display: block;
    color: #999;
    letter-spacing: 2px;
    font-weight: 200;
}
.aboutrightbox h2{
    width: 80%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
}
.aboutrightbox p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}
.aboutrightbox a{}

/*============ about widget end here ================*/


/*======= project widget start here ===========*/
.widgetprojects{
    padding: 50px 0;
}
.widgetprojects .maintitle{
    margin: 0 0 40px;
}
.widgetprojects .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.widgetprojects .maintitle h2{
    width: 60%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;    
}
.projectbox{
    margin: 0 0 20px;
}
.projectbox figure{
    margin: 0;
    overflow: hidden;
}
.projectbox figure img{
    width: 100%;
    transition: .3s linear;
}
.projectbox:hover figure img{
    transform: scale(1.1);
}
.projectbox .content{
    padding: 10px 0 30px;
}
.projectbox .content h3{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.projectbox .content .viewproject{
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    gap: 5px;
    margin: 10px 0 0;
    transition: .3s linear;
}
.projectbox .content .viewproject:hover{
    color: #333;
}
.widgetprojects .viewallprojects{
    text-align: center;
}
.widgetprojects .viewallprojects a{}
.projectpage .project-tab{}
.projectpage .project-tab ul{
    padding: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.projectpage .project-tab ul li{}
.projectpage .project-tab ul li a{
    background: #228db62b;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 500;
    color: #228db6;
    transition: .3s linear;
}
.projectpage .project-tab ul li a.active,
.projectpage .project-tab ul li a:hover{
    background: #228db6;
    color: #fff;
}
.projectpage .projectbx {
    position: relative;
    overflow: hidden;
    margin: 10px 0px;
}

.projectpage .projectbx .title {
    position: absolute;
    bottom: -100%;
    background: #00000080;
    padding: 5px;
    width: 100%;
    min-height: 50px;
    transition: all .3s ease;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projectpage .projectbx:hover .title {
    bottom: 0;
}

/*======= project widget end here ===========*/


/*======= service widget start here ===========*/
.widgetservice{
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.widgetservice:before{
    content: "";
    background: url("../images/serbg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.widgetservice:after{
    content: "";
    width: 100%;
    height: 400px;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.widgetservice .maintitle{
    margin: 0 0 100px;
}
.widgetservice .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.widgetservice .maintitle h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #fff;
}
.servicebox{
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    height: 100%;
    position: relative;
    z-index: 1;
}
.servicebox .overlayimg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: .2s linear;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
}
.servicebox:hover .overlayimg{
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.servicebox .overlayimg img{
    width: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
}
.servicebox figure{
    text-align: center;
}
.servicebox figure img{
    width: 50px;
}
.servicebox .content{
    text-align: center;
}
.servicebox .content h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 15px;
    letter-spacing: 1px;
    color: #000;
}
.servicebox .content ul{}
.servicebox .content ul li{
    padding: 0 0 5px;
}
.servicebox .content ul li:before{
    content: "\f2e5";
    font-family: "remixicon";
    font-weight: 700;
    color: #2988b2;
}


/*======= service widget end here ===========*/


/*======= profile widget start here ===========*/
.widgetnikhil{
    padding: 50px 0 20px;
    background: #fff;
}
.widgetnikhil .maintitle{
    margin: 0 0 30px;
}
.widgetnikhil .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}
.widgetnikhil .maintitle .tagline:after{
    content: "";
    width: 150px;
    height: 1px;
    background: #000;
    /* position: absolute; */
    /* top: 20px; */
    transition: .4s linear;
}
.widgetnikhil .maintitle h2{
    width: 60%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #000;
}
.nikhilbox{position: relative;z-index: 1;}
.nikhilbox figure{text-align: center;}
.nikhilbox figure img{width: 100%;}
.nikhilbox-cotent{}
.nikhilbox-cotent .qualification{
    margin: 0 0 10px;
}
.nikhilbox-cotent .qualification span{
    font-weight: 600;
    font-size: 18px;
    display: block;
    position: relative;
    z-index: 1;
}
.nikhilbox-cotent .qualification span:before{
    content: "\f2e5";
    font-family: "remixicon";
    font-weight: 700;
    color: #2988b2;
    margin-right: 5px;
    display: inline-block;
}
.nikhilbox-cotent p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}
/*======= profile widget end here ===========*/


/*======= timeline widget end here ===========*/
.widgettimeline{
    padding: 50px 0;
    background: #fff;
}
.widgettimeline .maintitle{
    margin: 0 0 30px;
}
.widgettimeline .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.widgettimeline .maintitle h2{
    width: 60%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #000;
}
.awardsbox{
    padding: 15px;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}
.awardsbox:before{
    content: "";
    width:80%;
    background: #d1d1d166;
    position: absolute;
    left: 5%;
    z-index: -1;
    height: 70%;
    opacity: 0;
    transition: .3s linear;
    top: 20px;
}
.awardsbox:hover:before{
    top: 10px;
    opacity: 1;
}
.awardsbox span{}
.awardsbox span:nth-child(1){
    font-size: 14px;
    padding: 15px 20px 15px 0;
    border-right: 1px solid #000;
    letter-spacing: 3px;
}
.awardsbox span:nth-child(2){
    padding: 0 0 0 20px;
    font-size: 20px;
    font-weight: 700;
}


/*======= timeline widget end here ===========*/

/*======= clients widget start here ===========*/
.widgetclients{
    padding: 70px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.widgetclients:before{
    content: "";
    background: url("../images/serbg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-position: 10%;
}
.widgetclients:after{
    content: "";
    width: 100%;
    height: 200px;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.widgetclients .maintitle{
    margin: 0 0 100px;
}
.widgetclients .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.widgetclients .maintitle h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #fff;
}
.clientsbox{
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    text-align: center;
}
.clientsbox figure{
    text-align: center;
}
.clientsbox figure img{
    width: 50px;
}
.clientsbox .content{}
.clientsbox .content h3{
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 15px;
}
.clientsbox .content p{
    font-size: 18px;
    line-height: 1.3;
}
/*======= clients widget end here ===========*/


/*======= testimonials widget start here ===========*/
.widgettestimonials{
    padding: 30px 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.widgettestimonials .maintitle{
    margin: 0 0 60px;
}
.widgettestimonials .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.widgettestimonials .maintitle h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #000;
}
.widgettestimonials .testleft{
    height: 100%;
    border: 1px solid #ddd;
}
.widgettestimonials .testleft ul{
    /* background: #fff; */
    position: relative;
    top: -12px;
    left: -5px;
    width: fit-content;
}
.widgettestimonials .testleft ul .slick-list{
    padding: 0 !important;
    height: fit-content !important;
    width: fit-content;
}
.widgettestimonials .testleft ul li{}
.widgettestimonials .testleft ul li.slick-current a{
    color: #000;
}
.widgettestimonials .testleft ul li.slick-current a:before{
    content: "";

}
.widgettestimonials .testleft ul li a{
    color: #666;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    background: #fff;
    padding: 0px 15px 5px 0px;
}
.testimonialouter{
    position: relative;
    box-shadow: 0 0px 30px rgba(0,0,0,.2);
}
.testimonialouter .slick-slider{
    margin: 0;
}
.testimonialbox{
    margin: auto;
    text-align: center;
    padding: 90px 30px;
}
.testimonialbox i{
    font-size: 40px;
    color: #000;
    line-height: 1;
    margin: 0 0 10px;
    display: block;
}
.testimonialbox p{
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #878787;
}
.testimonialbox .test-name{
    padding: 15px 0 0;
}
.testimonialbox .test-name h3{
    font-size: 1em;
    color: #000;
    font-weight: 700;
}
.testimonialouter .slick-dots{
    bottom: 20px;
}
.testimonialouter .slick-dots li{
    width: 10px;
    height: 10px;
    background: #8b8b8b;
    border-radius: 50px;
}
.testimonialouter .slick-dots li.slick-active{
    background: #222;
}
.testimonialouter .slick-dots li button{
    display: none;
}

/*======= testimonials widget start here ===========*/
.widgetstart{
    padding: 50px 0;
}

.widgetstart .maintitle{
    margin: 0 0 60px;
}
.widgetstart .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.widgetstart .maintitle h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #000;
}
.widgetstart .maintitle p{
    color: #5e5e5e;
    font-size: 16px;
}
.widgetstart .continfo{
    display: flex;
    align-items: start;
    flex-wrap:wrap;
}
.widgetstart .continfo .continfobox{flex: 1 0 50%;position: relative;z-index: 1;padding: 5% 0 0;}
.widgetstart .continfo .continfobox:before{
    content: "";
    width: 100px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;    
}
.widgetstart .continfo .continfobox span{
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    margin: 0 0 10px;
    display: inline-block;
}
.widgetstart .continfo .continfobox a{
    color: #a1a1a1;
    font-weight: 500;
    font-size: 16px;
}
.startrightbox{}
form{}
form .fields{
    padding: 0 0 20px;
}
form .fields textarea,
form .fields input{
    background: #eee;
    border: none;
    padding: 15px 20px;
    border-radius: 0;
    transition: border-bottom .2s linear;
}
form .fields textarea::placeholder,
form .fields input::placeholder{
    color: #aaa;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
}
form .fields input[type='number']::-webkit-inner-spin-button,
form .fields input[type='number']::-webkit-outer-spin-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
form .fields textarea:focus,
form .fields input:focus{
    box-shadow: none;
    border: none;
    border-bottom: 3px solid #000;
    background: #eee;
}
form .fields-btn{
    text-align: start;
}
form .fields-btn input{
    display: inline-flex;
    color: #000;
    border: none;
    outline: none;
    letter-spacing: 1.5px;
    font-size: 13px;
    background: no-repeat;
    text-transform: uppercase;
    font-weight: 600;
}


.widgetmap{}
.widgetmap iframe{width: 100%; height: 400px; display: block;}


/*=============================
        footer
=============================*/
footer{
    background: url("../images/footerbg.webp");
    background-size: cover;
    padding: 100px 0 30px;
    position: relative;
    z-index: 1;
}
footer:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.footerfleft{}
.footerfleft .footerlogo{
    margin: 0 0 20px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .5px;
}
.footerfleft .footerlogo img{width: 120px;}
.footerfleft p{
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 200;
}
.footerfright{
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    height: 100%;
}
.footerfright h3{
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}
.footerfright a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff2e;
    margin: 40px 0 0;
    padding: 40px 0 0;
}
.copyright p{
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.copyright p a{
    color: #f9ff4e;
}
.copyright .socialmedia{
    display: flex;
    align-items: center;
    gap: 20px;
}
.copyright .socialmedia a{
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=============================
        widget ten
=============================*/





.down-to-up{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
    transition: .3s linear;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    z-index: 99;
}
.down-to-up:after{
    content: "";
    height: 20px;
    width: 1px;
    background: #000;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s linear;

}
.down-to-up.active:after{
    top: -10px;
}
.down-to-up.active{
    opacity: 1;
    pointer-events: auto;
}



/*==================== contact page =================*/
.contactpage{
    padding: 40px 0;
}
.controw{}
.controw .contpbox{
    position: relative;
    z-index: 1;
    padding: 30px 0 0;
}
.controw .contpbox:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-top: 1px solid #000;
    width: 100px;
}
.controw .contpbox span{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000;
    display: block;
}
.controw .contpbox a{
    color: #6e6e6e;
    display: inline-block;
}
.contfrm{
    padding: 80px 0 0;
    text-align: center;
}
.contfrm span{letter-spacing: 3px;font-weight: 300;font-size: 15px;}
.contfrm h3{
    font-size: 40px;
    font-weight: 700;
}
.contfrm p{
    font-size: 15px;
    width: 80%;
    margin: 15px auto 30px;
}



/*============ about page start here ================*/
.aboutpage{
    padding: 40px 0 0;
}
.aboutpage .aboutpagebox{
    padding: 0 0 20px;
}
.aboutpage .aboutpagebox h2{
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
}
.aboutpage .aboutpagebox h3{
    font-weight: 800;
    font-size: 24px;
    margin: 0 0 10px;
}
.aboutpage .aboutpagebox h4{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
}
.aboutpage .aboutpagebox p{
    font-size: 18px;
    padding: 0 0 10px;
    color: #7e7d7d;
    text-align: justify
}

.numberssection{
    padding: 40px 0 0;
}
.aboutpageleft{
    background: url("../images/aboutus.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px;
}
.aboutpageleft .numbers{
    background: #fff;
    display: flex;
    flex-wrap: wrap;
}
.aboutpageleft .numbers .numbox{
    flex: 1 0 50%;
    text-align: center;
    padding: 40px;
}
.aboutpageleft .numbers .numbox span{
    display: block;
}
.aboutpageleft .numbers .numbox span:nth-child(1){
    font-size: 50px;
    font-weight: 800;
    background: url("../images/aboutus.webp");
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 1000%;
    background-position: 0%;
}
.aboutpageleft .numbers .numbox span:nth-child(2){
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.aboutpageright{}
.aboutpageright .tagline{
    margin: 0 0 20px;
    display: block;
    color: #999;
    letter-spacing: 2px;
    font-weight: 200;
}
.aboutpageright h2{
    width: 60%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
}
.aboutpageright p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}
.aboutpageright a{}
.aboutteam{
    padding: 50px 0;
    background: #fff;
}
.aboutteam .maintitle{
    margin: 0 0 60px;
}
.aboutteam .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.aboutteam .maintitle h2{
    width: 60%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #000;
}
.aboutteambox{position: relative;z-index: 1;}
.aboutteambox .post{
    font-size: 12px;
    position: absolute;
    top: -50px;
    right: 0;
    transition: .4s linear;
    opacity:0;
    visibility: hidden;
}
.aboutteambox:hover .post{
    top: -20px;
    opacity: 1;
    visibility: visible;
}
.aboutteambox .post:before{
    content: "";
    width: 0.1px;
    height: 40px;
    background: #000;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s linear;
}
.aboutteambox:hover .post:before{
    height: 100px;
}
.aboutteambox figure{}
.aboutteambox figure img{width: 100%;}
.aboutteambox .content{}
.aboutteambox .content h3{text-align: end;font-size: 24px;font-weight: 700;}
/*============ about widget end here ================*/



/*============ services page start here ================*/
.servicesfirst{
    padding: 40px 0 0;
}
.serfirstleft{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.serfirstleft figure{
    text-align: center;
}
.serfirstleft figure img{
    width: 400px;
    height: 400px;
    border-radius: 50%;
}
.serfirstright{}
.serfirstright .tagline{
    margin: 0 0 20px;
    display: block;
    color: #999;
    letter-spacing: 2px;
    font-weight: 200;
}
.serfirstright h3{
    width: 100%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
}
.serfirstright p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}

.servicesecond{
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 40px 0 0;
}
.servicesecond:before{
    content: "";
    background: url("../images/serbg.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-position: 10%;
}
.servicesecond:after{
    content: "";
    width: 100%;
    height: 400px;
    background: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.servicesecond .maintitle{
    margin: 0 0 100px;
}
.servicesecond .maintitle .tagline{
    margin: 0 0 10px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}
.servicesecond .maintitle h2{
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
    color: #fff;
}
.sersecondbox{
    background: #fff;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(0,0,0,.2);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.sersecondbox .overlayimg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: .2s linear;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
}
.sersecondbox:hover .overlayimg{
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.sersecondbox .overlayimg img{
    width: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
}
.sersecondbox figure{
    text-align: center;
}
.sersecondbox figure img{
    width: 50px;
}
.sersecondbox .content{
    text-align: center;
}
.sersecondbox .content h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 15px;
    letter-spacing: 1px;
    color: #000;
}
.sersecondbox .content ul{}
.sersecondbox .content ul li{
    padding: 0 0 5px;
}
.sersecondbox .content ul li:before{
    content: "\f2e5";
    font-family: "remixicon";
    font-weight: 700;
    color: #2988b2;
}

/*============ services page end here ================*/


/*============ project page start here ================*/
.projectpage{
    padding: 40px 0;
}
.projectrow{
    margin: 0 0 40px;
}
.projectrow:nth-child(odd){}
.projectrow:nth-child(even){}
.projectrow:nth-child(even) .gridbox{}
.projectrow:nth-child(even) .gridbox:nth-child(1){
    order: 2;
}
.projectrow:nth-child(even) .gridbox:nth-child(2){}
.projectrow:nth-child(even) .gridbox:nth-child(2) .projectright{
    padding: 0 60px 0 0;
    align-items: end;
}
.projectrow:nth-child(even) .gridbox:nth-child(2) .projectright .tagline{}
.projectrow:nth-child(even) .gridbox:nth-child(2) .projectright .tagline:after{
    left: 120%;
}
.projectrow:nth-child(even) .gridbox:nth-child(2) .projectright p{text-align: end;}
.projectleft{
    margin: 0;
}
.projectleft img{width: 100%;}
.projectright{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 0 0 60px;
}
.projectright .tagline{
    margin: 0 0 30px;
    font-size: 13px;
    color: #000;
    position: relative;
    z-index: 1;
}
.projectright .tagline:after{
    content: "";
    width: 150px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 120%;
}
.projectright .title{
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px;
}
.projectright p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}
.projectright .read{
    margin: 30px 0 0;
}
.projectpage .prodesc{
    padding: 10px 0 0;
}
.projectpage .prodesc p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
    text-align: justify;
}


/*============ project page end here ================*/



/*============ gallery page start here ================*/

.gallerypage{
    padding: 40px 0;
}
.gallerypage .galbox{
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}
.gallerypage .galbox:after{
    content: "\e032";
    font-family: 'simple-line-icons';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: grid;
    place-items: center;
    font-size: 25px;
    background: #0000005c;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease-in;
}
.gallerypage .galbox:hover:after{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gallerypage .galbox img{
    width: 100%;
    transition: .3s linear;
}
.gallerypage .galbox:hover img{
    transform: scale(1.1);
}



/*============ gallery page end here ================*/


/*============ profile page start here ================*/
.profilepage{
    padding: 20px 30px;
}
.profileimg{}
.profileimg img{
    width: 400px;
}
.profilecontent{}
.profilecontent h3{
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 10px;
}
.profilecontent .qualification{
    margin: 0 0 10px;
}
.profilecontent .qualification span{
    font-weight: 600;
    font-size: 18px;
    display: block;
    position: relative;
    z-index: 1;
}
.profilecontent .qualification span:before{
    content: "\f2e5";
    font-family: "remixicon";
    font-weight: 700;
    color: #2988b2;
    margin-right: 5px;
    display: inline-block;
}
.profilecontent p{
    font-size: 18px;
    padding: 0 0 15px;
    color: #7e7d7d;
}
.profilecontent p span{
    font-weight: 700;
}



/*============ profile page end here ================*/


.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.mobheader .moblogo{width: 90%;}
.mobheader .moblogo img{width: 100%;}
.mobheader .mobtoggle{
    color: #000;
    width: 10%;
    height: 20px;
    position: relative;
    z-index: 1;
}
.mobheader .mobtoggle span{
    width: 25px;
    height: 1px;
    background: #000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mobheader .mobtoggle span:nth-child(1){}
.mobheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mobheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}

.mobmenu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: .3s linear;
    box-shadow: -2px 0 10px 0 #0000002e;
}
.mobmenu.active{
    right: 0;
}
.mobmenu .close-mobmenu{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 18px;
}

.mobmenuhead{text-align: center;padding: 15px 10px;border-bottom: 1px solid #ddd;}
.mobmenuhead h3{font-size: 16px;text-transform: uppercase;letter-spacing: 1px;font-weight: 700;}
.mobul{
    padding: 15px;
}
.mobul .mobli{
    padding: 0 0 10px;
}
.mobul .mobli .moba{
    color: #666;
    letter-spacing: .4px;
}
.testing-container{padding: 50px 0;}
.testing-container h1{font-weight: 801;font-size: 28px;color: #000000;}
.testing-container p{
    font-size: 18px;
    padding: 0 0 10px;
    color: #7e7d7d;
    text-align: justify;
}
.testing-container h2{
    font-weight: 800;
    font-size: 24px;
    margin: 20px 0 10px;
}
.testing-container h3{
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px;
}
.testing-container ul{}
.testing-container ul li{
    padding: 0 0 6px;
    font-size: 18px;
    padding: 0 0 10px;
    color: #7e7d7d;
    text-align: justify;
}
.testing-container ul li strong{
    font-weight: 600;
}