@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@font-face {
    font-family: 'signature';
    src: url('./fonts/signature-font.ttf');
}
*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html,body{
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    --client-primary: rgb(236,0,140);
    --client-yellow: rgb(248, 248, 152);
    --client-cyan: rgb(0,174,239);
    overflow-x: hidden;
    overflow-y: auto;
    --client-secondary: #1a1d24;
    --client-secondary-dark: #0f1115;
}
body.sidebar-on{
    overflow-y: hidden;
    height: 100vh;
    max-width: 100vw;
}
.container{
    width: 92%;
    max-width: 1480px;
    margin: auto;
}
.container-max{
    max-width: 1920px;
    margin: auto;
    padding: 0px 15px;
}
.container-min{
    max-width: 1174px;
    margin: auto;
    padding: 0px 15px;
}
.signature{
    font-family: 'signature', sans-serif;
    margin: 1rem 0px;
}
.brandName{
    font-family: 'Marcellus', 'Quicksand', sans-serif;
}

button, .btn{
    border-width: 1px;
    cursor: pointer;
    font-size: .9rem;
    background: local
}
button:focus, .btn:focus, a{
    box-shadow: none;
    outline: none;
    background: initial;
}
button.transparent{
    border: none;
    background-color: transparent;
}

.btn{
    padding: .7rem 1.2rem;
    border-radius: 0px;
    transition: .4s all;
    letter-spacing: .05rem;
}
.btn-sm{
    padding: .6rem .8rem;
    font-size: .9rem;
}
.btn-basic, .btn-alt:focus{
    min-width: 120px;
    border: none;
    color: #fff;
    background-image: linear-gradient(to right, var(--client-primary)50%, var(--client-secondary-dark)50%);
    background-size: 250%;
    background-position: right;
    text-transform: uppercase;
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-weight: 500;
}
.btn-basic:hover,.btn-basic:focus{
    min-width: 120px;
    border: none;
    color: #fff;
    background-position: left;
}
.btn-alt, .btn-alt:focus{
    min-width: 120px;
    border: none;
    color: #fff;
    background: linear-gradient(to right, var(--client-secondary-dark)50%, var(--client-primary)50%);
    background-size: 250%;
    background-position: right;
    text-transform: uppercase;
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-weight: 500;
}
.btn-alt:hover, .btn-alt:focus{
    border: none;
    color: #fff;
    background-position: left;
}
.btn-white, .btn-alt:focus{
    min-width: 120px;
    border: none;
    color: #232323;
    background: linear-gradient(to right, var(--client-primary)50%, #fff 50%);
    background-size: 250%;
    background-position: right;
    text-transform: uppercase;
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-weight: 500;
}
.btn-white:hover, .btn-alt:focus{
    border: none;
    color: #fff;
    background-position: left;
}

.btn-xl{
    padding: .9rem 1.5rem;
    font-size: 1rem;
}
.btn-action{
    min-width: 15px;
}


a{
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
}
a:hover, a{
    text-decoration: none;
}

p{
    margin-bottom: 1.3rem;
    line-height: 1.4;
    font-size: .9rem;
}
p:last-child{
    margin-bottom: 0rem;
}
.bold{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.ebold{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
em{
    font-weight: 600;
}

.py-6{
    padding: 4.2rem 0px; 
}
.py-7{
    padding: 6rem 0px;
}

.bg-client-primary{
    background: var(--client-primary)
}
.bg-client-yellow{
    background: var(--client-yellow)
}
.bg-client-secondary{
    background: var(--client-secondary)
}
.bg-client-secondary-dark{
    background: var(--client-secondary-dark)
}
.before-primary, .after-primary{
    position: relative;
}
.before-primary:before, .after-primary:after{
    content:'';
    position: absolute;
    width: 1000%;
    height: 100%;
    top: 0;
    background: var(--client-primary)
}
.before-primary:before{
    right: 100%
}
.after-primary:after{
    left: 100%
}

.text-client-primary{
    color: var(--client-primary)
}
.text-client-yellow{
    color: var(--client-yellow)
}
.text-client-cyan{
    color: var(--client-cyan)
}
.text-client-dark{
    color: var(--client-secondary-dark) !important
}
.text-client-secondary{
    color: var(--client-secondary) !important
}

.wrapper{
    position: relative;
    display: flex;
    min-height: 100vh;
    width: 100%;
    transition: .4s all;
}
.page-wrapper{
    width: 100%;
}

.top-wrapper{
    background: var(--client-secondary-dark);
    padding: .7rem 0px;
}
.top-wrapper .content{
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
}
.top-wrapper .content .icon{
    margin-right: .75rem;
    color: var(--client-primary);
}
.top-wrapper .content:last-child{
    margin-left: 20px;
}
.top-wrapper .content:last-child .icon{
    font-size: .9rem;
    line-height: 1;
}
.top-wrapper .content a{
    color: rgba(255,255,255,.7);
}
.top-wrapper .social-icons a{
    color: #fff;
    line-height: 1;
    font-size: .9rem;
    margin-right: .7rem
}
.top-wrapper .social-icons a:hover{
    color: var(--client-primary)
}

.header-warpper{
    z-index: 10;
    position: relative;
}
.header{
    background: var(--client-secondary);
    transition: .4s all;
}
.header.stickytop{
    position: fixed;
    top: -150px;
    left: 0;
    right: 0;
    background: rgba(26,29,36,.9);
    animation-name: header-slide;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes header-slide{
    0%{
        top: -150px
    }100%{
        top: 0px
    }
}

.header .navbar-brand{
    padding: 0rem 0px;
    max-width: 210px;
}

.navbar-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item{
    float: left;
    position: relative;
    padding: 1.8rem 0px;
    margin: 0px .8rem;
    box-sizing: border-box;
}
.menu-link{
    color: #fff;
    font-family: 'Poppins','Quicksand', sans-serif;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .07rem;
}
.menu-link:hover{
    color: #fff;
}
.menu-item a.active:hover, .menu-item a.active{
    color: var(--client-primary)
}
.menubar-toggler{
    display: none;
}

.submenu{
    position: absolute;
    left:0;
    top: 100%;
    background: var(--client-secondary);
    padding: 1.3rem .7rem;
    transform: scale(0);
    transition: .4s all;
    transform-origin: 10% 30%;
    opacity: 0;
}
.submenu a{
    display: block;
    font-family: 'Poppins','Quicksand', sans-serif;
    letter-spacing: .05rem;
    font-size: .7rem;
    white-space: nowrap;
    color: #fff;
    text-transform: uppercase;
    padding: .5rem 1rem;
}
.menu-item.active .submenu.show{
    transform: scale(1);
    opacity: 1;
}
.menu-link i{
    display: none;
}
.submenu a:hover{
    color: #fff
}

.sidebar-wrapper{
    background: rgb(26,29,36);
    width: 18rem;
}
.sidebar-wrapper .menubar{
    max-height: calc(100vh - 69px);
    overflow-y: auto;
}

.sidebar-wrapper h5{
    font-family: 'Poppins','Quicksand', sans-serif;
    background: var(--client-primary);
    color: #fff;
    font-weight: 700;
    padding: 1rem 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 100vh;
    overflow-y: auto;
}
.sidebar-closer{
    padding: 0px;
    border: none;
    font-size: 1.3rem;
    color: #fff
}
.sidebar-wrapper .menu-item{
    float: none;
    padding: 0px 10px;
}
.sidebar-wrapper .menu-link{
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    align-items: center;
}
.sidebar-wrapper .menu-link i{
    display: block;
    margin-left: 10px
}
.sidebar-wrapper .submenu{
    opacity: 1;
    transform: scale(1);
    position: relative;
    top: 0;
    padding: 0rem .5rem;
    margin-bottom: .7rem !important;
}

.sidebar-on .wrapper{
    margin-left: -18rem
}


.mainslider{
    overflow: hidden;
}
.mainslider .swiper-slide img.img-fluid{
    width: 100%;
    height: 80vh;
    object-fit: cover;
    max-height: 700px;
}
.mainslider .swiper-slide{
    position: relative;
}
.mainslider .slide-inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,29,36, .25);
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainslider .slide-inner .caption-content{
    max-width: 40rem;
}

.mainslider .slide-inner .slide-caption h3{
    font-size: 2rem;
    color: #fff;
    font-family: 'Poppins', 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30%);
    animation-delay: .6s;
}
.mainslider .slide-inner .slide-caption h3 span{
    text-transform: none;
}
span.brandName{
    text-transform: none;
}
.mainslider .slide-inner .slide-caption p{
    color: #fff;
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(30%);
    animation-delay: .9s;
    font-weight: 500;
}
.mainslider .slide-inner .slide-caption .slide-btns{
    opacity: 0;
    transform: translateY(30%);
    animation-delay: 1.2s;
}
.mainslider .slide-inner .slide-caption p.show, .mainslider .slide-inner .slide-caption h3.show, .mainslider .slide-inner .slide-caption .slide-btns.show{
    animation-name: slideinup;
    animation-duration: .6s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes slideinup{
    from{
        opacity: 0;
        transform: translateY(30%);
    }to{
        opacity: 1;
        transform: translateY(0%);
    }
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: var(--client-primary);
}
.mainslider .swiper-button-next, .mainslider  .swiper-button-prev{
    position: absolute;
    top: 50%;
    width: 25px;
    height: 80px;
    margin-top: -40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
    background: rgba(26,29,36, .3)
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px;
    color: rgba(255,255,255,.6)
}

.mainslider .swiper-button-prev{
    left: 0
}
.mainslider .swiper-button-next {
    right: 0
}
.mainslider .swiper-button-next:hover, .mainslider .swiper-button-prev:hover{
    background-color: var(--client-secondary-dark);
    color: #fff;
}



.title-top{
    display: inline-block;
    font-weight: 600;
    letter-spacing: .07rem;
    font-size: .85rem;
    padding: .5rem .7rem;
    line-height: 1;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
}
.title-top-primary{
    background: var(--client-primary);
    color: #fff
}
.title-top-white{
    background: #fff;
    color: var(--client-secondary-dark);
}
.title-top-dark{
    background: var(--client-secondary-dark);
    color: #fff
}
.title-main-h1{
    font-family: 'Poppins','Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 2.2rem;
    font-size: 2.2rem;
}
.title-main{
    font-family: 'Poppins','Quicksand', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}
.after{
    position: relative;
    padding-bottom: 1.3rem
}
.after:after{
    content:'';
    position: absolute;
    width: 3rem;
    height: 3px;
    background: var(--client-primary);
    top: 100%;
}
.after.after-line-left:after{
    left:0
}
.after.after-line-center:after{
    left:50%;
    transform: translateX(-50%);
}
.bg-client-secondary .title-main-h1{
    color: rgba(255,255,255,.9);
}
.bg-client-secondary p{
    color: #a8a8a8;
    font-weight: 400;
    line-height: 1.6;
}

.section-card{
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 600px;
    margin: auto;
}
.section-card.full-width{
    max-width: 100%;
}
.card-primary{
    background: var(--client-primary);
}
.card-client-yellow{
    background: var(--client-yellow);
    color: #343434
}
.card-client-cyan{
    background: var(--client-cyan);
}
.card-secondary-dark{
    background: var(--client-secondary-dark);
}
.card-icon img{
    max-width: 5rem;
}
.swiper-slide .card-icon img{
    line-height: 5rem;
}
.card-icon i{
    font-size: 2.8rem;
    line-height: .7;
}
.card-icon{
    padding: 1rem;
}
.swiper-slide .card-icon{
    height: 7rem;
}
.card-icon.inverted img{
    filter: brightness(0) invert(1);
}
.card-content{
    padding: 1rem;
    padding-top: .5rem
}
.card-title{
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.5rem;
}
.card-primary p, .card-client-cyan p{
    color: #ffffff;
    font-weight: 500;
}
.card-client-yellow p{
    color: #232323;
    font-weight: 500;
}
.card-client-yellow .card-icon img{
    filter: brightness(0);
}
.card-client-yellow .card-title{
    color: #232323
}
.text-flip{
    font-family: 'Poppins', 'Quicksand', sans-serif;
    position: relative;
    font-weight: 800;
    perspective: 1000px;
    height: 3rem
}
.text-flip .flip-element{
    position: absolute;
    left: 0;
    transform: rotateX(-180deg);
    transform-style: preserve-3d;
    animation: flip 6s infinite ease;
    backface-visibility: hidden;
    transform-origin: 50% 100%;
    opacity: 0;
    white-space: nowrap;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.text-flip .flip-element:nth-child(1){
    animation-delay: 0s;
}
.text-flip .flip-element:nth-child(2){
    animation-delay: 2s;
}
.text-flip .flip-element:nth-child(3){
    animation-delay: 4s;
}

@keyframes flip{
    0%{
        opacity: 0;
        transform: rotateX(-180deg);
    }
    20%{
        opacity: 1;
        transform: rotateX(0deg);
    }
    30%{
        opacity: 1;
        transform: rotateX(-30deg);
    }
    50%{
        opacity: 0;
        transform: rotateX(180deg);
    }
    100%{
        opacity: 0;
        transform: rotateX(-180deg);
    }
}
.right-full-content, .left-full-content{
    position: relative;
}
.right-full-content:after, .left-full-content:before{
    content:'';
    position: absolute;
    width: 500%;
    height: 100%;
    top: 0;
    bottom: 0;
}
.right-full-content:after{
    left: 100%
}
.left-full-content:before{
    right: 100%;
}
.card-client-yellow.left-full-content:before, .card-client-yellow.right-full-content:after{
    background-color: var(--client-yellow);
}
.card-client-cyan.left-full-content:before, .card-client-cyan.right-full-content:after{
    background-color: var(--client-cyan);
}
.card-primary.left-full-content:before, .card-primary.right-full-content:after{
    background-color: var(--client-primary);
}
.portfolio-thumb{
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}
.swiper-container{
    overflow: hidden;
}
.portfolio-thumb .img-fluid{
    min-width: 100%;
    min-height: 280px;
    object-fit: cover;
    box-sizing: border-box;
}
.portfolio-thumb:before, .portfolio-thumb:after{
    content:'';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    background: rgba(26,29,36, .7);
    transition: .4s all;
    z-index: 0;
}
.portfolio-thumb:before{
    left: 0
}
.portfolio-thumb:after{
    right: 0
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portfolio-thumb .overlay{
    transform: translateY(100%);
    opacity: 0;
    z-index: 1;
    transition: .4s all;
}
.portfolio-thumb:hover .overlay{
    opacity: 1;
    transform: translateY(0%);
}
.portfolio-thumb:hover:after, .portfolio-thumb:hover:before{
    width: 50%
}
.portfolio-thumb .portfolio-thumb-title{
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}
.portfolio-thumb a, .portfolio-thumb .portfolio-thumb-title{
    transform: translateY(1.5rem);
    opacity: 0;
    transition: .4s all;
    transition-delay: .2s;
    margin-bottom: 1rem;
}
.portfolio-thumb a{
    transition-delay: .4s;
}
.portfolio-thumb:hover .portfolio-thumb-title, .portfolio-thumb:hover a{
    transform: translateY(0rem);
    opacity: 1;
}
.portfolio-group{
    padding: .6rem 1.3rem;
    display: inline-block;
    background: transparent;
    border: 2px solid var(--client-secondary-dark);
    color: var(--client-secondary-dark);
    font-size: .8rem;
    text-transform: uppercase;
    font-family: 'Poppins', 'Quicksand', sans-serif;
    font-weight: 500;
    letter-spacing: .05rem;
    margin-right: 10px;
    transition: .4s all;
}

.portfolio-group:hover, .portfolio-group.active{
    background: var(--client-secondary-dark);
    border: 2px solid var(--client-secondary-dark);
    color: #fff
}

.portfolio-item.show{
    animation-name: show;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes show{
    0%{
        transform: scale(0);
        width: 0px;
    }100%{
        transform: scale(1);
        width: initial;
    }
}

.portfolio-item.hide{
    animation-name: hide;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes hide{
    0%{
        width: initial;
        transform: scale(1);
    }100%{
        transform: scale(0);
        width: 0px;
    }
}
.portfolio-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: .4s all;
}
.portfolio-item{
    width: 33.33%;
    max-width: 33.33%
}

@media screen and (max-width: 992px){
    .portfolio-thumb .img-fluid{
        min-height: 200px;
    }
}
@media screen and (max-width: 768px){
    .portfolio-item{
        width: 50%;
        max-width: 50%
    }
}
@media screen and (max-width: 575px){
    .portfolio-item{
        width: 100%;
        max-width: 100%
    }
}



.testimonial-text{
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 3rem;
    padding: 10px 20px;
    position: relative;
}
.bg-client-yellow .testimonial-text{
    color: #232323;
}
.testimonial-text span{
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.testimonial-text span:first-child{
    left: 0px;
    top: 0;
}
.testimonial-text span:last-child{
   bottom: -2rem;
   right: 0;
   vertical-align: bottom;
}
.author{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.author .image img.img-fluid{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    margin-right: 2rem;
}

.testimonyby{
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    color: #fff
}

.bg-client-yellow .testimonyby{
    color: #232323;
}
.testimonyby .testimonydesignation{
    color: #232323
}

.tab-btn, .tab-btn:focus{
    width: 100%;
    display: block;
    text-align: left;
    padding: 13px 15px;
    border: none;
    color: #232323;
    background: rgba(0,0,0,.05);
    box-shadow: none;
    outline: none;
    font-size: .9rem;
    font-weight: 500;
    margin-top: 1.3rem;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: .4s all;
}
.tab-btn i{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}
.tab-btn.active, .tab-btn.active:focus{
    background: var(--client-secondary);
    color: #fff
}
.tab-btn i{
    transition: transform .4s;
    transform-origin: center;
    font-size: 1.1rem;
}
.tab-btn.active i{
    transform: rotate(90deg) translateX(-80%);
}
.tab-content{
    margin-top: 1.2rem;
    padding: 0px 1rem;
    display: none;
}
.tab-content p{
    font-size: .9rem;
    font-weight: 500;
    color: #454545
}
.swiper-pagination-bullet{
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size,1rem));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,1rem));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, rgba(255,255,255,0));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
    border: .2rem solid var(--client-primary);
}
.testimonialsSlider .slide-inner{
    padding-bottom: 4rem
}
.testimonialsSlider .swiper-horizontal>.swiper-pagination-bullets, .testimonialsSlider .swiper-pagination-bullets.swiper-pagination-horizontal{
    left: 0;
    text-align: left;
    bottom: 0px
}
.testimonialsSlider .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--client-primary));
}

.why-us-banner{
    background-size: cover;
    background-position: center top;
}
.banner{
    background-size: cover;
    background-position: center;
}
.banner-inner{
    background: rgba(26,29,36, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner-inner h1{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.3rem;
}
.breadcrumb{
    background: transparent;
    padding: 0px;
    justify-content: center;
}
.breadcrumb-item{
    background: var(--client-secondary);
    font-size: .85rem;
    color: #fff;
    padding: .5rem 0px;
    color: #a8a8a8
}
.breadcrumb-item a{
    color: var(--client-primary)
}
.breadcrumb-item:first-child{
    padding-left: .8rem;
}
.breadcrumb-item:last-child{
    padding-right: .8rem;
}

ul.custom li{
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: .9rem;
}
ul.custom li:last-child{
    margin: 0px;
}
ul.custom li i{
    position: absolute;
    left: 0;
    top: .3rem;
    font-size: .9rem;
}

.projects h2.bold{
    font-size: 2.3rem;
    font-weight: 700;
}
.projects p{
    font-size: .8rem;
    color: #a8a8a8;
    white-space: nowrap ;
}

.progress-bar{
    background-color: var(--client-primary)
}

.counting-cards{
    padding: 1.3rem;
    padding-left: 3.5rem;
    position: relative;
}
.counting-cards .cardno{
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: 2.3rem;
    height: 2.3rem;
    background-color: var(--client-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Poppins','Quicksand', sans-serif;
    font-weight: 600;
}
.counting-cards h5{
    margin-top: .5rem;
    color: #fff;
    margin-bottom: 1.3rem;
}


.timeline-wrapper{
    position: relative;
}

.timeline-wrapper:before{
    content:'';
    position: absolute;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    height: 100%;
    background: var(--client-primary)
}
.timeline{
    margin-bottom: 30px;
    position: relative;
}
.timeline:last-child{
    margin-bottom: 0px;
}

.timeline-badge{
    position: absolute;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--client-primary);
    margin-left: -.6rem;
    top: 20px;
    border-radius: 50%;
    background: #fff
}
.timeline-badge:after{
    content:'';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    top: 50%;
    background: var(--client-primary);
    transform: translateY(-50%);
}

.timeline:nth-child(odd) .timeline-badge:after{
    left: 100%
}
.timeline:nth-child(even) .timeline-badge:after{
    right: 100%
}

.timeline .timeline-date{
    max-width: 360px;
    margin-top: 15px;
    text-align: left;
    margin-bottom: 15px;
}
.timeline .timeline-date p{
    font-weight: 600;
    font-size: 1rem;
}
.timeline .timeline-panel{
    max-width: 360px;
    padding: 1.3rem 2rem;
    border-radius: 10px;
    background: rgba(240,240,240,1);
    position: relative;
}
.timeline:nth-child(odd) .timeline-date{
    margin-left: 30px
}

.timeline:nth-child(even) .timeline-date{
    margin-right: 30px;
    margin-left: auto;
    text-align: right;
}
.timeline:nth-child(odd) .timeline-panel{
    margin-left: auto;
    margin-right: 20px;
}
.timeline:nth-child(even) .timeline-panel{
    margin-left: 20px
}

.timeline:nth-child(odd) .timeline-panel:after, .timeline:nth-child(odd) .timeline-panel:before{
    left:100%;
    border-left: 12px solid rgba(240,240,240,1);
}
.timeline:nth-child(odd) .timeline-panel:before{
    border-left: 13px solid rgba(180,180,180,1);
}
.timeline:nth-child(even) .timeline-panel:after, .timeline:nth-child(even) .timeline-panel:before{
    right:100%;
    border-right: 12px solid rgba(240,240,240,1);
}
.timeline:nth-child(even) .timeline-panel:before{
    border-right: 13px solid rgba(180,180,180,1);
}
.timeline-panel:after, .timeline-panel:before{
    content:'';
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 1.3rem;
}



.service-thumb{
    margin: 25px 0px;
}

.service-name{
    margin-top: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.service-text{
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.6;
    color: #565656
}

.text-link{
    font-size: .95rem;
    font-weight: 600;
}
.text-link.text-client-primary:hover{
    color: var(--client-primary)
}

.page-sidebar{
    max-width: 330px;
}
.page-sidebar ul li {
    border-bottom: 2px solid var(--client-secondary-dark)
}
.page-sidebar ul li a{
    font-family: 'Poppins', sans-serif;
    display: block;
    padding: .9rem 1.2rem;
    padding-right: 2rem;
    color: #fff;
    font-size: .9rem;
    position: relative;
}
.page-sidebar ul li a i{
    position: absolute;
    right: .6rem;
    font-size: .8rem;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}
.page-sidebar ul li a.active, .page-sidebar ul li a:hover{
    background: var(--client-primary)
}
.service-header{
    border: 1px solid #e0e0e0
}
.service-header img{
    width: 100%;
    height: auto;
}

.service-image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid #e0e0e0
}

.service-content p, .service-content h5, .service-content li{
    line-height: 1.6
}
.service-content li{
    margin-bottom: 10px;
    font-size: .9rem;
}
.service-content p, .service-content li{
    color: #565656
}
.service-content .card{
    border: none
}

.contact-details p{
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}
.contact-details p.reg{
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}
.contact-details p strong{
    color: var(--client-primary)
}
.contact-details p a{
    color: #232323;
    font-weight: 500;
}
.social-icons.page a{
    color: var(--client-primary);
    margin-right: 10px;
    font-size: 1.2rem;
}
.map{
    border-top: 4px solid var(--client-primary);
    margin-bottom: -12px
}

.team{
    max-width: 300px;
    padding: 0px 20px;
    margin: 20px auto;
}
.member-pic{
    border-radius: 50%;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.member-pic img{
    border-radius: 50%;
    filter: brightness(1.03);
}
.member-pic .overlay{
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: rgba(26,29,36, .6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s;
}
.member-pic .overlay a{
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--client-primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
}
.member-pic .overlay a:hover{
    background: var(--client-secondary-dark)
}
.member-name{
    margin-top: 15px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
}
.member-designation{
    font-size: .8rem;
    color: var(--client-primary);
    text-align: center;
}
.team p{
    font-size: .8rem;
    font-weight: 500;
    color: #464750;
    text-align: center;
}
.team:hover .member-pic .overlay{
    opacity: 1;
}

.form-control, .form-control:focus{
    border-radius: 0px;
    background: rgba(200,200,200,.1);
    border-color: #e0e0e0;
    outline: none;
    box-shadow: none;
}
.form-control.light{
    background: rgba(255,255,255,.1);
    border-color: transparent;
    color: #fff
}
label{
    font-size: .85rem;
    margin-bottom: .2rem;
}
.thank-you .content{
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
}
.thank-you img{
    max-width: 70%;
    min-width: 320px;
    opacity: .2;
    margin-bottom: 5rem;
}
.thank-you h1{
    font-size: 7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: absolute;
    top: 15%;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px black;
    color: transparent;
    text-shadow: -3px 2px rgb(224,1,26);
}
.thank-you h1 span{
    display: block;
}

footer .footer-content .logo{
    max-width: 150px;
    margin-bottom: 1rem;
}
footer .footer-content p{
    color: #a8a8a8;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.7;
}
.custom.dot li{
    padding-left: 1.4rem;
    font-size: .85rem;
    margin-bottom: 1rem;
}
.custom.dot li i{
    font-size: .5rem;
}
.custom.dot li a{
    color: #a8a8a8
}
footer .footer-content .custom.dot li{
    margin-bottom: .7rem;
}

footer .footer-content .custom.dot li i{
    color: #aaa
}
footer .footer-content.company-col li{
    line-height: 1.6;
    font-size: .85rem;
    margin-bottom: .8rem;
}
footer .footer-content.company-col li a{
    color: #fff
}
footer .footer-content.company-col li i{
    color: var(--client-primary)
}
footer .footer-content a:hover{
    color: var(--client-primary)
}

footer .footer-content h4{
    margin-bottom: 1.7rem;
    color: #fff
}

footer .form-group{
    margin-bottom: .4rem;
}
footer .form-control{
    font-size: .85rem;
    font-weight: 400;
    color: rgba(255,255,255,.7)
}
footer .form-control::placeholder{
    color: #a8a8a8
}

.footer-bottom{
    border-top: 2px solid var(--client-secondary-dark);
}
.footer-bottom p{
    font-weight: 500;
    color: #a8a8a8
}
button.scrolltop{
    position: fixed;
    bottom: 100px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    background: var(--client-secondary);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    transition: .4s all;
}
.scrolltop:hover{
    background: var(--client-primary)
}
.scrolltop.show{
    transform: scale(1);
}