﻿@charset "utf-8";
/* CSS Document */


/**/
.homeslider .owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: 0;
    position: absolute;
    width: 100%;
    bottom: 150px;
}

    .homeslider .owl-carousel .owl-dots .owl-dot span {
        width: 35px;
        height: 5px;
        margin: 0 7px;
    }

    .homeslider .owl-carousel .owl-dots .owl-dot.active span, .homeslider .owl-carousel .owl-dots .owl-dot:hover span {
        background: #FF385C;
    }

.carouselwrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 115px
}

.carouselcotnt {
    color: var(--white);
    letter-spacing: .5px;
}

    .carouselcotnt .tagline {
        line-height: 22px;
        font-size: 18px;
    }

    .carouselcotnt .title {
        font-size: 30px;
        font-weight: 600;
        padding: 15px 0
    }

        .carouselcotnt .title span {
            display: block;
            padding: 10px 0 0
        }

    .carouselcotnt .carouselbtn {
        margin: 15px 0;
        display: flex;
        gap: 10px;
    }

        .carouselcotnt .carouselbtn a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

            .carouselcotnt .carouselbtn a i {
                width: 30px;
                height: 30px;
                background: var(--white);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%
            }

            .carouselcotnt .carouselbtn a.btun-red i {
                fill: var(--red);
            }

            .carouselcotnt .carouselbtn a.btun-yellow i {
                fill: #686806
            }


    .carouselcotnt .onlinewrp {
        display: flex;
        gap: 15px;
        margin: 20px 0;
        border-radius: 25px;
        align-items: center;
        position: relative;
    }

        .carouselcotnt .onlinewrp .onlinelist {
            display: flex
        }

            .carouselcotnt .onlinewrp .onlinelist span:first-child {
                margin-left: 0
            }

            .carouselcotnt .onlinewrp .onlinelist span {
                border-radius: 50%;
                width: 30px;
                height: 30px;
                box-shadow: 0 0 10px rgb(0 0 0 / 95%);
                border: solid 2px #fff;
                overflow: hidden;
                margin-left: -5px;
                background: #40a8ca
            }

                .carouselcotnt .onlinewrp .onlinelist span img {
                    height: 100%
                }

        .carouselcotnt .onlinewrp .onlitext {
            font-family: var(--roboto)
        }

        .carouselcotnt .onlinewrp .pulse {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 3px;
            border-radius: 50%;
            position: relative;
            padding: 0;
            border: 0;
            z-index: 1;
            background-color: #00ff83;
        }

            .carouselcotnt .onlinewrp .pulse:before {
                content: "";
                position: absolute;
                width: 10px;
                height: 10px;
                background-color: inherit;
                border-radius: 50%;
                z-index: -1;
                animation: ripples 1.5s ease-out infinite;
            }

@keyframes ripples {
    from {
        opacity: 1;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(3);
    }
}
/**/
.carouselimg {
    position: relative;
    display: flex;
    align-items: center
}

    .carouselimg figure {
        background: var(--white);
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 0 10px rgb(137 173 255 / 35%);
        width: 400px;
        height: 400px;
    }

        .carouselimg figure img {
            border-radius: 50%;
            height: 100%;
        }

    .carouselimg figcaption {
        position: absolute;
        left: -150px;
        font-family: var(--roboto)
    }

        .carouselimg figcaption .imgdesc {
            background: var(--white);
            border-radius: 4px;
            padding: 10px;
            display: flex;
            margin-bottom: 15px;
            width: 250px;
            align-items: center;
            box-shadow: 0 0 10px rgb(137 173 255 / 35%);
            gap: 15px;
            border: solid 1px var(--white)
        }

            .carouselimg figcaption .imgdesc b {
                width: 60px;
                height: 60px;
                background: #239FDB;
                display: flex;
                align-items: center;
                border-radius: 6px;
                -webkit-transition: all 500ms ease;
                transition: all 500ms ease;
                justify-content: center;
                border-radius: 4px;
            }

            .carouselimg figcaption .imgdesc.first b {
                background: #eff5fd
            }

                .carouselimg figcaption .imgdesc.first b svg {
                    fill: #579eee;
                }

            .carouselimg figcaption .imgdesc.second b {
                background: #fff5f0
            }

                .carouselimg figcaption .imgdesc.second b svg {
                    fill: #ff9a61;
                }

            .carouselimg figcaption .imgdesc.third b {
                background: #feeff4
            }

                .carouselimg figcaption .imgdesc.third b svg {
                    fill: #f15d8a;
                }

            .carouselimg figcaption .imgdesc span {
                display: flex;
                flex-direction: column;
                color: var(--gray888);
                flex: 1;
                font-size: 13px;
            }

                .carouselimg figcaption .imgdesc span strong {
                    color: var(--drakblue);
                    padding-bottom: 5px;
                    font-weight: 500
                }
/**/
.topcatblock {
    border-bottom: solid 1px var(--grayddd);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .topcatblock .row {
        align-items: center
    }

.cardwrp {
    font-family: var(--poppins);
}

.carddesc {
    font-size: 16px;
    line-height: 23px;
}

    .carddesc .btun {
        padding: 15px 55px;
        font-size: 16px;
        margin-top: 15px;
    }

.cardbtn {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

    .cardbtn a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
    }

        .cardbtn a i {
            width: 30px;
            height: 30px;
            background: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%
        }

        .cardbtn a.btun-red i {
            fill: var(--red);
        }

        .cardbtn a.btun-yellow i {
            fill: #686806
        }

.cartcarouselwrp {
    display: flex;
    gap: 15px;
}

    .cartcarouselwrp .cartcarousellist {
        margin-right: 15px;
        width: 370px;
    }

        .cartcarouselwrp .cartcarousellist .iconbox {
            background: var(--white);
            border-radius: 4px;
            padding: 15px;
            text-align: center;
            margin-bottom: 25px;
            -webkit-transition: all .2s cubic-bezier(.02,.54,.58,1);
            -o-transition: all .2s cubic-bezier(.02,.54,.58,1);
            transition: all .2s cubic-bezier(.02,.54,.58,1);
        }

            .cartcarouselwrp .cartcarousellist .iconbox:hover {
                box-shadow: 0 0 30px 0px rgb(44 130 237 / 40%);
            }

            .cartcarouselwrp .cartcarousellist .iconbox:hover {
            }

            .cartcarouselwrp .cartcarousellist .iconbox figure {
                width: 75px;
                height: 75px;
                margin: 0 auto;
                background: #fff;
                border-radius: 50%;
                overflow: hidden;
                margin-bottom: 25px;
                display: inline-flex;
                align-items: center;
                justify-content: center
            }

            .cartcarouselwrp .cartcarousellist .iconbox.iconboxa {
                background: #e6f9ff;
            }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxa figure {
                    box-shadow: 10px 10px 30px 0px rgb(2 156 236 / 27%);
                }

                    .cartcarouselwrp .cartcarousellist .iconbox.iconboxa figure svg {
                        fill: #5a94a7;
                    }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxa:hover figure {
                    background: #e6f9ff;
                }

            .cartcarouselwrp .cartcarousellist .iconbox.iconboxb {
                background: #ffebe6;
            }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxb:hover figure {
                    background: #ffebe6;
                }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxb figure {
                    box-shadow: 10px 10px 30px 0px rgb(254 76 28 / 31%);
                }

                    .cartcarouselwrp .cartcarousellist .iconbox.iconboxb figure svg {
                        fill: #a9796d
                    }

            .cartcarouselwrp .cartcarousellist .iconbox.iconboxc {
                background: #fef2e9;
            }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxc figure {
                    box-shadow: 10px 10px 30px 0px rgb(255 156 39 / 29%);
                }

                    .cartcarouselwrp .cartcarousellist .iconbox.iconboxc figure svg {
                        fill: #a9796d
                    }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxc:hover figure {
                    background: #fef2e9;
                }

            .cartcarouselwrp .cartcarousellist .iconbox.iconboxd {
                background: #eaf3fe;
            }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxd figure {
                    box-shadow: 10px 10px 30px 0px rgb(1 96 231 / 26%);
                }

                    .cartcarouselwrp .cartcarousellist .iconbox.iconboxd figure svg {
                        fill: #6D97CA
                    }

                .cartcarouselwrp .cartcarousellist .iconbox.iconboxd:hover figure {
                    background: #eaf3fe;
                }

            .cartcarouselwrp .cartcarousellist .iconbox:hover {
                background: #fff;
            }

                .cartcarouselwrp .cartcarousellist .iconbox:hover figure {
                    box-shadow: none;
                }

            .cartcarouselwrp .cartcarousellist .iconbox .carttitle {
                font-size: 16px;
                font-weight: 600;
                letter-spacing: .5px;
                display: block;
                padding: 0 0 10px;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                color: var(--drakblue);
            }

                .cartcarouselwrp .cartcarousellist .iconbox .carttitle a {
                    color: var(--drakblue);
                }

            .cartcarouselwrp .cartcarousellist .iconbox .listcatelist {
                font-size: 14px;
                display: block;
                line-height: 22px;
                color: var(--gray888);
                text-align: left
            }

        .cartcarouselwrp .cartcarousellist.secondcard {
            margin-top: -80px;
            margin-right: 0
        }
/**/
.flowblock {
    padding: 85px 15px;
    border-bottom: solid 1px var(--grayddd);
}

    .flowblock .flowwrp {
        display: flex;
    }

        .flowblock .flowwrp .flowmain {
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 0 10px rgb(137 173 255 / 35%);
            flex-shrink: 0;
            width: 400px;
            height: 300px;
        }

            .flowblock .flowwrp .flowmain ul {
                padding: 15px 15px 55px;
            }

                .flowblock .flowwrp .flowmain ul li {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 15px;
                    padding: 5px 0
                }

                    .flowblock .flowwrp .flowmain ul li i {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        background: #feeff4;
                        justify-content: center
                    }

                    .flowblock .flowwrp .flowmain ul li.one i {
                        background: #C8C4E9
                    }

                        .flowblock .flowwrp .flowmain ul li.one i svg {
                            fill: #6B5AD0
                        }

                    .flowblock .flowwrp .flowmain ul li.two i {
                        background: #FEE3C1
                    }

                        .flowblock .flowwrp .flowmain ul li.two i svg {
                            fill: #9B6623
                        }

                    .flowblock .flowwrp .flowmain ul li.three i {
                        background: #B4F3F6
                    }

                        .flowblock .flowwrp .flowmain ul li.three i svg {
                            fill: #1AA260
                        }

                    .flowblock .flowwrp .flowmain ul li.four i {
                        background: #E0C1F4
                    }

                        .flowblock .flowwrp .flowmain ul li.four i svg {
                            fill: #4B1A6B
                        }
        /**/
        .flowblock .flowwrp .flowsub {
            background: url("../images/flow.svg") 0 0 no-repeat;
            width: 100%;
            position: relative;
            margin-left: -220px;
            height: 400px;
        }

            .flowblock .flowwrp .flowsub article {
                background: var(--white);
                border-radius: 5px;
                padding: 10px 20px 10px 10px;
                position: absolute;
                display: flex;
                align-items: center;
                gap: 10px;
                min-width: 170px;
                box-shadow: 0 0 10px rgb(137 173 255 / 35%);
                font-size: 16px;
            }

                .flowblock .flowwrp .flowsub article i {
                    width: 44px;
                    height: 44px;
                    border-radius: 4px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center
                }

                    .flowblock .flowwrp .flowsub article i svg {
                        fill: var(--white)
                    }

            .flowblock .flowwrp .flowsub .callflow {
                left: 230px;
                top: -70px;
            }

                .flowblock .flowwrp .flowsub .callflow i {
                    background: #FF9A61;
                }

            .flowblock .flowwrp .flowsub .docflow {
                left: 340px;
                top: 200px;
            }

                .flowblock .flowwrp .flowsub .docflow i {
                    background: #FF385C;
                }

            .flowblock .flowwrp .flowsub .videoflow {
                top: 360px;
                left: -80px;
            }

                .flowblock .flowwrp .flowsub .videoflow i {
                    background: #1AA260;
                }

            .flowblock .flowwrp .flowsub .miduser {
                top: 178px;
                left: 118px;
                box-shadow: none;
                min-width: 120px;
                width: 120px;
                height: 120px;
                box-shadow: 0 0 10px rgb(137 173 255 / 35%);
                padding: 0;
                justify-content: center;
                align-items: center;
            }

                .flowblock .flowwrp .flowsub .miduser i {
                    width: 80px;
                    height: 80px;
                    border-radius: 50%;
                    border: 5px solid var(--white);
                    box-shadow: 0 1px 4px rgb(32 33 36 / 28%);
                    -moz-box-shadow: 0 1px 4px rgba(32, 33, 36, .28);
                    -webkit-box-shadow: 0 1px 4px rgb(32 33 36 / 28%);
                    background-color: #40a8ca;
                    overflow: hidden
                }
/**/
.experwrp {
    border-bottom: solid 1px var(--grayddd);
    padding: 35px 0;
    margin-bottom: 15px;
}

    .experwrp .herotitle span {
        display: block
    }

    .experwrp .expermain {
        margin: 25px 0
    }

        .experwrp .expermain .expergrid {
            padding: 15px;
        }

            .experwrp .expermain .expergrid i {
                width: 50px;
                height: 50px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 4px;
                background: #FFF4E2;
                margin-bottom: 10px;
            }

            .experwrp .expermain .expergrid .title {
                font-size: 16px;
                font-weight: 600;
                letter-spacing: .5px;
                display: block;
                padding: 0 0 5px;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                color: var(--drakblue);
            }

                .experwrp .expermain .expergrid .title a {
                    color: var(--drakblue);
                }

            .experwrp .expermain .expergrid p {
                font-size: 14px;
                display: block;
                line-height: 20px;
                color: var(--gray888);
                text-align: left;
            }
            /*.experwrp .expermain .expergrid.one{ border-bottom: solid 1px var(--grayddd);border-right: solid 1px var(--grayddd);}
.experwrp .expermain .expergrid.two { border-bottom: solid 1px var(--grayddd);border-right: solid 1px var(--grayddd);}
.experwrp .expermain .expergrid.three { border-bottom: solid 1px var(--grayddd);}
.experwrp .expermain .expergrid.four { border-right: solid 1px var(--grayddd);}
.experwrp .expermain .expergrid.five {border-right: solid 1px var(--grayddd);}*/

            .experwrp .expermain .expergrid.one i {
                background: #FFF4E2;
            }

            .experwrp .expermain .expergrid.two i {
                background: #E7FBF9;
            }

            .experwrp .expermain .expergrid.three i {
                background: #FDE0F6;
            }

            .experwrp .expermain .expergrid.four i {
                background: #C8C4E9;
            }

            .experwrp .expermain .expergrid.five i {
                background: #E0C1F4;
            }

            .experwrp .expermain .expergrid.six i {
                background: #C8C4E9;
            }

            .experwrp .expermain .expergrid i svg {
                width: 35px;
                height: 35px
            }

            .experwrp .expermain .expergrid.one i svg {
                fill: #AE8644;
            }

            .experwrp .expermain .expergrid.two i svg {
                fill: #58C5BA;
            }

            .experwrp .expermain .expergrid.three i svg {
                fill: #C682B5;
            }

            .experwrp .expermain .expergrid.four i svg {
                fill: #524A98;
            }

            .experwrp .expermain .expergrid.five i svg {
                fill: #A075BB;
            }

            .experwrp .expermain .expergrid.six i svg {
                fill: #827AC7;
            }
/**/
.service-section {
    padding: 50px 0;
}

.single-service-box {
    text-align: right;
    position: relative;
    margin-bottom: 30px;
    padding: 45px 0 46px;
    right: 44px;
}

    .single-service-box.two {
        right: 112px;
    }

    .single-service-box.three {
        right: 73px;
    }

.service-conmtent h3 {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
    color: var(--drakblue);
}

.service-conmtent p {
    text-align: right;
    color: var(--gray888);
}

.service-thumb {
    position: absolute;
    right: -86px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgb(33,165,230);
    background: linear-gradient(90deg, rgba(33,165,230,1) 0%, rgba(68,210,181,1) 100%);
    z-index: 1
}

    .service-thumb svg {
        fill: var(--white)
    }
/*right side*/
.single-service-box-two {
    text-align: left;
    position: relative;
    margin-bottom: 30px;
    padding: 45px 0 46px;
    left: 21px;
}

    .single-service-box-two.five {
        left: 95px;
    }

    .single-service-box-two.six {
        left: 54px;
    }

    .single-service-box-two .service-thumb {
        position: absolute;
        left: -86px;
        right: inherit;
    }

    .single-service-box-two .service-conmtent p {
        text-align: left;
        color: var(--gray888);
    }
/*shape*/
.shape15 {
    position: absolute;
    right: -55px;
    left: -70px;
    margin: auto;
    z-index: -1;
    border: dashed 2px #48DCA8;
    border-radius: 50%
}

    .shape15 img {
        opacity: 0
    }

.shape18 {
    position: absolute;
    left: -27px;
    top: 39px;
    z-index: -1;
}

.rotateme {
    animation-name: rotateme;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-section .herotitle {
    padding-bottom: 40px;
}
/**/

/*muru end*/
@media only screen and (max-width : 320px) {
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 568px) {
    #homeheader {
        background: url("../images/legalsubg.jpg") 0 0 no-repeat;
        background-size: cover;
    }

    header {
        padding-bottom: 5px
    }

    .carouselcotnt .tagline {
        font-size: 16px;
    }

    .carouselcotnt .title {
        font-size: 22px;
        padding: 15px 0;
        line-height: 26px;
    }

        .carouselcotnt .title span {
            padding: 0
        }

    .homeslider .owl-carousel .owl-dots {
        bottom: 20px
    }

    .flowblock {
        padding: 35px 15px;
    }

    .cardwrp {
        margin-bottom: 15px;
    }

    .carouselwrp {
        padding: 10px 0 35px;
        width: 100%;
        display: block;
    }

    .single-service-box, .single-service-box-two {
        flex: 0 0 auto;
        width: 100%;
        display: inline-flex;
        gap: 15px;
    }
}
/*----iphone---*/
@media only screen and (min-width : 569px) and (max-width : 640px) {
}
/*----high end windows phone---*/
@media only screen and (min-width : 641px) and (max-width : 768px) {
}
/**/
@media only screen and (max-width : 768px) {
    .cartcarouselwrp {
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

        .cartcarouselwrp .cartcarousellist.secondcard {
            margin-top: 0
        }

        .cartcarouselwrp .cartcarousellist .iconbox .listcatelist {
            width: 220px;
            word-break: break-all;
            white-space: normal;
        }

    .topcatblock {
        margin: 15px 0;
        padding: 0
    }

    .flowblock .flowwrp .flowmain {
        width: 100%;
        box-shadow: none;
        display: flex;
        height: 50px;
        overflow: hidden
    }

        .flowblock .flowwrp .flowmain ul {
            display: flex;
            white-space: nowrap;
            gap: 20px;
            padding: 0;
            height: 70px;
            overflow-x: scroll;
            overflow-y: hidden;
        }

            .flowblock .flowwrp .flowmain ul li {
                margin-bottom: 0;
                padding: 0;
            }
}
/**/
@media only screen and (max-width : 1024px) {
    .rotateme {
        animation: none;
    }

    .animatedblck {
        display: none
    }

    .service-section .col-lg-4 {
        width: 100%
    }

    .single-service-box, .single-service-box-two {
        flex: 0 0 auto;
        width: 32.333333%;
        display: inline-flex;
        gap: 15px;
    }

        .single-service-box, .service-thumb, .single-service-box-two, .single-service-box-two .service-thumb {
            position: static;
            text-align: left;
            padding: 0;
            margin-bottom: 15px
        }

    .service-conmtent p {
        text-align: left
    }

    .service-conmtent h3 {
        margin: 0 0 10px;
    }
}
/**/
@media (min-width: 300px) and (max-width: 991px) {
}
/*----ipad---*/
@media only screen and (min-width : 769px) and (max-width : 1024px) {
}
/*----netbook---*/
@media only screen and (min-width : 1025px) and (max-width : 1280px) {
}
/*----ultrabook---*/
@media only screen and (min-width : 1281px) and (max-width : 1366px) {
}
/**/
@media only screen and (min-width : 1367px) and (max-width : 1600px) {
}
/*----large desktop---*/
@media only screen and (min-width : 1367px) and (max-width : 1680px) {
}
