﻿*{
    padding:0px;
    margin:0px;
    box-sizing:border-box;
}
body, html {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'roboto-black';
}

body,html{
    overflow-x:hidden;
}

:root {
    --color1: rgb(74 171 61);
    --heading-color: #313981;
    --text-color: #a2a2a2;
    --drop-shodow: 0px 5px 83px 0px rgba(40, 40, 40, 0.1)
}


/* fonts */
/*@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}*/
@font-face {
    font-family: 'Helvetica Neue Regular';
    src: url('../fonts/Helvetica Neue Regular/Helvetica Neue Regular.woff2') format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Condensed Bold';
    src: url('../fonts/Helvetica Neue Regular/Helvetica Neue Condensed Bold.woff2') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'roboto-black';
    src: url(../fonts/Roboto-Regular.woff2);
    font-display: swap;
}

@font-face {
    font-family: 'Rubik-Semibold';
    src: url(../fonts/Rubik-Semibold.woff2);
    font-display: swap;
}

@font-face {
    font-family: 'Rubik-Regular';
    src: url(../fonts/Rubik-Regular.woff2);
    font-display: swap;
}



.m-80{
    margin-top:60px;
}

.homebgcolor {
    background-color: #f2f2f2;

}

.btn-brown {
    background-color: var(--color1);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all .3s linear;
    font-size:14px;
    border:none
}


.btn-brown:hover {
    background-color:black;
    color:white;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all .3s linear;
    font-size: 14px;
}


.social_icon i {
    width: 20px;
    height: 20px;
    background-color: black;
    text-align: center;
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin:5px;
    padding:5px;
    font-size:12px;
}

.social_icon i:hover{
    background-color:var(--color1)
}
.social_icon a{
    text-decoration:none;
    color:white;
}

.scrolltop{
    position:fixed;
    bottom:0px;
    right:0px;
    width:40px;
    height:40px;
    background-color:var(--color1);
    display:grid;
    place-content:center;
   
}
.scrolltop .fa-arrow-up{
    color:white!important;
}
#scroll span{
  animation:scrollani 2s linear infinite forwards
}

@keyframes scrollani{
0%{
    transform:translateY(10px)
}

50%{
    transform:translateY(-10px)
}

    100% {
        transform: translateY(10px)
    }
}

/*header section start*/
header {
    min-height: 100px;
    width: 100%;
    background-color: white;
    z-index: 1000;
    position: relative;
    box-shadow: 0px 17px 32px 0px rgba(40, 40, 40, 0.1);
  
}

    header.headfix {
        position: fixed;
        width: 100%;
        background-color: white;
        z-index: 1000;
        
        top: 0px;
        animation: headani linear 0.5s
    }

    @keyframes headani{
        0%{
            transform:translateY(-100%)
        }

        100%{
            transform:translateY(0%)
        }
    }

.dropdown-toggle::after {
    display: none !important;
}



header .main-nav>li{
    margin: 0px 15px;
    position: relative;
}

header .main-nav > li:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0px;
    bottom: 0px;
    transition: all .3s linear;
}

header .main-nav > li:hover:before {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: var(--color1);
    bottom: 0px;
}

    /*header .nav-item.addline:before {
        left:0px
    }

    header .nav-item.removeline:before {
        left: 100%
    }*/

header .main-nav a {
    color: rgb(27 26 26) !important;
    transition: all .3s linear;
    font-size: 16px !important;
    padding: 32px 0px !important;
    font-weight:bold;
}


header .main-dropdown {
   /* MIN-WIDTH: 791PX;*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /*LEFT: -400PX;*/
}

header .main-dropdown a {
    padding:5px !important;
}



header .nav-item:hover .nav-link {
    color: var(--color1) !important;
}




header .social_icon a {
    color: var(--color1);
    text-decoration: none;
    font-size:14px !important;
    margin:0px 3px;
}

header .dropdown-menu {
    border: none !important;
    padding:10px 10px 0px 10px;
}






header .nav-item:hover .dropdown-menu a {
    transition: all .3s linear;
    position: relative;
    color: #9b9b9b
}

    header .nav-item:hover .dropdown-menu a:hover{
        background-color:transparent !important;
        display:flex;
        align-items:center;
        color:var(--color1);
    }

/*header .nav-item:hover .dropdown-menu a:before {
    position:absolute;
    content:"";
    bottom:0px;
    left:0px;
    width:0px;
    height:2px;
    background-color:var(--color1);
    transition:all 0.3s
}*/

    header .nav-item:hover .dropdown-menu a:hover:before {
        width: 100%;
    }


header .nav-item .dropdown-menu a i {
    transition: all .3s linear;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:1px;
    opacity:0;
    width:17px;
    height:17px;
    background-color:var(--color1);
    color:white;
    font-size:12px;
    border-radius:50%;
    display:grid;
    place-content:center;
   

}

header .nav-item .dropdown-menu a:hover i {
    opacity: 1;
}

header .bookbtn {
    margin: 20px 0px !important;
    line-height: 34px;
    border-radius: 100vmax !important;
    font-weight: bold;
    
}
    /*style home section*/
h1, h2, h3, h4, h5, h6 {
    font-family: Rubik-Semibold;
    font-size: 30px;
}

   p {
    font-size:14px
}

.welimg img{
    transition:0.5s
}

.welimg img:hover {
    transform:scale(1.3)
}

.navbar .nav-item .nav-link{
    font-size:18px;
    font-weight:bold;
    text-transform:uppercase
}

.banner {
    background-image: url('../images/home_banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 64vh;
    font-family: 'Helvetica Neue Regular';
}

    .banner h5 {
        font-family: 'Helvetica Neue Condensed Bold' !important;
    }

@media(max-width:576px){
    .banner {
        height: 30vh;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/home_banner.jpg');
    }

        .banner p {
            font-size: 16px !important;
        }

    .banner h5{
        font-size:25px !important;
    }
}

/*membership section*/
.membership{
    min-height:350px;
}

.membership .fa-arrow-right {
    width: 20px;
    height: 20px;
    background-color: black;
    text-align: center;
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin: 5px;
    padding: 5px;
    font-size: 12px;
}
.membership a{
    text-decoration:none;
    color:white;
    display:block;
}

    .membership .readmore {
        position: relative;
        max-width: 130px;
        padding: 3px 0px;
        overflow: hidden
    }

.membership .readmore span {
    color: black;
    font-weight: bold;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:100%;
    width:100%;
    opacity:0;
    transition:all 0.5s

}
    .membership .readmore:hover a {
        color: var(--color1)
    }

    .membership .readmore:hover i {
        background-color: var(--color1);
        color:white
    }

    .membership .readmore:hover span{
        color: var(--color1)
    }

    .membership .col-lg-3:hover .readmore span {
        left:35px;
        opacity:1
    }

.membership p {
    color: var(--text-color);
    line-height: 25px;
    font-family: 'Rubik-Regular';
}

.sec2col1 {
    background-color: var(--color1);
    min-height: 240px;
    max-height: 240px;
    padding: 30px;
    overflow:hidden

}

  /*  .sec2col1:before {
        position: absolute;
        content: "";
        height: 5px;
        width: 150%;
        background-color: white;
        filter: blur(15px);
        transform: rotate(45deg);
        animation: lineani linear infinite 3s forwards
    }*/

.sec2col1~div{

   
    box-shadow:var(--drop-shodow);
    background-color:white
}

/*.membershipcont{
    transform:translateY(-50px)
*/}

.membershipcont .col-lg-4{
    border-radius:10px
}
.membershipcont h5{
    font-size:18px;
    line-height:30px;
    font-weight:400;
}

.sec2col1 h5 {
    font-size: 25px;
    font-weight: normal !important;
    line-height: 35px;
    font-family: 'Rubik-Regular';
}


/*counter section*/
.countercont p span {
    font-size: 70px !important;
    font-family: Rubik-Semibold;
    color: var(--color1);
    margin-bottom: 0px;
    font-weight:normal
}

.countercont h6 {
    font-size: 19px !important;
    font-family:Rubik-Regular;
    font-weight:600
}



/*what makes ngauge*/
.Wm_nGauge{
    background-color:var(--color1);
    position:relative;
    overflow:hidden
}


@keyframes lineani{
   0%{
       left:-100%
   }

   100% {
        left: 100%
    }
}

.Wm_nGauge h6{
    font-size:18px;
    line-height:30px;
}

    .Wm_nGauge h5 {
        line-height: 40px
    }

.Wm_nGauge .col-lg-8 .col-md-6 i {
    color: white;
    font-size: 62px;
    width: 50px;
    transition: all 0.3s
}

.Wm_nGauge .col-lg-8 .col-md-6:hover i {
    transform: translateY(-10px)
}

.Wm_nGauge .col-lg-8 .col-md-6 img{
    transition:all 0.3s
}

    .Wm_nGauge .col-lg-8 .col-md-6:hover img{
        transform:translateY(-10px);
    }
    /*serve--section*/
    .serve h4 {
        font-size: 16px !important;
        color: var(--color1);
        padding-bottom: 10px !important
    }

.servecard{
    position:relative;
    overflow:hidden;
    padding:40px
}

    .servecard .topline {
        position: absolute;
        top: 0px;
        width: 98%;
        left: 0px;
        height: 4px;
        background-color: #eaeaea
    }

    .servecard .topline:before{
        content:"";
        position:absolute;
        top:0px;
        left:50%;
        transform:translateX(-50%);
        background-color:var(--color1);
        height:4px;
        width:0px;
        transition:all 0.3s
    }

    .servecard:hover .topline:before{
        width:100%;

    }

    .servecard h6 {
        font-size: 21px !important;
        font-family: Rubik-Regular;
        font-weight:600;
        line-height:32px
    }

    .serve h5 {
        font-size: 34px;
    }

    .servecard p {
        color: var(--text-color);
        font-weight: normal;
        font-family: Rubik-Regular;
        line-height:25px;
    }

    .servecard .fa-arrow-right {
        width: 20px;
        height: 20px;
        background-color: black;
        text-align: center;
        border-radius: 50%;
        display: grid;
        place-content: center;
        margin: 5px;
        padding: 5px;
        font-size: 12px;
        color:white;
        transition:all 0.8s
    }

    .servecard a {
        text-decoration: none;
        display: flex;
        align-items: center;
        color: black;
        background-color: transparent;
        max-width: 50px;
        padding: 5px 0px;
        border-radius: 10px;
        white-space:nowrap;
        transition:all 0.3s;

        
    }

    .servecard img{
        margin-bottom:15px;
    }

    .servecard:hover a {
        text-decoration: none;
        display: flex;
        align-items: center;
        color: white;
        background-color: var(--color1);
        max-width: 148px;
        padding: 5px 10px;
        border-radius: 10px;
        opacity: 1
    }

    .servecard:hover .fa-arrow-right {
        color: var(--color1);
        background-color: white;
    }

    .servecard .readmore span{
        font-weight:600
    }

.testimonials {
    background-image: url(../images/bg1-home4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  /*  background-attachment:fixed*/
}

.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1;
    border: 3px solid var(--color1);
    background: black !important;
    width:15px !important;
    height:15px !important;
}

.owl-theme .owl-controls .owl-page span{
  background-color:white !important;
  opacity:1 !important;
  width:8px !important;
  height:8px !important;
}

.owl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.project h2 {
    font-size: 24px;
}

.project .bg-area {
    height: 150px;
    width: 80%;
    overflow: hidden;
    border-radius: 10px;
}
.project a{
    position:relative;
    border-radius:10px;
}

.project img{
    transition:all 0.5s
}

/*.project a:hover img{
   transform:scale(1.5)
}*/

.project .prolabel {
    background-color: white;
    height: 150px;
    position: absolute;
    top: 30%;
    left: 15%;
    width: 80%;
    transition:all 0.5s;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:10px;
    border-radius:10px
}

.project a:hover .prolabel {
   background-color:var(--color1);
   top:20%;
   

}

.prolabel h5 {
    font-size: 14px;
    color: var(--color1);
    padding-bottom: 10px;
    font-family: Rubik-Regular;
}

.prolabel h6 {
    font-size: 19px;
    color: black;
    font-family: Rubik-Regular;
    font-weight:600;
    line-height:30px
}

/*.project a:hover h5 {
    color:white
}*/

/*.project a:hover h6 {
    color: white
}*/

.explorebtn {
    padding: 20px;
    border: 1px solid #eaeaea;
    width: 220px;
    justify-content:center;
    display: flex;
    align-items: center;
    margin: auto;
    position: relative;
    text-decoration:none;
    color:var(--color1);
    transition:all 0.5s
}
.explorebtn:hover{
    background-color:var(--color1);
    color:white;
}

.explorebtn:before{
    position:absolute;
    content:"";
    background-color:var(--color1);
    height:3px;
    width:80%;
    left:50%;
    transform:translateX(-50%);
    bottom:-2px;
    transition:all 0.5s
}

    .explorebtn:hover:before {
        background-color: var(--color1);
        color: white;
        opacity:0;
    }


    .explorebtn i {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        font-size: 12px;
        display: grid;
        place-content: center;
        background-color: var(--color1);
        color: white;
        
    }



    .explorebtn.adanimation i {
       animation:arrowanimation linear 0.3s;
       background-color:white;
       color:var(--color1)
    }

#scroll {
    position: fixed;
    right: 0px;
    bottom: 0px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--color1);
    text-indent: -9999px;
    display: none;
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: black;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }



.footer-grid h5 {
    color: white !important;
    font-size: 16px !important;
    margin-bottom:30px
}

.footer-grid .dropdown-item{
    font-size:14px;
}

.footer-grid a, .footer-grid p {
    color: #9b9997;

}

.footer-grid .phone {
    color: var(--color1);
    font-family: 'Rubik-Semibold';
    font-size:18px
}

.footer-grid .dropdown-item:hover {
    color: white;
    text-decoration: none;
    background-color: transparent !important;
}

.footer-grid .social_icon a {
    border: 2px solid #363636;
    border-radius: 50%;
    padding:3px;
}

.footer-grid .social_icon i {
    width: 20px;
    height: 20px;
    background-color: var(--color1);
    text-align: center;
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin: 5px;
    padding: 5px;
    font-size: 12px;
}

 .footer-grid .social_icon i:hover {
        background-color:white;
    }

.footer-grid .social_icon a {
    text-decoration: none;
    color: black;
}

.footer-grid .explorebtn {
    padding: 15px;
    width: 200px;
    border-radius:10px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: auto;
    position: relative;
    text-decoration: none;
    color: white;
    transition: all 0.5s;
    background-color:var(--color1);
    border:none;
}

.footer-grid a{
    width:fit-content
}



.footer-grid .explorebtn:hover {
    background-color:white;
    color: var(--color1);
}

.footer-grid .explorebtn:before {
    position: absolute;
    content: none;
    background-color: var(--color1);
    height: 3px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    transition: all 0.5s
}

.explorebtn:hover:before {
    background-color: var(--color1);
    color: white;
    opacity: 0;
}


.footer-grid .explorebtn i {
    width: 20px;
    height: 20px;
    border-radius:0px;
    font-size: 25px;
    display: grid;
    place-content: center;
    background-color:transparent;
    color: white;
}



.footer-grid .explorebtn.adanimation i {
    animation: arrowanimation linear 0.3s;
    background-color: transparent;
    color: var(--color1)
}

.copyright a {
    color: #9b9997;
    text-decoration:none;
    font-size:14px
}

.copyright span {
    font-size: 14px
}

.footer-grid .direction{
    color:white;
    transition:all 0.5s
}

.footer-grid .direction:hover {
    color: var(--color1);
}

@keyframes arrowanimation {
    0% {
            transform: translateX(0px)
        }

        50% {
            transform: translateX(-10px)
        }

        100% {
            transform: translateX(0px)
        }
    }

@media(min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}


.membership p {
    text-align: justify
}

@media(max-width:991px){
    .membership .col-lg-6{
        padding-right:0px;
        padding-left:0px;
    }

    
}


.bannerin h1 {
    color:white !important;
}

.bannerin p {
    color: #ddd9d9 !important;
}

.bannerin {
    background-position: center;
    background-color: #e3e3e3;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.breadcrumb{
    padding:10px 0px !important;
    background-color:white;
}

.breadcrumb a{
    text-decoration:none;
}

.why_us .img-cont{
    border:none !important
}

.why_us img {
    width: 100%;
    max-width: 80px !important;
}

