﻿*{
    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: #fb9d12;
    --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: 'roboto-black';
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: 'Rubik-Semibold';
    src: url(../fonts/Rubik-Semibold.ttf);
}

@font-face {
    font-family: 'Rubik-Regular';
    src: url(../fonts/Rubik-Regular.ttf);
}



.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 .nav-item{
    margin:0px 15px;
    position:relative;
}

    header .nav-item:before {
        content: "";
        position: absolute;
        height: 3px;
        width: 0px;
        bottom: 0px;
        transition: all .3s linear;
    }

    header .nav-item:hover:before {
        content: "";
        position: absolute;
        height: 5px;
        width: 100%;
        background-color: var(--color1);
        bottom: 0px;
    }

header .nav-link {
    color: rgb(27 26 26) !important;
    transition: all .3s linear;
    font-size: 14px !important;
    padding: 32px 0px !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;
}



@media(min-width:992px){
    header .nav-item .dropdown-menu {
        font-size: 14px;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        top: 150px;
        transition: all 0.5s
    }

    header .nav-item:hover .dropdown-menu {
        font-size: 14px;
        display: block !important;
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .sec2col1 ~ div {
        max-height: 250px;
    }

}

@media(max-width:1199px){
    .membership{
        margin:auto;
    }
}

    header .nav-item:hover .dropdown-menu a {
        transition: all .3s linear;
        position:relative;
    }

    header .nav-item:hover .dropdown-menu a:hover{
/*        background-color:var(--color1);
        color:white;*/
        display:flex;
        align-items:center;
    }

header .nav-item .dropdown-menu a i {
    transition: all .3s linear;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:5px;
    opacity:0;

}

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*/



   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/header.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover
}

/*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
}

@media(max-width:575px){
    .countercont p span {
        font-size: 40px !important;
    }

    .countercont h6 {
        font-size: 15px !important;
    }


    .membershipcont{
        margin:0px 4px;
    }
    
}

/*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 i {
        color: white;
        font-size: 62px;
        width:50px;
        transition:all 0.5s
      
    }

    .Wm_nGauge .col-lg-6:hover i {
        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: 200px;
    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: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--color1);
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px
}

    #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: black;

}

.footer-grid .phone {
    color: black;
    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 .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;
    }
}