<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: Rubik Light;
    src: url(../fonts/Rubik-Light.ttf);
}

@font-face {
    font-family: Rubik Regular;
    src: url(../fonts/Rubik-Regular.ttf);
}

@font-face {
    font-family: Rubik Medium;
    src: url(../fonts/Rubik-Medium.ttf);
}

@font-face {
    font-family: Rubik Bold;
    src: url(../fonts/Rubik-Bold.ttf);
}

* {
    margin: 0px;
    /* padding: 0px; */
    border: none;
    outline: none;
}

.Learning-box {
    margin-top: 50px;
}

:root {
    --primary-color: #0176d3;
    --primary-dark-color: #186db1;
    --secondary-color: #d3f3f0;
    --secondary-dark-color: #023058;
    --alternative-bg: #e9f6fe;
    --theme-color-dark: #100c0b;
    --theme-color-light: #ffffff;
}

.text-dark {
    color: var(--theme-color-dark);
}

.text-light {
    color: var(--theme-color-light);
}

/* Border */
.br-right {
    border-right: 1px solid #e3e3e3;
}

.br-left {
    border-left: 1px solid #e3e3e3;
}

.br-top {
    border-right: 1px solid #e3e3e3;
}

.br-bottom {
    border-bottom: 1px solid #e3e3e3;
}
/* Border Gradiant */
.br-gradiant {
    position: relative;
    z-index: 1;
}

    .br-gradiant:before {
        content: '';
        position: absolute;
    }

.br-gradiant-right:before {
    background: linear-gradient(to bottom, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
}

.br-gradiant-left:before {
    background: linear-gradient(to bottom, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
}

.br-gradiant-top:before {
    background: linear-gradient(to left, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
}

.br-gradiant-bottom:before {
    background: linear-gradient(to left, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
}
/*border Gradiant with span*/
.br-gr-left {
    position: absolute;
    left: -5px;
    top: 0;
    background: linear-gradient(to bottom, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    width: 1px;
    height: 100%;
}

.br-gr-right {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    width: 1px;
    height: 100%;
}

.br-gr-top {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to left, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    width: 100%;
    height: 1px;
}

.br-gr-bottom {
    position: absolute;
    right: 0;
    bottom: 1px;
    background: linear-gradient(to left, transparent 0%, #e3e3e3 50%, #e3e3e3 50%, transparent 100%);
    width: 100%;
    height: 1px;
}

/*Hamberger*/
.layout-bg {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    background: #000;
    opacity: .5;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
}

    .layout-bg.active {
        transform: translateX(0px);
    }


section {
    position: relative;
    z-index: 0;
}

.main-color {
    color: var(--primary-color);
}

.alternative-bg {
    background-color: var(--alternative-bg);
}

.common-banner-img {
    width: 320px;
    margin: auto;
    display: inline-block;
}

body {
    font-size: 16px;
    color: #181818;
    font-family: 'Rubik Regular';
    line-height: 1.5;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: 500;
    margin: 0px;
    background: none;
    line-height: 1.4em;
    font-family: 'Rubik Medium';
    color: var(--theme-color-dark);
}

.txt-acher {
    color: var(--primary-color);
    display: block;
}

.form-control {
    position: relative;
    display: block;
    height: 60px;
    line-height: normal;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid transparent;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0;
    color: #000000;
    padding: 0 16px 0 16px;
    border-bottom: 1px solid #d9d9d9;
    resize: none;
}


    .form-control:focus {
        color: #000;
        background-color: transparent;
        border-color: transparent;
        border-bottom-color: #d9d9d9;
        outline: 0;
        box-shadow: none;
    }

    .form-control::placeholder {
        color: #000;
    }

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.input-icon-img {
    min-width: 50px;
    height: 60px;
    /* border: 1px solid red; */
    display: grid;
    place-content: center;
    border-radius: 1px;
    border-bottom: 1px solid #d9d9d9;
}

.input-icon img {
    width: 30px;
}

img.country-flag {
    position: absolute;
    right: 0;
    top: 15px;
    width: 27px;
}

figure {
    margin: 0;
}

.common_pd {
    padding: 100px 0;
}

.common_pd_t {
    padding-top: 100px;
}

.common_pd_b {
    padding-bottom: 100px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-color);
}

    a:hover, a:focus, a:visited {
        text-decoration: none;
        outline: none;
    }



input, button, select, textarea {
    font-family: 'Rubik', sans-serif;
}

textarea {
    overflow: hidden;
}

.theme_color {
    color: var(--primary-color);
}

p, .text {
    position: relative;
    line-height: 1.8em;
    /* font-family: 'Rubik', sans-serif; */
}

.page-wrapper section {
    position: relative;
    z-index: 5;
}

.strike-through {
    text-decoration: line-through;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}

.grey-bg {
    background-color: #f8f8f8;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
/*
.section-shape {
    position: relative;
    z-index: 1;
    background: #F0F5F9;
}

    .section-shape:before, .section-shape:after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/background/section-top.svg);
        background-position: right top;
        background-repeat: no-repeat;
    }

    .section-shape:after {
        background: url(../images/background/section-bottom.svg);
        background-position: left bottom;
        background-repeat: no-repeat;
    }*/
/**/
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: 0;
    cursor: pointer;
    background: var(--primary-color);
    padding: 10px 15px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    /* text-shadow: 0 1px 0 rgb(0 0 0 / 40%); */
    border: 1px solid #0078d3;
    font-weight: 600;
}

.custom-btn-1 {
    border: 1px solid #0078d3
}

.custom-btn:hover {
    /* box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px var(--primary-dark-color); */
    /* transform: translateY(-2px); */
    background: var(--primary-dark-color);
}

.custom-btn:active {
    /* box-shadow: inset 0px 3px 7px var(--primary-dark-color); */
    /* transform: translateY(2px); */
}

.custom-btn.light-btn {
    background: #fff;
    color: var(--primary-color);
}

    .custom-btn.light-btn:hover {
        box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #0078d3;
        transform: translateY(-2px);
    }

    .custom-btn.light-btn:active {
        box-shadow: inset 0px 3px 7px #0078d3;
        transform: translateY(2px);
    }
/**/

.centered {
    text-align: center;
}

/*List Style One*/

.list-style-one {
    position: relative;
}

    .list-style-one li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        color: #808080;
        font-size: 16px;
        font-weight: 400;
    }

/* .list-style-one li:before {
            position: absolute;
            content: '\f00c';
            left: 0px;
            top: 2px;
            color: var(--primary-color);
            font-size: 18px;
            font-family: 'FontAwesome';
        } */

/*Btn Style One*/

.btn-style-one {
    position: relative;
    line-height: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: var(--primary-color);
    display: inline-block;
    padding: 9px 26px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

    .btn-style-one .icon {
        position: relative;
        top: 2px;
        font-size: 18px;
        margin-right: 4px;
    }

    .btn-style-one:hover {
        color: var(--primary-color);
        border-color: var(--primary-color);
        background: none;
    }

/*Btn Style Two*/

.btn-style-two {
    position: relative;
    line-height: 24px;
    color: #0f1341;
    font-size: 14px;
    font-weight: 700;
    background: #f2f2f2;
    display: inline-block;
    padding: 9px 42px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 2px solid #f2f2f2;
}

    .btn-style-two:hover {
        color: #ffffff;
        border-color: var(--primary-color);
        background: var(--primary-color);
    }

/*Btn Style Three*/

.btn-style-three {
    position: relative;
    line-height: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: #0f1341;
    display: inline-block;
    padding: 9px 42px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 2px solid #0f1341;
    font-family: 'Poppins', sans-serif;
}

    .btn-style-three:hover {
        color: #0f1341;
        background: none;
    }


img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.page-content {
    /* margin-top:80px; */
}
/*** 

====================================================================
    Section Title
====================================================================

***/

.sec-title {
    position: relative;
    margin-bottom: 20px;
}

    .sec-title.centered .title {
        padding: 0px 60px 18px;
    }

    .sec-title .title {
        position: relative;
        font-size: 30px;
        /* font-weight: 700; */
        color: var(--theme-color-dark);
        line-height: 1.2em;
        padding: 0px 0px 0px;
        display: inline-block;
    }
/* 
        .sec-title .title:before {
            position: absolute;
            content: '';
            left: 50%;
            bottom: -24px;
            width: 29px;
            height: 30px;
            margin-left: -15px;
            background: url(../images/icons/separater.png) no-repeat;
        } */

.light-heading .sec-title .title {
    color: #fff;
}

.sec-title.grey .title:before {
    width: 34px;
    bottom: -26px;
    margin-left: -18px;
    background: url(../images/icons/separater-2.html) no-repeat;
}

/* .sec-title .title:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -9px;
    margin-left: -9px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
} */

.sec-title .text {
    position: relative;
    color: #464646;
    font-size: 18px;
    font-weight: 400;
}

.sec-title.centered .text {
    max-width: 750px;
    margin: 0 auto;
}

.sec-title.centered .separator {
    margin: 0 auto;
}

.sec-title.light .title {
    color: #ffffff;
    border-color: rgba(255,255,255,0.05);
}

    .sec-title.light .title:before {
        bottom: -26px;
        background: url(../images/icons/separater-1.png) no-repeat;
    }

/*** 

====================================================================
    Main Slider style
====================================================================

***/

.main-slider {
    position: relative;
    z-index: 10;
}

    .main-slider .tp-caption {
        z-index: 5 !important;
    }

    .main-slider .tp-dottedoverlay {
        background: none !important;
    }

    .main-slider .btns-box .theme-btn {
        margin-right: 28px;
        margin-bottom: 10px;
    }

    .main-slider h2 {
        position: relative;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.5em;
        display: inline-block;
        text-transform: uppercase;
        font-family: 'Poppins', sans-serif;
    }

        .main-slider h2 span {
            position: relative;
            top: -19px;
            color: #fff;
            font-size: 80px;
            font-weight: 700;
            float: left;
            line-height: 1.2em;
            margin-right: 20px;
            text-transform: uppercase;
        }

    .main-slider .text {
        position: relative;
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        line-height: 1.6em;
        font-family: 'Rubik', sans-serif;
    }

        .main-slider h2.light,
        .main-slider h2.light span,
        .main-slider .text.light {
            color: #ffffff;
        }

    .main-slider .tp-bannertimer,
    .main-slider .tp-bullets {
        display: none !important;
    }

/*** 
    Main Banner
***/
.main-banner {
    background-image: url(../images/background/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /*background-color: var(--secondary-color);*/
    background-size: cover;
    place-content: center;
    position: relative;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.main-banner-background {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    text-align: right;
}

.banner-style-five-thumb {
    position: relative;
    z-index: 1;
}

    .banner-style-five-thumb img {
        max-width: 45%;
        border-radius: 10px;
    }

        .banner-style-five-thumb img:first-child {
            z-index: -1;
            position: relative;
        }

        .banner-style-five-thumb img:nth-child(2) {
            float: right;
            margin-top: 80px;
        }

        .banner-style-five-thumb img:nth-child(3) {
            margin-top: 50px;
        }

    .banner-style-five-thumb .shape {
        position: absolute;
        right: 35%;
        top: -25px;
        z-index: -1;
        text-align: right;
        height: 120%;
    }

        .banner-style-five-thumb .shape img {
            border-radius: inherit;
            max-width: inherit;
            height: 100%;
        }

.shape-bottom-center {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(../images/background/5.png);
}

.main-banner-background:before {
    content: '';
}

.taksh-t {
    width: 20px;
    position: relative;
    top: -2px;
}

.main-banner-background img {
    object-fit: cover;
    height: 100%;
}

.banner-img {
    /* width: 70%; */
    margin: auto;
}

.banner-content {
    /* padding-left: 80px; */
    padding-top: 70px;
}

#typed, .typed-cursor {
    /*color: var(--primary-color);*/
}

.banner-para {
    font-size: 18px;
    /*text-transform: uppercase;*/
    letter-spacing: 0px;
    margin: 30px 0;
    /* color: #fff; */
}

.main-banner h1 {
    font-size: 40px;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: bold;
}

/*** 
    About Section
***/
/*{
    position: relative;
    z-index: 1;
}*/
.popular-solution-section {
    padding-top: 70px;
}

.about-style-four .thumb {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

    .about-style-four .thumb img:first-child {
        max-width: 320px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.88);
        background: var(--theme-color-light);
        padding: 30px;
        border-radius: 4px;
    }

    .about-style-four .thumb img:nth-child(2) {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 10px;
        border: 1px solid #e1dfe8;
        position: absolute;
        right: 0;
        top: 95px;
        max-width: 60%;
        z-index: -1;
    }

    .about-style-four .thumb img:nth-child(3) {
        background: var(--theme-color-light);
        padding: 20px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        position: absolute;
        left: 40px;
        top: 15%;
        height: 100px;
        border-radius: 4px;
    }

    .about-style-four .thumb img:nth-child(4) {
        background: var(--theme-color-light);
        padding: 30px;
        height: 120px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        border-radius: 4px;
        position: absolute;
        bottom: 0;
        right: 50px;
    }

    .about-style-four .thumb .icon {
        display: inline-block;
        height: 120px;
        width: 120px;
        background: var(--theme-color-light);
        text-align: center;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        position: absolute;
        margin-left: -50px;
        z-index: -1;
        top: -57px;
        border-radius: 4px;
    }

    .about-style-four .thumb i {
        display: inline-block;
        background: var(--secondary-color);
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        color: var(--primary-color);
        border-radius: 15px;
        border: 2px solid var(--primary-color);
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

.circle-right-center {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 700px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: -1;
    opacity: 0.5;
    background-image: url(../images/background/circle.png);
}
/*** 
    Common Bg
***/
.common-bg-parent {
    padding-top: 100px;
    padding-bottom: 230px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.common-bg-img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 550px;
    user-select: none;
    /* background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%); */
}

    .common-bg-img img {
        width: 100%;
        /* height: 100%; */
        position: absolute;
        bottom: 0;
        z-index: -2;
    }
/*** 
    Services Section
***/
.services-section {
    position: relative;
    /*background-image: url(../images/background/common-bg.png);*/
}

.process-style-one-box.style-two {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 100px 0;
}

    .process-style-one-box.style-two::after {
        position: absolute;
        left: 0;
        top: 25px;
        content: "";
        height: 100%;
        width: 100%;
        background: url(../images/background/process.html);
        background-repeat: no-repeat;
        z-index: -1;
        background-size: contain;
        transform: rotate(-5deg);
    }

.process-style-one .icon {
    display: inline-block;
    height: 150px;
    width: 150px;
    text-align: center;
    line-height: 150px;
    background: var(--theme-color-light);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 60px;
    margin-bottom: 30px;
}

.process-style-one .icon {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.process-style-one-box.style-two h4 {
    text-transform: uppercase;
    letter-spacing: 4px;
}

.process-style-one-box.style-two .icon {
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

.process-style-one .icon img {
    height: 60px;
}

.process-style-one .icon span {
    color: var(--theme-color-light);
}

.process-style-one .icon span {
    position: absolute;
    bottom: 15px;
    right: -5px;
    background: var(--primary-color);
    height: 45px;
    width: 45px;
    line-height: 43px;
    border-radius: 50%;
    border: 2px solid var(--theme-color-light);
    font-weight: 800;
    font-size: 16px;
}

.process-style-one.active .icon {
    height: 200px;
    width: 200px;
    line-height: 200px;
}

.process-style-one-box.style-two .icon {
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

.process-style-one:nth-child(2n) .icon span {
    bottom: auto;
    top: 15px;
    right: -15px;
}

.process-style-one.active:nth-child(2n) .icon span {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 20px;
    top: 20px;
    right: -10px;
}

.services-block {
    position: relative;
    margin-bottom: 30px;
}

    .services-block .inner-box {
        position: relative;
        padding: 45px 40px 45px;
        border: 1px solid #f2f2f2;
        background-size: cover;
        -webkit-box-shadow: 0px 4px 13px 0px rgba(247,247,247,1);
        -moz-box-shadow: 0px 4px 13px 0px rgba(247,247,247,1);
        box-shadow: 0px 4px 13px 0px rgba(247,247,247,1);
    }

        .services-block .inner-box:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            width: 170px;
            height: 100%;
            display: block;
            background-color: #ffffff;
            transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

        .services-block .inner-box:hover::before {
            width: 100%;
        }

        .services-block .inner-box .icon-box {
            position: relative;
            margin-bottom: 15px;
        }

            .services-block .inner-box .icon-box img {
                width: 75px;
            }

        .services-block .inner-box h3 {
            position: relative;
            color: var(--secondary-color);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

            .services-block .inner-box h3 a {
                position: relative;
                color: #0f1341;
                transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }

        .services-block .inner-box:hover .read-more {
            color: #0f1341;
        }

        .services-block .inner-box h3 a:hover,
        .services-block .inner-box .read-more:hover {
            color: var(--primary-color);
        }

        .services-block .inner-box .text {
            position: relative;
            color: #404040;
            font-size: 15px;
            line-height: 1.8em;
            margin-bottom: 15px;
        }

        .services-block .inner-box .read-more {
            position: relative;
            color: #d9d9d9;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

            .services-block .inner-box .read-more .icon {
                position: relative;
                margin-right: 10px;
            }
/*------*/

.service-block-two {
    padding: 15px 15px;
}

    .service-block-two .inner-box {
        position: relative;
        background: #fff;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        z-index: 1;
    }

    .service-block-two .inner-box {
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
    }



        .service-block-two .inner-box:hover .hover-content .read-more {
            right: 40px;
        }

        .service-block-two .inner-box:after {
            /* content: ""; */
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 26px;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            background: -webkit-gradient(linear, left top, right top, from(#f4f4f4), to(transparent));
            background: linear-gradient(to right, #f4f4f4, transparent);
            z-index: 0;
        }

        .service-block-two .inner-box:before {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            max-width: 0;
            content: "";
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .service-block-two .inner-box .image-box {
            position: relative;
            min-height: 204px;
        }

            .service-block-two .inner-box .image-box .image {
                position: relative;
                margin-bottom: 0;
                background-color: var(--secondary-color);
            }

                .service-block-two .inner-box .image-box .image img {
                    opacity: 0.25;
                }

        .service-block-two .inner-box .content-box {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            padding: 40px 40px 20px;
        }

            .service-block-two .inner-box .content-box .icon {
                position: relative;
                display: block;
                color: var(--primary-color);
                font-size: 64px;
                z-index: 2;
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
                margin-bottom: 20px;
            }

            .service-block-two .inner-box .content-box .title {
                margin-bottom: 0;
                color: #fff;
                letter-spacing: -0.01em;
                font-weight: 700;
            }

        .service-block-two .inner-box .hover-content {
            height: 100%;
            width: 100%;
            background-color: #fff;
            padding: 40px;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            position: relative;
        }

            .service-block-two .inner-box .hover-content::before {
                position: absolute;
                left: 10px;
                right: 10px;
                top: 10px;
                bottom: 10px;
                border: 2px solid;
                -o-border-image: linear-gradient(to right, var(--primary-color), transparent, transparent) 1;
                border-image: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), color-stop(transparent), to(transparent)) 1;
                border-image: linear-gradient(to right, var(--primary-color), transparent, transparent) 1;
                content: "";
                z-index: 0;
            }

            .service-block-two .inner-box .hover-content .icon {
                width: 70px;
                font-size: 64px;
                margin-bottom: 10px;
            }

            .service-block-two .inner-box .hover-content .title {
                margin-bottom: 10px;
            }

            .service-block-two .inner-box .hover-content .text {
                font-size: 14px;
                line-height: 24px;
                font-weight: 500;
            }

            .service-block-two .inner-box .hover-content .read-more {
                position: absolute;
                right: 70px;
                bottom: -14px;
                height: 52px;
                width: 52px;
                background-color: var(--primary-color);
                border-radius: 50%;
                color: #fff;
                z-index: 3;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .service-block-two .inner-box .hover-content .read-more:hover {
                    background-color: var(--secondary-color);
                }
/*New Block Services*/
.popular-block {
    position: relative;
    height: 100%;
    padding: 0;
    /* padding-bottom: 80px; */
    /* margin-top: 20px; */
    box-shadow: 0 2px 8px -2px hsla(0,0%,9%,.08), 0 8px 12px -2px hsla(0,0%,9%,.16);
}

.popular-block-inner {
    padding: 25px;
}

.popular-block :last-child {
    margin-bottom: 0;
}

.popular-block .link-btn {
    position: absolute;
    right: 10px;
    top: 0px;
    width: 50px;
    height: 74px;
    /* box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 4%); */
    border-radius: 0px 0px 30px 30px;
    /* border: 1px solid #0176d340; */
    border-left: 0;
}

    .popular-block .link-btn span {
        position: absolute;
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 41px;
        background: var(--secondary-color);
        text-align: center;
        border-radius: 50%;
        font-size: 19px;
        bottom: 5px;
        right: 5px;
        color: var(--primary-color);
        transition: all .3s ease-in-out;
    }

.popular-block:hover .link-btn span {
    transform: rotate(-90deg);
}

.popular-block .icon {
    display: inline-block;
    width: 70px;
    height: 100px;
    line-height: 110px;
    font-size: 36px;
    text-align: center;
    z-index: 1;
    color: var(--primary-color);
    position: relative;
    /* right: 20px; */
    /* top: 15px; */
}

    .popular-block .icon:before {
        position: absolute;
        content: '';
        background: var(--secondary-color);
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        border-radius: 7px;
        transform: skewX(-10deg);
        z-index: -1;
    }

    .popular-block .icon:after {
        position: absolute;
        content: '';
        border: 1px dashed #d8d2d0;
        width: 50px;
        height: 70px;
        right: -7px;
        bottom: -10px;
        border-radius: 5px;
        transform: skewX(-10deg);
        z-index: -2;
    }
/*** 
    Why Section
***/
.why-section {
    /*background-image: url(../images/background/pattern.jpg);*/
}

.why-box-parent {
    position: relative;
    margin-right: -60px;
}

    .why-box-parent .row {
        margin: 0 -5px;
    }

        .why-box-parent .row &gt; div {
            padding: 0 5px;
        }

.why-box {
    /* margin-bottom: 10px; */
}

    .why-box .inner-box {
        position: relative;
        z-index: 1;
        padding: 30px 30px 30px;
        padding-top: 40px;
        background: #fff;
        -webkit-box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 10%);
        box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 10%);
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
        overflow: hidden;
    }

        .why-box .inner-box:before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0px;
            width: 246px;
            height: 58px;
            transition: all 0.3s linear;
        }

        .why-box .inner-box:after {
            content: "";
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 45px;
            /* background: -webkit-gradient(linear, left top, right top, from(#f4f4f4), to(transparent)); */
            /* background: linear-gradient(to right, #f4f4f4, transparent); */
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            /* opacity: 0.2; */
        }

        .why-box .inner-box .count {
            position: absolute;
            top: 41px;
            right: 30px;
            color: #e6e6e6;
            font-size: 30px;
            font-weight: 200;
            /* opacity: 0.3; */
        }

        .why-box .inner-box .icon {
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 66px;
            height: 66px;
            color: #fff;
            /* background: #ffffff; */
            font-size: 32px;
            /* border-radius: 50%; */
            margin: auto;
            margin-bottom: 26px;
            z-index: 2;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .why-box .inner-box .title {
            margin-bottom: 0;
            font-weight: normal;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            /* color: #fff; */
            font-size: 24px;
        }

        .why-box .inner-box:hover .title {
            /* color: #fff; */
        }

.why-banner {
    position: relative;
    height: 100%;
    margin-left: 65px;
}

    .why-banner .bg-image {
        margin-bottom: 0;
        height: 100%;
    }

        .why-banner .bg-image::before {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: var(--theme-color2);
            opacity: 0.8;
            content: "";
        }

        .why-banner .bg-image img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
        }

    .why-banner .content {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        padding: 0 50px;
        padding-right: 40px;
    }

        .why-banner .content .sub-title {
            display: block;
            text-transform: uppercase;
            color: var(--primary-color);
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .why-banner .content .title {
            color: #ffffff;
            letter-spacing: -0.04em;
            line-height: 1.3em;
            margin-bottom: 20px;
        }
/*
    Call Senction
*/
.call-to-action .outer-box {
    position: relative;
    background-color: var(--primary-color);
    padding: 75px 60px;
    padding-left: 320px;
    margin-top: 0;
}

.call-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-image: url(../images/background/pattern-3.jpg); */
}

.call-to-action .outer-box .title-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.call-to-action .outer-box .image-box {
    position: absolute;
    left: 50px;
    bottom: 0;
}

    .call-to-action .outer-box .image-box img {
        width: 200px;
    }

.call-to-action .outer-box .title-box .title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    padding-right: 30px;
}

.btn-style-one {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 50px;
    letter-spacing: 0.1em;
    font-weight: 700;
    overflow: hidden;
    z-index: 0;
    text-transform: uppercase;
    color: #fff;
    background: var(--secondary-color);
}
/*
    Manage ERP
*/
.manage-erp-section .slick-slide .inner {
    margin: 0 15px;
}

.erp-category {
    border: 1px solid var(--secondary-color);
    padding: 7px;
    text-align: center;
    border-radius: 7px;
}

    .erp-category img {
        width: 84px;
    }

    .erp-category p {
        margin: 0;
        margin-top: 5px;
        color: var(--secondary-color);
        line-height: normal;
    }
/*Inner Banner*/
.inner-banner {
    background: #fff;
    background-size: cover;
}
/*Crm*/
.why-taksh-crm {
    position: relative;
    z-index: 1;
}

.why-taksh-crm-bg {
    background: url(../images/background/crm-bg.html);
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.why-crm-ul {
    display: flex;
}

    .why-crm-ul li {
        border-right: 1px solid var(--secondary-color);
        padding: 0 10px;
    }

        .why-crm-ul li i {
            color: var(--primary-color)
        }

        .why-crm-ul li:first-child {
            padding-left: 0;
        }

        .why-crm-ul li:last-child {
            border: 0;
        }

.additional-features {
    background: url(../images/background/additional.html);
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
}

.additional-block {
    background: #fff;
    padding: 15px;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .additional-block:before {
        content: '';
        position: absolute;
        right: -50px;
        top: -50px;
        width: 130px;
        height: 130px;
        background: var(--primary-color);
        border-radius: 50%;
        opacity: .3;
        transition: all .25s linear;
    }

    .additional-block:hover:before {
        right: -30px;
        top: -30px;
    }

.additional-block-img {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.additional-block h4 {
    color: var(--primary-color)
}

.additional-block .additional-block-icon {
    width: 60px;
    margin-right: 15px;
}

.additional-block :last-child {
    margin-bottom: 0;
}
/**/
.solution-offer-ul {
}

    .solution-offer-ul li {
        padding-left: 30px;
        position: relative;
    }

        .solution-offer-ul li:before, .solution-offer-ul li:after {
            content: '';
            background: var(--primary-color);
            position: absolute;
            height: 10px;
            width: 3px;
            top: 7px;
            left: 0;
        }

        .solution-offer-ul li:after {
            left: 5px;
            width: 10px;
        }

.education-offer {
    display: flex;
    background: var(--secondary-color);
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    border-radius: 4px;
    overflow: hidden;
}

    .education-offer:before {
        content: '';
        background-color: var(--primary-color);
        height: 100%;
        width: 30%;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        border-right: 1px solid black;
    }

.education-offer-img {
    width: 60%;
    margin-right: 15px;
}

    .education-offer-img img {
    }

.education-offer-content {
    padding: 20px;
    padding-top: 15px;
    background: white;
    border-radius: 5px;
}

    .education-offer-content .title {
        /* color: #000; */
    }

    .education-offer-content p {
        /* color: #fff; */
    }

.education-offer-flip {
    flex-direction: row-reverse;
}

    .education-offer-flip .education-offer-img {
        margin-right: 0;
        margin-left: 10px;
    }

    .education-offer-flip:before {
        left: auto;
        right: 0;
        border-left: 1px solid black;
        border-right: 0;
    }

.made-easy-card {
    /* display: flex; */
    background: #f1f6fa;
    overflow: hidden;
    position: relative;
}

    .made-easy-card .sec-title .title {
        /* color: #fff; */
    }

.made-easy-img img {
    width: 550px;
    position: absolute;
    left: -50px;
}

.made-easy-img img {
    /* height: 100%; */
    /* object-fit: cover; */
}

.made-easy-content {
    /* color: #f1f6fa; */
    padding: 30px 0;
    margin-left: 20px;
    padding-left: 480px;
}

.intro-erp {
    position: absolute;
    left: 0;
    top: 70px;
    bottom: 0;
    margin: auto;
    background: var(--primary-color);
    display: inline-block;
    width: 45%;
    overflow: hidden;
    padding: 40px;
    border-radius: 0 20px 20px 0;
    text-align: center;
}

    .intro-erp img {
        height: 100%;
    }

.modules-list-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.modules-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 25px;
}

    .modules-list li {
        text-align: center;
        position: relative;
        display: inline-block;
    }

    .modules-list .icon {
        /* height: 140px; */
        /* width: 190px; */
        background: #FFF;
        border-radius: 10px;
        position: relative;
        border: 2px solid #e3ecf6;
        /* display: grid; */
        place-content: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin: auto;
        box-shadow: 0 2px 8px -2px hsla(0,0%,9%,.08), 0 8px 12px -2px hsla(0,0%,9%,.16);
        position: relative;
        z-index: 1;
        padding: 20px 0;
    }

.modules-icon {
    position: relative;
    z-index: 1;
}

    .modules-icon:before {
        content: '';
        position: absolute;
        left: -40px;
        right: 0;
        margin: auto;
        top: -7px;
        content: "";
        height: 70px;
        width: 70px;
        background: url(../images/background/module-icon.html);
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -1;
    }

.modules-list .icon:before {
    /*content: '';*/
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../images/background/module-bg.html);
    background-repeat: no-repeat;
    background-size: contain;
}

.modules-list li:first-child .icon {
    /* top: 70px; */
}

.modules-list .icon img {
    width: 55px;
    margin-bottom: 20px;
    margin: auto;
    margin-top: 6px;
}

    .modules-list .icon img.two-text-icon {
    }

.modules-list .icon p {
    font-size: 16px;
    margin: 0;
    margin-top: 15px;
    line-height: normal;
}

    .modules-list .icon p.two-text {
    }

.modules-list li:nth-child(2n) .icon {
    /* width: 180px; */
    /* height: 180px; */
    /* line-height: 180px; */
    /* font-size: 80px; */
    /* position: relative; */
}

    .modules-list li:nth-child(2n) .icon img {
        /* height: 70px; */
    }

.modules-list li:nth-child(3) .icon {
    /* top: 70px; */
}

.modules-list li:nth-child(4) .icon {
    /* top: 20px; */
}

.modules-list li:nth-child(5) .icon {
    position: relative;
}

.modules-list li:nth-child(6) .icon {
    /* top: 50px; */
}

.modules-list li:nth-child(8) .icon {
    /* top: 50px; */
}

.modules-list li:nth-child(9) .icon {
    /* top: 30px; */
}

.modules-list li:nth-child(10) .icon {
    /* top: 70px; */
}

.modules-box {
    background: #fff;
    position: relative;
    border: 1px dashed var(--primary-color);
}

    .modules-box:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }

.modules-icon2 {
    margin: auto;
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: grid;
    place-content: center;
}

    .modules-icon2 img {
        width: 50px;
    }

/*Mudeule new*/
.module-ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

    .module-ul li {
        background: var(--theme-color-light);
        padding: 15px;
        box-shadow: 0 2px 8px -2px hsla(0,0%,9%,.08), 0 8px 12px -2px hsla(0,0%,9%,.16);
        border-radius: 7px;
        text-align: center;
    }

        .module-ul li p {
            margin: 0;
        }

        .module-ul li .logo-icon {
            width: 55px;
            margin: auto;
            position: relative;
            z-index: 1;
        }

            .module-ul li .logo-icon:before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                transform: translate(18px, -6px) rotate(45deg);
                margin: auto;
                width: 55px;
                height: 55px;
                background: var(--secondary-color);
                z-index: -1;
                border-radius: 50%;
            }

        .module-ul li img {
        }

.hexa-parent {
    float: left;
}

.hexa-parent2 {
    /* transform: translate(-40px, -80px); */
    margin-top: -80px;
    margin-left: -40px;
}

.hexa-parent3 {
    /* transform: translate(-80px, -160px); */
    margin-top: -160px;
    margin-left: -40px;
}

.hexa-parent4 {
    /* transform: translate(-121px, -80px); */
    margin-top: -80px;
    margin-left: -40px;
}

.hexa-parent5 {
    /* transform: translate(-161px, -1px); */
    margin-top: 0px;
    margin-left: -40px;
}

.hexa-main {
    display: flex;
    justify-content: center;
    margin-top: 200px;
}

.hexa-mobile {
    display: none;
}

.hexa {
    height: 180px;
    width: 180px;
    background-image: url(../images/background/hexagon.svg);
    background-size: cover;
    display: grid;
    place-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: -20px;
    font-weight: bold;
    text-align: center;
    filter: drop-shadow(0px 0px 22px #00000030);
}

.hexa-active {
    background-image: url(../images/background/hexagon-active.svg);
    color: var(--theme-color-light);
}
/*.hexa:before {
        content: '';
        background-image: url(../images/background/hexagon.svg);
        background-size: cover;
        position:absolute;
        left:0;
        top:0;
        width:100%;
        height:100%;
        z-index:-1;

    }*/
.hexa p {
    margin: 0;
    line-height: normal;
}

.hexa img {
    width: 50px;
    margin: auto;
    margin-bottom: 10px;
}

.fade {
    /* pointer-events: none; */
    /* background: linear-gradient(90deg, #1e293b, transparent 30%, transparent 70%, #1e293b); */
    /* position: absolute; */
    /* inset: 0; */
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/**/
.why-taksh {
    position: relative;
}

.why-taksh-parent {
    position: relative;
    background: url(../images/why-taksh.html);
    background-repeat: no-repeat;
    background-size: cover;
}

.why-taksh-content {
    padding: 0;
}

    .why-taksh-content .title {
        /* color: #fff; */
    }

    .why-taksh-content p {
        /* color: #fff; */
    }
/*.frame {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}*/
.taksh-points {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* grid-template-columns: 1fr 1fr; */
    /* grid-gap: 25px; */
    /* justify-content: space-between; */
    /* background: #fff; */
    /* position: absolute; */
    /* z-index: 1; */
    /* bottom: 15px; */
    /* left: 15px; */
    padding: 20px;
    margin-top: 50px;
    /* width: 90%; */
    /* border-radius: 7px; */
}

.taksh-points-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    flex-basis: 50%;
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 0 15px 2px rgba(0,0,0,.1);
    position: relative;
    z-index: 1;
    text-align: center;
}


    .taksh-points-inner:last-child {
        border: 0;
    }



.points-icon {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: auto;
    /* border: 10px solid #bcd0df; */
    /* margin-right: 10px; */
    padding: 4px;
    /* box-shadow: 0 -1px 9px 0 rgb(0 0 0 / 8%); */
    margin-bottom: 15px;
    padding: 11px;
}
/*Demo*/

.demo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.demo-1 {
    margin-left: 10px;
}

.request-demo-section {
    position: relative;
    z-index: 1;
}

    .request-demo-section .row &gt; div {
        padding: 0 10px;
    }

.demo-bg-outer {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 50%;
}

.demo-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: auto;
    right: -186px;
    background-image: url(../images/background/form-bg.html);
}

.demo-inner {
    position: relative;
    padding: 50px 0;
    padding-right: 200px;
}

.demo-column {
    position: relative;
}

    .demo-column textarea {
        height: 100px;
        resize: none;
    }

.contact-info {
    position: absolute;
    right: 55px;
    bottom: 0;
    top: 0;
    width: 100px;
    background-color: var(--primary-color);
    text-align: center;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color-light);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.demo-map {
    position: absolute;
    right: 0;
    height: 100%;
    bottom: 0;
    width: 40%;
    display: block;
    background-color: var(--secondary-color);
}

.demo-arrow {
    text-align: center;
    margin: 31px 0;
}

.demo-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

    .demo-btns a {
        padding: 10px 30px;
        background: var(--primary-color);
        border-radius: 6px;
        color: var(--theme-color-light);
        font-weight: bold;
        border: 1px dashed transparent;
        transition: border .2s linear;
    }

        .demo-btns a.feature-btn {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }
        /*.demo-btns a:hover {
            border-color: var(--primary-color);
        }*/

        .demo-btns a i {
            margin-left: 10px;
        }

    .demo-btns span {
        font-weight: 600;
        color: #000;
    }

.demo-form {
    padding: 65px 50px;
    background: #fff;
    box-shadow: 0 4px 70px rgb(69 105 231 / 9%);
    border-radius: 20px;
    position:relative;
    z-index:1;
}
/* Highlight */
ul.hightlist-ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

    ul.hightlist-ul li {
        float: left;
        display: inline-block;
        text-align: center;
        padding: 10px;
        transform: skew(-21deg);
        background: var(--secondary-color);
        background: #fff;
        border: 1px solid #0d2e414a;
        box-shadow: 0 2px 8px -2px hsla(0,0%,9%,.08), 0 8px 12px -2px hsla(0,0%,9%,.16);
    }

.hightlist-list {
    display: inline-flex;
    width: 100%;
    /* flex-direction: column; */
    justify-content: start;
    align-items: center;
    font-size: 26px;
    transform: skew(21deg) translateY(5px);
}

.hightlist-icon {
    width: 50px;
}

span.hightlist-title {
    /* margin: 0 12px; */
    margin-left: 15px;
    text-align: left;
    font-size: 17px;
    color: #000;
}

.hightlist-count {
    display: none;
}

.highlight-parent {
    padding: 0 10px;
}
/*New */
.image-box {
    position: relative;
    display: block;
    padding-top: 239px;
}

    .image-box .image-shape .shape {
        position: absolute;
        border-radius: 50%;
        border: 1px dashed #fc7f5a;
    }

    .image-box .image-shape .shape-1 {
        left: -73px;
        top: 0px;
        width: 440px;
        height: 440px;
    }

    .image-box .image-shape .shape-2 {
        left: -53px;
        top: 20px;
        width: 400px;
        height: 400px;
    }

    .image-box .image-shape .shape-3 {
        left: -33px;
        top: 40px;
        width: 360px;
        height: 360px;
    }

    .image-box img {
        width: 100%;
    }

    .image-box img {
        border-radius: 5px;
    }

    .image-box figure {
        /* box-shadow: 0 2px 8px -2px hsla(0,0%,9%,.08), 0 8px 12px -2px hsla(0,0%,9%,.16); */
    }

    .image-box .image-1 {
        position: relative;
        border-radius: 25px;
        top: 40px;
        left: 170px;
        z-index: 2;
        width: 300px;
        filter: drop-shadow(0px 0px 6px var(--primary-color));
    }

    .image-box .image-2 {
        position: absolute;
        top: 0;
        right: -100px;
        border-radius: 25px;
        width: 300px;
    }

    .image-box .image-3 {
        position: absolute;
        left: 35px;
        top: 107px;
        width: 240px;
    }



.made-easy-ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 60px;
}

    .made-easy-ul li i {
        position: absolute;
        left: 0px;
        top: 0px;
        display: inline-block;
        width: 52px;
        height: 52px;
        line-height: 52px;
        background: #d3f3f0;
        font-size: 24px;
        border-radius: 15px;
        text-align: center;
        color: var(--primary-color);
    }

    .made-easy-ul li .ul-text {
        position: relative;
        display: inline-block;
        font-size: 15px;
        line-height: 26px;
        padding: 12px 20px;
        border: 1px dashed #d8d2d0;
        border-radius: 15px;
        text-transform: uppercase;
    }

.no-persuade:after, .no-persuade:before {
    display: none;
}

.name-highlights img {
    width: 35px;
    margin-right: 15px;
}

.name-highlights svg {
    position: absolute;
    left: 0;
    right: 4px;
    top: -7px;
    filter: drop-shadow(0px -3px 20px #00000008);
}

.card-Highlights {
    background: var(--secondary-color);
    border-radius: 9px;
    position: relative;
    padding: 5px;
    height: 80px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    /* border: 1px solid #dcdcdc; */
    /* box-shadow: 0 0 9px 0px #00000003; */
}


.name-highlights .d-flex {
    padding-left: 40px;
    position: relative;
    font-weight: 700;
    align-items: center;
    margin-bottom: 14px;
}

.card-Highlights span {
    font-weight: 700;
    left: 10px;
    bottom: 6px;
    font-size: 18px;
    position: absolute;
    color: #4c4744;
}

.no-persuade {
    border: none;
}

.request-page {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
}

/*.request-page:before {
        content: '';
        background-image: url(../images/background/side-shape1.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .request-page:after {
        content: '';
        background-image: url(../images/background/side-shape2.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top right;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }*/

.request-form {
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: #ffffffeb;
    backdrop-filter: blur(6px);
    border: 1px solid var(--primary-color);
}

.request-form-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 3px 0;
}

.request-page-img {
    width: 60%;
    margin: auto;
}

.best-card {
    text-align: center;
    position: relative;
    padding: 10px 0;
}

.best-card-icon {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODIiIGhlaWdodD0iMjAxIj48cGF0aCBkPSJNLjMgNjUuNDg2YzAtOS4xOTYgNi42ODctMjAuMDYzIDE0LjIxMS0yNS4wNzhsNjEuODYtMzUuOTQ2YzguMzYtNS4wMTYgMjAuODk5LTUuMDE2IDI5LjI1OCAwbDYxLjg2IDM1Ljk0NmM4LjM2IDUuMDE1IDE0LjIxMSAxNS44ODIgMTQuMjExIDI1LjA3OHY3MS4wNTVjMCA5LjE5Ni02LjY4NyAyMC4wNjMtMTQuMjExIDI1LjA3OWwtNjEuODYgMzUuOTQ1Yy04LjM2IDQuMTgtMjAuODk5IDQuMTgtMjkuMjU4IDBsLTYxLjg2LTM1Ljk0NUM2LjE1MSAxNTcuNDQuMyAxNDUuNzM3LjMgMTM2LjU0VjY1LjQ4NnoiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODIiIGhlaWdodD0iMjAxIj48cGF0aCBkPSJNLjMgNjUuNDg2YzAtOS4xOTYgNi42ODctMjAuMDYzIDE0LjIxMS0yNS4wNzhsNjEuODYtMzUuOTQ2YzguMzYtNS4wMTYgMjAuODk5LTUuMDE2IDI5LjI1OCAwbDYxLjg2IDM1Ljk0NmM4LjM2IDUuMDE1IDE0LjIxMSAxNS44ODIgMTQuMjExIDI1LjA3OHY3MS4wNTVjMCA5LjE5Ni02LjY4NyAyMC4wNjMtMTQuMjExIDI1LjA3OWwtNjEuODYgMzUuOTQ1Yy04LjM2IDQuMTgtMjAuODk5IDQuMTgtMjkuMjU4IDBsLTYxLjg2LTM1Ljk0NUM2LjE1MSAxNTcuNDQuMyAxNDUuNzM3LjMgMTM2LjU0VjY1LjQ4NnoiLz48L3N2Zz4=);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #f1f1f1;
    width: 100px;
    height: 100px;
    margin: auto;
    text-align: center;
    display: grid;
    place-content: center;
    box-shadow: inset 0px 0px 20px 8px #00000012;
}

    .best-card-icon img {
        width: 40px;
    }

.best-card p {
    margin-bottom: 0;
}

.best-card-parent {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.what-block {
    padding: 25px 25px 22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(85,85,85,.1);
    border-radius: 6px;
    margin-bottom: 20px;
    height: 241.39px;
}

.what-block-icon-parent {
    display: flex;
    align-items: center;
}

.what-block-icon {
    width: 65px;
    height: 65px;
    border: 1px solid var(--primary-color);
    border-radius: 7px;
    display: grid;
    place-content: center;
    margin-right: 10px;
    position: relative;
    z-index: 1;
}

    .what-block-icon:before {
        content: '';
        position: absolute;
        left: -4px;
        top: 10px;
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 50%;
    }

    .what-block-icon:after {
        content: '';
        position: absolute;
        right: -4px;
        bottom: 10px;
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 50%;
    }

.what-block h4 {
    font-size: 18px;
}

.what-block p {
    margin: 0;
    margin-top: 20px
}

.what-block-icon img {
    width: 41px;
}

.customer-relationship-img {
    width: 340px;
    margin: auto;
    z-index: 1;
    position: relative;
}

.power-software {
    background: url(../images/background/background-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 35px 0;
}

/****************************************** about-us-why ***************************************************** */
.About-why-section {
    padding: 80px 0px 80px;
    background: linear-gradient(0deg, aliceblue 80%, #fff );
}

    .About-why-section .service-block {
        position: relative;
        margin-bottom: 10px;
        margin-top: 20px;
    }

        .About-why-section.service-block .inner-box {
            position: relative;
            display: block;
            padding: 50px 45px;
            background: #1c1e22;
            min-height: 100%;
            border-radius: 7px;
            overflow: hidden;
            transition: all 500ms ease;
        }

    .About-why-section .services-section .row .service-block .inner-box:before {
        content: "0"counter(slides-num) "";
        position: absolute;
        left: 45px;
        top: 50px;
        font-size: 50px;
        line-height: 1em;
        color: #000 !important;
        opacity: .07;
        font-weight: 300;
    }

    .About-why-section .services-section .row .service-block .inner-box:hover:before, .service-block .inner-box:hover .count, .service-block .inner-box:hover h6, .service-block .inner-box:hover h6 a {
        color: var(--theme-color-dark);
    }

    .About-why-section .service-block .inner-box .inner-box-iiner:hover {
        background-color: var(--primary-color);
    }

    .About-why-section .service-block .inner-box {
        position: relative;
        display: block;
        padding: 15px;
        min-height: 100%;
        z-index: 0;
        border-radius: 2rem;
        transition: all 500ms ease;
        border: 2px solid #605d5d;
        height: 100%;
    }

        .About-why-section .service-block .inner-box .inner-box-iiner {
            background: #fff;
            border-radius: 1.5rem;
            padding: 15px;
            box-shadow: 0px 1px 4px 4px #cdcdcd59;
            height: 100%;
            transition: all 500ms ease;
        }

        .About-why-section .service-block .inner-box:before {
            content: "";
            position: absolute;
            width: 6rem;
            height: 6rem;
            top: -5px;
            left: -5px;
            border: 4px solid #0078d3;
            border-top-left-radius: 2rem;
            border-right: 0;
            border-bottom: 0;
            border-top-width: 10px;
            border-left-width: 10px;
        }

}

.About-why-section .service-block .inner-box:hover .bottom-curve {
    transform: skewX(-35deg) scaleX(1);
}

.About-why-section .service-block .inner-box .bottom-curve-1 {
    position: absolute;
    left: -5px;
    top: 5rem;
    width: 10px;
    height: 2.5rem;
    background: aliceblue;
}

    .About-why-section .service-block .inner-box .bottom-curve-1:before {
        position: absolute;
        content: "";
        left: -1px;
        top: 2.5rem;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        background: #605d5d;
    }

.About-why-section .service-block .inner-box .bottom-curve-2 {
    position: absolute;
    left: 5rem;
    top: -5px;
    width: 2.5rem;
    height: 10px;
    background: aliceblue;
}

    .About-why-section .service-block .inner-box .bottom-curve-2:before {
        position: absolute;
        content: "";
        left: 2.5rem;
        top: -1px;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        background: #605d5d;
    }

.About-why-section .service-block .inner-box .icon-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}

    .About-why-section .service-block .inner-box .icon-box .img-bg {
        background: #fff;
        height: 80px;
        width: 80px;
        border-radius: 50%;
        line-height: 5;
        display: block;
        text-align: center;
    }

        .About-why-section .service-block .inner-box .icon-box .img-bg img {
            width: 50px;
        }

    .About-why-section .service-block .inner-box .icon-box h6 {
        font-size: 22px;
        line-height: 1.3;
    }

.inner-box:hover:before, .service-block .inner-box .inner-box-iiner:hover .count, .service-block .inner-box .inner-box-iiner:hover h6, .service-block .inner-box .inner-box-iiner :hover h6 a {
    color: #fff;
}

.inner-box:hover:before, .service-block .inner-box:hover .count, .service-block .inner-box .inner-box-iiner:hover p, .service-block .inner-box .inner-box-iiner:hover p {
    color: #fff;
}

.About-why-section .service-block .inner-box-1 .icon-box-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}

.About-why-section .service-block .inner-box-1 {
    position: relative;
    display: block;
    padding: 20px 20px 5px 20px;
    min-height: 100%;
    border-radius: 7px;
    overflow: hidden;
    transition: all 500ms ease;
}

    .About-why-section .service-block .inner-box-1 .icon-box-1 h6 {
        font-size: 22px;
        line-height: 1.3;
    }

/* 
.about-us-why {
    padding: 20px 0px 70px;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}
.about-us-why .services__three-item.page {
    border-bottom: 4px solid #0176d3;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}
.About-why-mar
{
    margin-top: 30px;
}
.about-us-why  .services__three-item {
    position: relative;
    overflow: hidden; 
    transition: .6s;
}
.about-us-why  .services__three-item:hover{
     transform: translateY(-8px);

    transition: all ease .6s;
} 
.about-us-why  .services__three-item &gt; img {
    width: 100%;
    filter: grayscale(100%);
}
.services__three-item:hover img {
    filter: grayscale(0%);
}
.about-us-why  .services__three-item-content.page {
    background: none;
}
.about-us-why  .services__three-item-content {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px 25px 12px 20px;
    padding-top: 50px;
     margin-right: 10px; 
    z-index: 1;
    
}
.about-us-why .services__three-item-content.page .services__three-item-content-icon {
    background-color: var(--primary-color);
}
.about-us-why .services__three-item-content-icon {
    background: var(--primary-color-3);
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 6px;
    border: 4px solid #fff;
    position: absolute;
    top: -30px;
    right: 15px;
    padding: 10px 0;
}
.services__three-item img{
    height: 300px;
    object-fit: cover;
}
.services__three-item-content.page .services__three-item-content-icon img {
    max-width: 50px;
    height: 100% !important;
    transition: all 5s ease;
}
.services__three-item:hover .services__three-item-content-icon img {
    transition: all 5s ease;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.about-us-why .services__three-item-content h4 a{
        color: var(--theme-color-dark) !important;
}
.about-us-why .services__three-item-content h4 {
    font-size: 20px;
    font-weight: 500;

}
.about-us-why .services__three-item-content::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: -10px;
    transform: matrix(0.99, -0.1, 0.12, 0.97, 0, 0);
    background: #fff;
    width: 100%;
    height: 101%;
    z-index: -1;
} */

/*About*/

.about-content {
    display: flex;
    align-items: start;
}

    .about-content img {
        width: 60px;
        margin-right: 15px;
        box-shadow: 7px 5px 30px 0 rgba(72,73,121,0.15);
        background: #fff;
        padding: 11px;
        border-radius: 5px;
    }

.about-us-why-row {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
}

.about-us-why-content {
    padding: 20px;
}

.about-us-why-row .col-md-6 {
    padding: 0;
}

.about-us-why-block {
    display: flex;
    align-items: start;
}

    .about-us-why-block .about-us-why-block-icon {
        min-width: 70px;
        height: 70px;
        margin-right: 15px;
        border-radius: 50%;
        box-shadow: 0 19px 20px rgba(0,0,0,.15);
        display: grid;
        place-content: center;
    }

        .about-us-why-block .about-us-why-block-icon img {
            width: 47px;
            position: relative;
            top: -7px;
        }


.about-why-box {
    text-align: center;
    position: relative;
}

    .about-why-box .arrow-circle {
        position: absolute;
        left: 0px;
        right: 0;
        top: 107px;
        margin: auto;
        width: 250px;
    }

    .about-why-box .arrow-circle2 {
        top: -19px;
    }

    .about-why-box .main-img {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        margin-bottom: 30px;
        object-fit: cover;
    }

.ab-planing-block {
    position: relative;
}

    .ab-planing-block:before {
        content: '';
        position: absolute;
        left: 34px;
        top: 15px;
        margin: auto;
        width: 2px;
        height: calc(100% + 14px);
        background: var(--primary-color);
    }

.ab-planing-block-last:before {
    height: 100%;
}

.ab-planing-icon {
    box-shadow: 7px 5px 30px 0 rgba(72,73,121,0.15);
    width: 67px;
    height: 45px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    font-size: 30px;
}



.ab-planing-content {
    padding-left: 77px;
    text-align: left;
}

.ab-planing-icon img {
    width: 45px;
}
/**/
.testim {
    width: 100%;
    /* position: absolute; */
    /* top: 50%; */
    /* -webkit-transform: translatey(-50%); */
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    /* transform: translatey(-50%); */
}

    .testim .wrap {
        position: relative;
        width: 100%;
        max-width: 1020px;
        padding: 40px 20px;
        margin: auto;
    }

    .testim .arrow {
        display: block;
        position: absolute;
        color: var(--theme-color-dark);
        cursor: pointer;
        font-size: 2em;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        padding: 5px;
        z-index: 22222222;
    }

        .testim .arrow:before {
            cursor: pointer;
        }

        .testim .arrow:hover {
            color: #ea830e;
        }


        .testim .arrow.left {
            left: 10px;
        }

        .testim .arrow.right {
            right: 10px;
        }

    .testim .dots {
        text-align: center;
        position: absolute;
        width: 100%;
        bottom: 60px;
        left: 0;
        display: block;
        z-index: 3333;
        height: 12px;
    }

        .testim .dots .dot {
            list-style-type: none;
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid var(--secondary-color);
            background: var(--secondary-color);
            margin: 0 10px;
            cursor: pointer;
            -webkit-transition: all .5s ease-in-out;
            -ms-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -o-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            position: relative;
        }

            .testim .dots .dot.active,
            .testim .dots .dot:hover {
                background: var(--primary-color);
                border-color: var(--primary-color);
            }

            .testim .dots .dot.active {
                -webkit-animation: testim-scale .5s ease-in-out forwards;
                -moz-animation: testim-scale .5s ease-in-out forwards;
                -ms-animation: testim-scale .5s ease-in-out forwards;
                -o-animation: testim-scale .5s ease-in-out forwards;
                animation: testim-scale .5s ease-in-out forwards;
            }

    .testim .cont {
        position: relative;
        overflow: hidden;
    }

        .testim .cont &gt; div {
            text-align: center;
            position: absolute;
            top: 0;
            left: 0;
            padding: 0 0 70px 0;
            opacity: 0;
        }

            .testim .cont &gt; div.inactive {
                opacity: 1;
            }


            .testim .cont &gt; div.active {
                position: relative;
                opacity: 1;
            }


        .testim .cont div .img img {
            display: block;
            width: 100px;
            height: 100px;
            margin: auto;
            border-radius: 50%;
            object-fit: cover;
        }

        .testim .cont div h2 {
            color: #ea830e;
            font-size: 1em;
            margin: 15px 0;
        }

        .testim .cont div p {
            font-size: 1.15em;
            color: var(--theme-color-dark);
            width: 80%;
            margin: auto;
        }

        .testim .cont div.active .img img {
            -webkit-animation: testim-show .5s ease-in-out forwards;
            -moz-animation: testim-show .5s ease-in-out forwards;
            -ms-animation: testim-show .5s ease-in-out forwards;
            -o-animation: testim-show .5s ease-in-out forwards;
            animation: testim-show .5s ease-in-out forwards;
        }

        .testim .cont div.active h2 {
            -webkit-animation: testim-content-in .4s ease-in-out forwards;
            -moz-animation: testim-content-in .4s ease-in-out forwards;
            -ms-animation: testim-content-in .4s ease-in-out forwards;
            -o-animation: testim-content-in .4s ease-in-out forwards;
            animation: testim-content-in .4s ease-in-out forwards;
        }

        .testim .cont div.active p {
            -webkit-animation: testim-content-in .5s ease-in-out forwards;
            -moz-animation: testim-content-in .5s ease-in-out forwards;
            -ms-animation: testim-content-in .5s ease-in-out forwards;
            -o-animation: testim-content-in .5s ease-in-out forwards;
            animation: testim-content-in .5s ease-in-out forwards;
        }

        .testim .cont div.inactive .img img {
            -webkit-animation: testim-hide .5s ease-in-out forwards;
            -moz-animation: testim-hide .5s ease-in-out forwards;
            -ms-animation: testim-hide .5s ease-in-out forwards;
            -o-animation: testim-hide .5s ease-in-out forwards;
            animation: testim-hide .5s ease-in-out forwards;
        }

        .testim .cont div.inactive h2 {
            -webkit-animation: testim-content-out .4s ease-in-out forwards;
            -moz-animation: testim-content-out .4s ease-in-out forwards;
            -ms-animation: testim-content-out .4s ease-in-out forwards;
            -o-animation: testim-content-out .4s ease-in-out forwards;
            animation: testim-content-out .4s ease-in-out forwards;
        }

        .testim .cont div.inactive p {
            -webkit-animation: testim-content-out .5s ease-in-out forwards;
            -moz-animation: testim-content-out .5s ease-in-out forwards;
            -ms-animation: testim-content-out .5s ease-in-out forwards;
            -o-animation: testim-content-out .5s ease-in-out forwards;
            animation: testim-content-out .5s ease-in-out forwards;
        }

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }
}

.contact-details-block {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgb(0 0 0 / 0%) 0px 16px 32px, rgb(0 0 0 / 0%) 0px 32px 64px;
    padding: 20px;
    border-radius: 7px;
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    height: 195px;
}

    .contact-details-block img {
        width: 90px;
        margin-right: 15px;
    }

    .contact-details-block h4 {
    }

    .contact-details-block p {
        margin: 0;
    }

.contact-info-box {
    position: relative;
    background: var(--secondary-color);
    padding: 5px 0;
    margin-top: 20px;
    border-radius: 5px;
}

    .contact-info-box ul {
        display: flex;
        justify-content: space-around;
    }

    .contact-info-box li {
        position: relative;
        display: inline-block;
        /* margin: 0 0 24px; */
        color: #101010;
        font-size: 18px;
        font-weight: 500;
        line-height: 30px;
    }

    .contact-info-box ul li:last-child {
        /* margin-bottom: 0; */
    }

    .contact-info-box li .icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 22px;
        background: #ffffff;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.06);
    }

    .contact-info-box li a {
        position: relative;
        color: var(--theme-color-dark);
    }

.facebook.icon {
    color: #3b5998;
}

.instagram.icon {
    color: #d62976;
}

.twitter.icon {
    color: #00acee;
}

.linkedin.icon {
    color: #0072b1;
}

.pinterest.icon {
    color: #E60023;
}

.conclusion-p {
    /*background: var(--primary-color);*/
    /* color: #fff; */
    border-radius: 5px;
    /*padding: 5px 10px;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

iframe.contact-map {
    border: 2px solid var(--primary-color);
    border-radius: 0 0 5px 5px;
}

.address-div {
    background-color: var(--secondary-color);
    border-radius: 11px;
    padding: 5px 20px 30px 125px;
    margin: 0 0 40px;
    position: relative;
    box-shadow: 0 0 25px rgba(85,85,85,.1);
}

    .address-div h4 {
        color: #fff;
        line-height: normal;
        margin-bottom: 12px;
    }

    .address-div p {
        margin: 0;
    }

.address-bg {
    position: absolute;
    left: 9px;
    top: 0;
    width: 275px;
    height: auto;
}

.address-icon {
    position: absolute;
    left: 25px;
    top: 43px;
    width: 45px;
}

.map-div {
    position: relative;
}

    .map-div h4 {
        /* position:absolute; */
        background: var(--primary-color);
        text-align: center;
        color: #fff;
    }

/************************************ my css section start  *************************************************/
/* institute management About section  css start page  */

/* section eight Why choose us section start  */
.tf__popular_services_2 {
    padding: 70px 0px 50px;
}

.tf__single_services {
    background: var(--primary-color);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 25px 25px 25px;
    margin-top: 75px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    transition: .6s;
    height: 300px;
}

    .tf__single_services:before {
        position: absolute;
        content: "";
        background: var(--primary-color);
        color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        width: 60px;
        height: 60px;
        bottom: 0;
        left: 0;
        z-index: 1;
        border-radius: 0px 50px 0px 0px;
    }

.tf__popular_services_2 .tf__single_services span {
    background: var(--primary-color);
    color: var(--primary-color);
}

.tf__single_services span, .tf__single_services span:after {
    border-radius: 50%;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.tf__popular_services_2 .tf__single_services span {
    background: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_services:hover span {
    background: #fff;
    color: #fff;
}

.tf__single_services img {
    width: 50px;
}

.tf__single_services:hover img {
    filter: brightness(0) invert(1);
}

.tf__single_services span {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: block;
    background: var(--colorPrimary);
    color: var(--colorPrimary);
    font-size: 40px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 1;
}

    .tf__single_services span, .tf__single_services span:after {
        border-radius: 50%;
        position: absolute;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        transition: all .3s linear;
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
    }

.tf__popular_services_2 .tf__single_services:hover span:after {
    background: var(--primary-color);
}

.tf__single_services:hover span:after {
    background: var(--primary-color);
    top: -3px;
}

.tf__single_services span:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    top: 3px;
    left: 0;
    z-index: -1;
}

.tf__single_services span, .tf__single_services span:after {
    border-radius: 50%;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.tf__single_services h4 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.tf__single_services:hover h4 {
    color: #fff;
}

.tf__single_services:hover p {
    color: #fff;
}

.tf__single_services h3, .tf__single_services p {
    position: relative;
    z-index: 1;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.tf__popular_services_2 .tf__single_services a {
    color: #fff;
    position: absolute;
    left: 15px;
    bottom: 12px;
    z-index: 1;
}

.tf__single_services:hover::before {
    border: 3px solid #fff;
}

.tf__single_services a:hover::before {
    color: #fff;
}

.tf__single_services:hover:after {
    opacity: 0;
    color: #fff;
    transition: all ease .6s;
}

.tf__single_services:hover::after {
    color: #fff !important;
}

.tf__single_services:after {
    position: absolute;
    content: "";
    background: #fff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all ease .6s;
    border-radius: 9px;
}

/************************** banner css  ********************/
.institute-bg-sec .title {
    position: relative;
    font-size: 40px;
    color: var(--theme-color-dark);
    line-height: 1.2em;
    padding: 0px 0px 18px;
    display: inline-block;
    border-bottom: 0px solid #f1f1f1;
}

.institute-bg {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.categories-section-current {
    position: relative;
    padding: 50px 0 0px;
}

    .categories-section-current .sec-title {
        position: relative;
        margin-bottom: 20px;
    }

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.category-block-current {
    position: relative;
    margin-bottom: 50px;
    margin-top: 20px;
}

    .category-block-current .inner-box {
        position: relative;
        text-align: center;
        max-width: 160px;
        margin: 0 auto;
    }

    .category-block-current .icon-box {
        position: relative;
        height: 170px;
        width: 170px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px;
        border: 2px dashed #00c7c4;
        border-radius: 50%;
        margin-bottom: 15px;
    }

        .category-block-current .icon-box .icon img {
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
            width: 60px;
        }

        .category-block-current .icon-box .icon {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            height: 130px;
            width: 130px;
            background-color: #f1f7f7;
            font-size: 64px;
            line-height: 1em;
            border-radius: 50%;
            color: var(--theme-color2);
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

    .category-block-current:nth-child(6n+2) .inner-box .icon-box {
        border-color: #ef5c72;
    }

    .category-block-current:nth-child(6n+3) .inner-box .icon-box {
        border-color: #f8b81f;
    }

    .category-block-current:nth-child(6n+5) .inner-box .icon-box {
        border-color: #8e56ff;
    }

    .category-block-current:nth-child(6n+6) .inner-box .icon-box {
        border-color: #41c2fa;
    }

    .category-block-current:nth-child(6n+4) .inner-box .icon-box {
        border-color: #22d17e;
    }

.categories-section-current .title a {
    color: inherit;
    font-weight: 500;
    font-size: 22px;
}

.category-block-current .title {
    margin-bottom: 0;
}



/* school management About section  css start*/
.about-section {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    z-index: -1;
}

.about-section .icon-dotted-map {
    top: 145px;
    left: -585px;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.icon-dotted-map {
    width: 415px;
    height: 576px;
    background-image: url('../images/icon-dotted-map.png');
}

.about-section .icon-dotted-map-2 {
    top: 20px;
    left: -5px;
}

.icon-dotted-map-2 {
    width: 623px;
    height: 576px;
    background-image: url('../images/icon-dotted-map-2.png');
}

.about-section .icon-paper-plan {
    left: -80px;
    top: 310px;
}

.icon-paper-plan {
    width: 170px;
    height: 317px;
    background-image: url(../images/icon-paper-plan.png);
}

.about-section .icon-dotted-line {
    left: 280px;
    top: 300px;
}

.icon-dotted-line {
    width: 150px;
    height: 215px;
    background-image: url(../images/icon-dotted-line.png);
}

.about-section .image-column .inner-column {
    margin-left: 0;
    padding-right: 0;
    position: relative;
}

.about-section .image-column .image-1 {
    position: relative;
    max-width: 400px;
    margin-bottom: 0px;
}

    .about-section .image-column .image-1 img {
        border-radius: 30px;
        transform: rotate(-15deg);
        transition: all 0.3s linear;
    }

        .about-section .image-column .image-1 img:hover {
            transform: scale(1.1);
            transition: all 0.3s linear;
        }

.overlay-anim {
    position: relative;
}

    .overlay-anim:after {
        background: rgba(255, 255, 255, 0.3);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        opacity: 1;
        z-index: 9;
        pointer-events: none;
    }

.about-section .image-column .image-2 {
    position: absolute;
    top: 0;
    right: 55px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 0;
}

    .about-section .image-column .image-2 img {
        width: 100%;
        max-width: 300px;
        transition: all 0.3s linear;
    }

        .about-section .image-column .image-2 img:hover {
            transform: scale(1.1);
        }

.about-section .experience {
    position: absolute;
    bottom: -40px;
    right: 140px;
    width: 290px;
    height: 101px;
    background-image: url(../images/exp.png);
    padding: 24px 20px 20px 110px;
    font-size: 22px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    -webkit-box-shadow: 0 25px 40px rgba(0, 0, 0, 0.24);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.24);
}

.bounce-y {
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}

.about-section .experience .countt {
    position: absolute;
    left: 25px;
    top: 23px;
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
}

.sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #0176d3;
}

.list-style-one.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-style-one {
    position: relative;
    margin-bottom: 10px;
}

    .list-style-one.two-column li {
        width: 50%;
    }

    .list-style-one li {
        list-style: none;
        position: relative;
        padding-left: 70px;
        min-height: 50px;
        font-size: 18px;
        line-height: 30px;
        color: var(--theme-color1);
        font-weight: 700;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 20px;
        padding-right: 20px;
        letter-spacing: -0.01em;
    }

        .list-style-one li .icon {
            position: absolute;
            left: 0;
            top: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background-color: #ef5c72;
            -webkit-box-shadow: 0 10px;
            box-shadow: 0 10px;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .list-style-one li:nth-child(4n+2) .icon {
            background-color: #7054e6;
        }

        .list-style-one li:nth-child(4n+3) .icon {
            background-color: #f89321;
        }

        .list-style-one li:nth-child(4n+4) .icon {
            background-color: #00c7c4;
        }

        .list-style-one li:hover .icon {
            -webkit-transform: scale(-1) rotate(-180deg);
            transform: scale(-1) rotate(-180deg);
        }


/************************************** section four learing passion ********************************** */

.side-tab {
    padding: 70px 0px 50px;
}

    .side-tab .container {
        width: 100%;
        border-radius: 12px;
    }

        .side-tab.container .topic {
            font-size: 30px;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--theme-color-dark);
        }

.content input {
    display: none;
}

.side-tab .content {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    border: 1px solid #d1cdcd69;
    /* box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B; */
    background: white;
    border-radius: 50px;
}

.content .list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 35%;
    padding: 30px;
    padding-right: 0;
}

    .content .list .tab-img {
        width: 45px;
        height: 45px;
        background: #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
    }

        .content .list .tab-img img {
            width: 30px;
        }

.content-btn {
    cursor: pointer;
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    padding: 0 8px;
    transition: all 0.2s linear;
    /* border: 1px solid #d1cdcd69; */
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 5px solid transparent;
    border-radius: 100px;
    margin-bottom: 10px;
    flex-direction: row;
    /* justify-content: space-between; */
    position: relative;
    width: 100%;
}

    .content-btn.active {
        background-color: #0176d3;
        color: #fff !important;
        border-left-color: #0060a9;
        width: 120%;
    }

        .content-btn.active:before {
            position: absolute;
            content: attr(data-count);
            width: 45px;
            height: 45px;
            background: white;
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0176d3;
            right: 9px;
        }

#home:checked ~ .list label.home,
#blog:checked ~ .list label.blog,
#help:checked ~ .list label.help,
#code:checked ~ .list label.code,
#about:checked ~ .list label.about {
    /* color: #22272C; */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}




.content .text-content {
    width: 65%;
    min-height: 100%;
    color: var(--theme-color-dark);
}


.side-tab .content .text .title {
    font-size: 27px;
    font-weight: 400;
}

.container .text p {
    text-align: justify;
    color: var(--theme-color-dark);
    margin-bottom: 0;
}

.tab-padding {
    display: none;
}

.mybtn-1-content {
    display: block;
}
/*
#blog:checked ~ .text-content .home,
#help:checked ~ .text-content .home,
#code:checked ~ .text-content .home,
#new-1:checked ~ .text-content .home,
#new-2:checked ~ .text-content .home {
    display: none;
}*/

.tab-padding {
    padding: 130px 30px 110px 100px;
    min-height: 100%;
    background: aliceblue;
    margin: auto;
    border-radius: 50px;
}


/************************************** section five featured section ********************************** */
.tf__categories {
    padding: 50px 0px 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.tf__single_category {
    position: relative;
    margin-top: 25px;
}

    .tf__single_category.light_blue .tf__single_category_icon {
        background: #00c7c4;
    }

        .tf__single_category.light_blue .tf__single_category_icon img {
            filter: brightness(0) invert(1);
        }

    .tf__single_category.light_blue:hover .tf__single_category_icon {
        color: #00c7c4;
        box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    }

    .tf__single_category:hover .tf__single_category_icon {
        background: #fff !important;
    }

    .tf__single_category.light_blue:hover .tf__single_category_text:after {
        background: #00c7c4;
    }

    .tf__single_category:hover .tf__single_category_text:after {
        opacity: .85;
    }

    .tf__single_category:hover h3, .tf__single_category:hover p {
        color: #fff;
    }

.tf__single_category_icon {
    width: 80px;
    height: 80px;
    background: #00c7c4;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 1;
    transition: all .3s linear;
    transform: translateY(-50%);
}

    .tf__single_category_icon img {
        width: 45px;
    }

.tf__single_category:hover .tf__single_category_icon img {
    filter: brightness() invert(1);
}

.tf__single_category .light_blue .tf__single_category_text {
    border-color: #00c7c4 !important;
}

.tf__single_category_text {
    background: url(../images/featured/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    margin-left: 50px;
    padding: 30px 30px 30px 60px;
    position: relative;
    border-radius: 5px;
    border-left: 3px solid #00c7c4;
    border-right: 3px solid #00c7c4;
    overflow: hidden;
    transform: skewX(-10deg);
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    height: 124px;
    display: flex;
    align-items: center;
}

    .tf__single_category_text h4, .tf__single_category_text p {
        position: relative;
        z-index: 1;
        transition: all .3s linear;
        margin-bottom: 0px;
    }

    .tf__single_category_text h4 {
        font-size: 20px;
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 10px;
        margin-bottom: 0px;
    }

    .tf__single_category_text p {
        padding-left: 8px;
    }

    .tf__single_category_text:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        top: 0;
        left: 0;
        transition: all .3s linear;
    }


/* \blue  */
.tf__single_category.blue .tf__single_category_icon {
    background: #ef5c72;
}

.tf__single_category:hover .tf__single_category_icon {
    background: #fff !important;
}

.tf__single_category.blue .tf__single_category_text {
    border-color: #ef5c72;
}

.tf__single_category.blue:hover .tf__single_category_icon {
    color: #ef5c72;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_category.blue:hover .tf__single_category_text:after {
    background: #ef5c72;
}

/* green */
.tf__single_category.green .tf__single_category_icon {
    background: #f8b81f;
}

.tf__single_category:hover .tf__single_category_icon {
    background: #fff !important;
}

.tf__single_category.green .tf__single_category_text {
    border-color: #f8b81f;
}

.tf__single_category.green:hover .tf__single_category_icon {
    color: #f8b81f;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_category.green:hover .tf__single_category_text:after {
    background: #f8b81f;
}
/* grey  */
.tf__single_category.gray .tf__single_category_icon {
    background: #22d17e;
}

.tf__single_category:hover .tf__single_category_icon {
    background: #fff !important;
}

.tf__single_category.gray .tf__single_category_text {
    border-color: #22d17e;
}

.tf__single_category.gray:hover .tf__single_category_icon {
    color: #22d17e;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_category.gray:hover .tf__single_category_text:after {
    background: #22d17e;
}
/* orange */
.tf__single_category.orange .tf__single_category_icon {
    background: #8e56ff;
}

.tf__single_category:hover .tf__single_category_icon {
    background: #fff !important;
}

.tf__single_category.orange .tf__single_category_text {
    border-color: #8e56ff;
}

.tf__single_category.orange:hover .tf__single_category_icon {
    color: #8e56ff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_category.orange:hover .tf__single_category_text:after {
    background: #8e56ff;
}

/* red */
.tf__single_category.red .tf__single_category_icon {
    background: #41c2fa;
}

.tf__single_category:hover .tf__single_category_icon {
    background: #fff !important;
}

.tf__single_category.red .tf__single_category_text {
    border-color: #41c2fa;
}

.tf__single_category.red:hover .tf__single_category_icon {
    color: #41c2fa;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_category.red:hover .tf__single_category_text:after {
    background: #41c2fa;
}

/************************************** section six Potential section ********************************** */
.about_3 {
    position: relative;
    padding: 80px 0px 50px;
}

.tf__about_2_img {
    position: relative;
}

    .tf__about_2_img .tf__about_small {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        border: 10px solid var(--colorWhite);
        position: absolute;
        top: 0;
        left: 0;
    }

    .tf__about_2_img .tf__about_large img {
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .tf__about_2_img .tf__about_large:after {
        position: absolute;
        content: "";
        background: url(../images/about_2_shape.png);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: contain;
        width: 120px;
        height: 120px;
        top: -30px;
        right: 90px;
        z-index: -1;
        opacity: .3;
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
    }

    .tf__about_2_img p {
        background: var(--primary-color);
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 30px;
        border-radius: 70px;
        position: absolute;
        display: flex;
        align-items: center;
        bottom: -10px;
        left: 50%;
        transform: translatex(-50%);
        width: max-content;
    }

.tf__heading_area_left {
    text-align: left;
}

.tf__heading_area {
    /* text-align: center; */
}

    .tf__heading_area h5 {
        font-size: 17px;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--primary-color);
        position: relative;
        display: inline-block;
    }

    .tf__heading_area h2 {
        font-size: 36px;
        font-weight: 600;
        color: var(--theme-color-dark);
        line-height: 1.2;
    }

.tf__about_2_text ul {
    /* max-width: 60%; */
    list-style: none;
}

    .tf__about_2_text ul li {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-top: 5px;
    }

        .tf__about_2_text ul li .icon {
            width: 60px;
            height: 60px;
            border-radius: 10px;
        }

        .tf__about_2_text ul li .text {
            width: 83%;
        }
            /* .tf__about_2_text ul li .text h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
} */


            .tf__about_2_text ul li .text p {
                margin: 0;
            }

/************************************** section seven Event section  css********************************** */

.event-section {
    position: relative;
    z-index: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 80px;
}

.event-section .event-patan {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.2;
}

.section-title .title {
    font-size: 36px;
    font-weight: 600;
    color: var(--theme-color-dark);
    line-height: 1.2;
    margin-top: -8px;
}

.single-event {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    background-color: white;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    padding: 30px;
    margin-top: 20px;
    transition: .6s;
}

    .single-event:hover {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

    .single-event .event-image {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        .single-event .event-image img {
            border-radius: 50%;
        }

    .single-event .event-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding-left: 30px;
        max-width: 320px;
    }

        .single-event .event-content .date {
            color: #0176d3;
            font-weight: 700;
            font-size: 16px;
        }

        .single-event .event-content h4 {
            font-weight: 500;
            font-size: 18px;
        }

            .single-event .event-content h4 a {
                color: var(--theme-color-dark);
            }

        .single-event .event-content p {
            margin-top: 5px;
        }
/************************************** section Eight institute blog section  css********************************** */
.institute-blog-sec {
    padding: 80px 0px 70px;
    /* background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%); */
}

    .institute-blog-sec .blog-list__item {
        margin-top: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        background-color: #fff;
        transition: all ease .6s;
        box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    }

    .institute-blog-sec .blog-list__item-image img {
        display: block;
        width: 100%;
        border-radius: 8px 0px 0px 8px;
        transition: all 0.6s;
    }

        .institute-blog-sec .blog-list__item-image img:hover {
            transform: scale(1.1);
            transition: all 0.6s;
        }

    .institute-blog-sec .blog-list__item-meta {
        display: flex;
        gap: 1.6rem;
        text-transform: uppercase;
        font-size: 15px;
    }

        .institute-blog-sec .blog-list__item-meta span i {
            color: #0176d3;
            padding-right: 4px;
        }

.blog-list__item-detail {
    padding: 0px 10px 0px 20px;
    width: 55%;
}

.blog-list__item-image {
    width: 45%;
    overflow: hidden;
}

    .blog-list__item-image img {
        height: 300px;
        object-fit: cover;
    }

.blog-list__item-title h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin: 5px 0px;
}

.institute-blog-sec .blog-list__item-content .readmore-link {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

    .institute-blog-sec .blog-list__item-content .readmore-link:after {
        content: '';
        display: block;
        width: 70%;
        border-bottom: 2px solid;
        position: absolute;
        bottom: -2px;
        left: 0;
        transition: all .3s ease;
    }
/**************************** school management About section page css start  *********************************/
/* --------------------------------school-bg-------------------------------------- */
.school-bg {
    padding: 70px 0 80px;
    position: relative;
    z-index: 1;
}

.shape-bottom-center-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    background-image: url(../images/background/5.png);
}

.Learning-Journey {
    padding: 50px 0 50px;
}

.learn-1 {
    padding: 15px;
    border-style: solid;
    border-color: #f5f5f5;
    border-radius: 20px;
    ce-around;
    /* margin-top: 20px; */
    transition: all ease .6s;
    text-align: center;
    height: 100%;
}

    .learn-1:hover {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

.Pause {
    border-left: 3px solid #f14d5d;
    border-right: 3px solid #f14d5d;
}

.Flexible {
    border-left: 3px solid #1dc295;
    border-right: 3px solid #1dc295;
    position: relative;
}

.Offline {
    border-left: 3px solid #6857ff;
    border-right: 3px solid #6857ff;
}

.Support {
    border-left: 3px solid #F5AC00;
    border-right: 3px solid #F5AC00;
}

.finance {
    border-left: 3px solid #ff51e4;
    border-right: 3px solid #ff51e4;
}

.communicate {
    border-left: 3px solid #7dddeb;
    border-right: 3px solid #7dddeb;
}

.icon-boxx {
    transform: rotate(0deg);
    width: 80px;
    line-height: 77px;
    height: 80px;
    background-color: #1dc29542;
    border-radius: 50px 50px 50px 50px;
    text-align: center;
    margin: auto;
}

    .icon-boxx img {
        width: 40px;
        text-align: center;
    }

.icon-box-2 {
    background-color: #6857FF26;
}

.icon-box-3 {
    background-color: #F14D5D26;
}

.icon-box-4 {
    background-color: #F5AC0026;
}

.icon-box-5 {
    background-color: #ff3fdf26;
}

.icon-box-6 {
    background-color: #46e0ed26;
}

.info-box-title {
    margin: 0px 0px 0px 0px;
    padding: 5px 0px 0px 0px;
    color: #120F2D;
    font-size: 19px;
    font-weight: 500;
}

.learn-body p {
    color: #58566B;
    font-size: 16px;
    margin-bottom: 0px;
}

.shape-1 {
    position: absolute;
    left: 0;
    bottom: -42%;
    z-index: 2;
}

.shape-2 {
    position: absolute;
    right: -50px;
    bottom: 0;
}
/******************************** section three About section  start  * ********************************* */
.About-school {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.drem-job {
    position: relative;
    padding-left: 200px;
    padding-bottom: 150px;
}

    .drem-job img {
        width: 100%;
        border-radius: 100%;
    }

.dr-sm-img {
    width: 250px;
    height: 250px;
    position: absolute;
    left: 90px;
    bottom: 100px;
}

    .dr-sm-img img {
        border: 5px solid #fff;
        border-radius: 100%;
        width: 100%;
    }

.job-ct-1 {
    left: 70px;
    top: 0;
}

.job-ct-text h4 {
    color: #fff;
}

.job-item {
    background: #051b46;
    color: #fff;
    display: flex;
    padding: 8px 15px;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    transition: 0.4s;
}

    .job-item .job-ct-icon {
        width: 45px;
        height: 45px;
        text-align: center;
        background: #fcaf3d;
        color: #fff;
        border-radius: 100%;
        line-height: 45px;
        font-size: 20px;
        margin-right: 20px;
    }

.job-ct-3.job-item .t-btn {
    padding: 8px 15px;
    margin-top: 8px;
    background: var(--primary-color);
    color: #fff;
}

.t-btn:hover {
    background: #fcaf3d;
    color: var(--theme-color-dark);
    color: var(--theme-color-dark);
}

.job-ct-2.job-item .job-ct-icon {
    position: absolute;
    left: -20px;
    top: -20px;
}

.job-item .job-ct-icon {
    width: 45px;
    height: 45px;
    text-align: center;
    background: #ffffff;
    color: #0176d3;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    border-radius: 100%;
    line-height: 45px;
    font-size: 20px;
    margin-right: 20px;
}

.job-ct-2 {
    left: -50px;
    top: 44%;
}

.job-item {
    background: #051b46;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    transition: 0.4s;
}

.job-ct-text p {
    margin-bottom: 0px;
}

.media h4 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--theme-color-dark);
    margin-left: 10px;
}

.single-job {
    display: grid;
    grid-template-columns: 1fr;
}

.job-icon {
    height: 50px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 10px;
    /* box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B; */
    display: flex;
    align-items: center;
}

    .job-icon img {
        width: 45px;
    }

/******************************** section four strenth number section  start  * ********************************* */

.process {
    padding: 70px 0px 50px;
    text-align: center;
}

.process-1 {
    padding: 30px 20px 28px 20px;
    background-color: #FFF;
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: #FFFFFF;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0px 0px 10px -5px rgb(29 194 149);
    margin-top: 20px;
}

    .process-1 img {
        width: 100px;
    }

.color-1 {
    color: #6857ff !important;
}

.color-2 {
    color: #f14d5d !important;
}

.color-3 {
    color: #F5AC00 !important;
}

.process-1 h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 9px;
    color: #1DC295
}

.process-1 h3 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    display: block;
    color: var(--theme-color-dark);
}

.process #counter {
    display: block;
    transition: .6s;
}

    .process #counter:hover {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

.our-site {
    background-color: var(--tp-theme-1);
    position: relative;
}

.pb-110 {
    padding-bottom: 110px;
}

.pt-110 {
    padding-top: 110px;
}
/******************************** section five  welcome to our school section  start  * ********************************* */

/******************************** section six  course category section  start  * ********************************* */
.category {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .category .category-block {
        border-radius: 15px;
        transition: .6s;
        padding: 30px 20px;
        background: #fff;
        box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
        height: 100%;
    }

        .category .category-block .category-heading {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

            .category .category-block .category-heading .heading-icon {
                padding: 16px 0;
                text-align: center;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50px;
                margin-right: 10px;
                min-width: 70px;
                height: 70px;
                background: #0c5adb;
                border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
            }

                .category .category-block .category-heading .heading-icon img {
                    width: 40px;
                }

    .category a:hover .category-block {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

    .category .category-block .category-heading h5 {
        color: #000000;
        margin: 0;
        font-weight: 500;
        font-size: 18px;
    }

    .category .category-block p {
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        margin: 0;
    }

.heading {
    margin-bottom: 32px;
    text-align: center;
}
/******************************** section seven  our best teacher section  start  * ********************************* */
.team-member {
    padding: 70px 0px 50px;
    background-color: #fff;
}

.profile-card {
    position: relative;
    width: 220px;
    height: 260px;
    /* overflow: hidden; */
    background: #fff;
    padding: 15px 15px 30px 15px;
    border-radius: 8%;
    box-shadow: 0 0 4px #0176d4;
    transition: .6s;
    margin: auto;
    margin-top: 30px;
}

    .profile-card:hover {
        border-radius: 10px;
        height: 260px;
        /* overflow: hidden; */
        position: relative;
    }

        .profile-card:hover h4 {
            opacity: 0;
        }

    .profile-card h4 {
        padding-top: 9px;
        font-size: 22px;
        text-align: center;
    }

    .profile-card .img {
        position: relative;
        width: 100%;
        height: 100%;
        transition: .6s;
        z-index: 99;
    }

    .profile-card:hover .img {
        transform: translateY(-60px);
    }

.img img {
    width: 100%;
    border-radius: 8%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
}

.profile-card:hover img {
    border-radius: 10px;
}

.caption {
    text-align: center;
    transform: translateY(-80px);
    opacity: 0;
    transition: .6s;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
}

.caption p {
    font-size: 15px;
    color: #0c52a1;
    margin: 2px 0 9px 0;
}

.caption .social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    color: #0c52a1;
}
/******************************** section eight  addmission date section  start  * ********************************* */
.school-blog-sec {
    padding: 50px 0px 70px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .school-blog-sec .single-blog {
        margin-top: 20px;
    }

        .school-blog-sec .single-blog .blog-image {
            position: relative;
            overflow: hidden;
            border-radius: 9px;
        }

            .school-blog-sec .single-blog .blog-image a img {
                transition: all 0.3s linear;
            }

.single-blog:hover .blog-image a img {
    transform: scale(1.1);
}

.single-blog .blog-image a img {
    transition: all 0.3s linear;
}

.school-blog-sec .single-blog .blog-image .top-meta {
    position: absolute;
    top: 35px;
    left: 20px;
}

    .school-blog-sec .single-blog .blog-image .top-meta .date {
        width: 65px;
        height: 65px;
        line-height: 65px;
        text-align: center;
        background: var(--primary-color);
        color: #fff;
        font-size: 14px;
        line-height: 18px;
        border-radius: 5px;
        display: inline-block;
        text-align: center;
        line-height: 12px;
        padding: 10px;
    }

        .school-blog-sec .single-blog .blog-image .top-meta .date span {
            font-size: 28px;
            line-height: 18px;
            font-weight: 500;
            line-height: 30px;
            display: block;
        }

.school-blog-sec .single-blog .blog-content {
    padding: 25px 30px 30px;
    background: #ffffff;
    width: 90%;
    position: relative;
    border-radius: 8px;
    left: 49%;
    bottom: 10px;
    transform: translateX(-48%);
    margin-top: -40px;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .school-blog-sec .single-blog .blog-content .blog-meta span {
        font-size: 13px;
        line-height: 24px;
        font-weight: 500;
        color: #999999;
        margin-right: 15px;
    }

        .school-blog-sec .single-blog .blog-content .blog-meta span i {
            color: #086ad8;
            margin-right: 8px;
            font-weight: 600;
        }

    .school-blog-sec .single-blog .blog-content .title {
        font-size: 22px;
        line-height: 30px;
        font-weight: 600;
        color: #0e0e0e;
        margin-top: 15px;
    }

.school-blog-sec .single-blog .blog-btn .blog-btn-link {
    font-size: 12px;
    font-weight: 600;
    color: #086ad8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
    transition: all 0.3s linear;
}

/**************************** collage management About section page css start  *********************************/
.collage-bg {
    background-image: url(../images/background/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: var(--secondary-color); */
    background-size: cover;
    place-content: center;
    position: relative;
    padding: 100px 0;
    height: auto;
    z-index: 1;
}
    /* .collage-bg  h1{
    font-size: 40px;
} */
    .collage-bg .shape-bottom-center {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
        z-index: -1;
        background-image: url(../images/background/5.png);
    }


.user-links li a i {
    color: var(--primary-color);
}
/******************************** section two free support section  start  * ********************************* */
.free-support {
    padding: 50px 0px 70px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.feature__card {
    position: relative;
    transition: all ease .6s;
}

    .feature__card:hover {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

    .feature__card .feature__icon {
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fefcfb;
        border-radius: 50%;
        width: fit-content;
        padding: 20px;
        border: 5px solid rgb(15 114 207);
        margin: 0 auto;
        box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
        transition: all 0.5s ease;
        animation-name: spin;
        animation-duration: 5000ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature__icon img {
    width: 50px;
}

.feature__card .feature__content {
    position: relative;
    z-index: 5;
    margin-top: -50px;
    text-align: center;
    padding: 74px 16px 50px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .feature__card .feature__content .feature-bg-shape {
        position: absolute;
        width: 100%;
        /* height: 64px; */
        bottom: 0;
        right: 0;
        left: 0px;
        border-radius: 0 0 15px 15px;
    }

/******************************** section three About Collage section  start  * ********************************* */

.Collage-About {
    padding: 70px 0px 50px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .Collage-About .about__card {
        position: relative;
    }

        .Collage-About .about__card .about__card__icon {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            z-index: 10;
            background-color: #fefcfb;
            border-radius: 50%;
            border: 3px solid rgb(1 118 211);
            box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
            display: grid;
            align-content: center;
            justify-content: center;
            height: 80px;
            margin: auto;
            width: 80px;
        }

        .Collage-About .about__card .about__card__icon-left {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            z-index: 10;
            background-color: #fefcfb;
            border-radius: 50%;
            border: 3px solid rgb(1 118 211);
            box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
            display: grid;
            align-content: center;
            justify-content: center;
            height: 80px;
            width: 80px;
            margin: auto;
        }

        .Collage-About .about__card .about__card__icon img {
            width: 35px;
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
        }

        .Collage-About .about__card .about__card__icon-left img {
            width: 35px;
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
        }

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

.educate-tilt img {
    border-radius: 50%;
    border: 8px solid #0176d3;
    padding: 15px;
    61 box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.Collage-About .about__card .about__card__content {
    position: relative;
    z-index: 5;
    margin-left: 40px;
    margin-bottom: 45px;
    padding: 12px 15px 12px 50px;
    background-color: #fff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    border-radius: 15px;
}

.Collage-About .about__card .about__card__content-left {
    position: relative;
    z-index: 5;
    margin-right: 40px;
    margin-bottom: 45px;
    padding: 12px 50px 12px 15px;
    background-color: #fff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    border-radius: 15px;
}

    .Collage-About .about__card .about__card__content-left h4 {
        text-align: right;
        font-size: 18px;
    }

.Collage-About .about__card .about__card__content h4 {
    font-size: 18px;
}

.Collage-About .about__card .about__card__content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
/******************************** section five categorie-section  start  * ********************************* */
.categorie-section {
    padding: 50px 0px 70px;
    /* background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%); */
    position: relative;
    z-index: 0;
}

.single-categorie-box {
    background: #fff;
    border-radius: 8px;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    transition: all ease .6s;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .single-categorie-box:hover {
        transform: translateY(-8px);
        transition: all ease .6s;
    }

    .single-categorie-box:before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 0;
        height: 5px;
        background: #0176d3;
        border-radius: 0 0 5px 5px;
        transition: all ease .6s;
    }

    .single-categorie-box:hover:before {
        width: 100%;
        border-radius: 0 0 5px 5px;
    }

.categorie-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    border-radius: 5px;
}

.single-categorie-box:hover .categorie-img img {
    transform: scale(1.1);
    transition: .5s;
    border-radius: 5px;
}

.categorie-img img {
    transition: .5s;
    width: 100%;
}

.categorie-content {
    padding: 15px 15px 15px 15px;
}

    .categorie-content h4 {
        font-size: 18px;
        color: #232323;
        font-weight: 500;
        transition: .5s;
    }

    .categorie-content p {
        font-size: 16px;
        line-height: 26px;
        color: #555555;
        font-weight: 400;
        width: 100%;
        margin: 0px 0 10px;
    }

p.up {
    padding-right: 80px;
}

.Courses p {
    font-size: 15px;
    color: #232323;
    font-weight: 400;
    display: inline;
}


/******************************** section six Upcoming Events section  start   * ********************************* */

.events_area {
    padding: 70px 0px 50px;
    background: #fff;
}

.single_event {
    position: relative;
    margin-top: 20px;
}

    .single_event .event_thumb {
        overflow: hidden;
    }

        .single_event .event_thumb img {
            -webkit-transition: all 0.3s ease 0s;
            -moz-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

    .single_event:hover img {
        transform: scale(1.1);
    }

    .single_event .event_details {
        background: rgb(1 118 211 / 73%);
        position: absolute;
        top: 0px;
        right: 0px;
        width: 275px;
        padding: 30px 25px;
        color: #ffffff;
    }

        .single_event .event_details .date span {
            display: block;
            color: #fdc632;
            font-size: 28px;
            font-weight: 600;
        }

.primary-btn {
    display: inline-block;
    background: #fdc632;
    padding: 0px 20px;
    color: #002347;
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
    border-radius: 5px;
    outline: none !important;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single_event .event_details .time-location {
    padding-left: 15px;
    font-size: 14px;
}

    .single_event .event_details .time-location p {
        margin-bottom: 0px;
    }

        .single_event .event_details .time-location p span {
            color: #ffffff;
            font-size: 13px;
            font-weight: 500;
        }

.single_event .event_details .date {
    color: #ffffff;
    padding-right: 15px;
    border-right: 2px solid #fff;
    font-size: 16px;
    font-weight: 500;
}

/* /******************************** section Seven choose-us-section  start   --------------&gt; */

.choose-us-section {
    padding: 50px 0px 70px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    z-index: 0;
    position: relative;
}

    .choose-us-section .section-title.up {
        margin-bottom: 57px;
    }

.down {
    margin-top: -50px;
}

.single-choose-us-box {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    padding: 30px 0 10px 15px;
    margin-bottom: 30px;
    transition: all ease .6s;
    height: 385px;
}

    .single-choose-us-box:before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #0176d3;
        border-radius: 5px;
        transition: .5s;
        z-index: -1;
        transform: scale(0);
    }

.choose-us-icon {
    position: relative;
    z-index: 0;
    margin-left: 20px;
}

.single-choose-us-box:hover:before {
    transform: scale(1);
}

.choose-us-icon:before {
    position: absolute;
    content: "";
    left: -20px;
    top: 0;
    opacity: 0.129;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0176d3;
    transition: .5s;
}

.choose-us-icon img {
    transition: .5s;
}

.choose-us-title {
    position: absolute;
    top: -23px;
    right: 25px;
}

    .choose-us-title h1 {
        -webkit-text-stroke-width: 2px;
        color: transparent;
        -webkit-text-stroke-color: #f1f1f1;
        font-size: 50px;
        font-weight: 500;
        transition: .5s;
    }

.choose-us-content h4 {
    font-size: 18px;
    color: #232323;
    font-weight: 500;
    transition: .5s;
    padding: 10px 0 0px;
}

.choose-us-content p {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    font-weight: 400;
    width: 84%;
    transition: .5s;
}

.single-choose-us-box.upper {
    margin-top: 52px;
}

.single-choose-us-box:hover .choose-us-content h4 {
    color: #fffffe;
}

.single-choose-us-box:hover .choose-us-content p {
    color: #fffffe;
}

.single-choose-us-box .choose-us-icon img {
    width: 50px;
}

.single-choose-us-box:hover .choose-us-icon img {
    filter: brightness(0) invert(1);
}

.choose-us-section .choose-us-thumb {
    /* overflow: hidden; */
}

.choose-us-section :hover .choose-us-thumb img {
}

.choose-us-section .choose-us-thumb img {
    /* width: 100%; */
    /* height: 620px; */
    /* object-fit: cover; */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* /******************************** section Seven Blog Section-start  start   --------------&gt; */
.blog-section {
    padding: 60px 0px 70px;
}

.single-blog-box {
    border-radius: 15px;
    background-color: #ffffff;
    border: 1px solid rgba(85,85,85,0.15);
    padding: 20px 20px 20px;
    margin-top: 20px;
    transition: all ease .6s;
    box-shadow: -3px -1px 28px rgba(64, 50, 11, 0.01), -1px 1px 23px rgba(64, 50, 11, 0.05), 6px 2px 17px rgba(64, 50, 11, 0.09), 4px 2px 5px rgba(64, 50, 11, 0.1), 0 0 0px #40320B;
    height: 432px;
    position: relative;
}

.blog-thumb {
    position: relative;
    /* z-index: 1; */
    transition: .5s;
}

.single-blog-box:hover .blog-thumb:before {
    width: 100%;
    left: 0;
    opacity: 0.300;
}

.single-blog-box:hover .blog-content a {
    color: #0176d3;
}

.blog-thumb:before {
    position: absolute;
    content: "";
    right: 0;
    height: 100%;
    width: 0;
    background: #0176d3;
    transition: 0.5s;
    border-radius: 30px;
    opacity: 0.1;
}

.blog-thumb img {
    width: 100%;
    border-radius: 30px 0px 30px 0px;
    border: 3px solid #0176d3;
}

.blog-content {
    /* padding-left: 10px; */
}

.blog-meta-left {
    padding: 14px 0 5px;
}

    .blog-meta-left p {
        font-size: 16px;
        color: #555555;
        display: inline-flex;
        align-items: center;
    }

.blog-content a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    display: inline-block;
    color: #100c0b;
    transition: .5s;
}

.blog-desc p {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    width: 100%;
    margin: 6px 0 6px;
}

.blog-button a {
    display: inline-block;
    font-size: 16px !important;
    color: #0176d3;
    font-weight: 600;
    transition: .5s;
    padding: 0px;
    border-radius: 100%;
    line-height: normal;
    height: auto;
    position: relative;
    box-shadow: 0 0 7px -3px #000;
}

.blog-meta-left p i {
    color: #0176d3;
    padding-right: 5px;
}

p.blog {
    padding-left: 25px;
}

.single-blog-box .blog-thumb {
    overflow: hidden;
}

.single-blog-box:hover img {
    transform: scale(1.1);
}

.single-blog-box .blog-thumb img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


/* online assigment help section css start  */

/* /******************************** section o Search-categories  Section-start  ------------------------------&gt; */

.online-assigment-help {
    background-image: url(../images/background/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: var(--secondary-color); */
    background-size: cover;
    place-content: center;
    position: relative;
    padding: 100px 0 100px;
    height: auto;
    z-index: 1;
}

.bg-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

/* /******************************** section two Search-categories  Section-start  ------------------------------&gt; */
.Search-categories {
    padding: 50px 0px 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.Search-categories-box {
    margin-top: 25px;
    transition: .5s;
    position: relative;
}

    .Search-categories-box:hover::before {
        border: 2px solid var(--primary-color);
        background-color: var(--primary-color);
    }

    .Search-categories-box::before {
        position: absolute;
        content: "";
        right: -8px;
        bottom: -8px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary-color);
        transition: .5s;
    }

    .Search-categories-box .content {
        position: relative;
        background-color: #fff;
        padding: 30px 25px 30px 85px;
        border: 1px solid #d1cdcd69;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

        .Search-categories-box .content .image-icon {
            position: absolute;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

            .Search-categories-box .content .image-icon img {
                max-width: 50px;
            }

        .Search-categories-box .content h4 {
            margin-bottom: 0;
            font-size: 22px;
            transition: .5s;
            font-weight: 500;
        }

            .Search-categories-box .content h4 a {
                color: var(--theme-color-dark);
            }
/* /******************************** section three About-assiginment  Section-start  ------------------------------&gt; */
.About-assiginment {
    padding: 70px 0px 50px;
    position: relative;
    z-index: 0;
}

.main-banner-image {
    z-index: 1;
    position: relative;
    text-align: center;
    margin-bottom: -25px;
}

    .main-banner-image::before {
        background-image: url(https://themes.envytheme.com/ellen/wp-content/uploads/2021/11/dot-shape2.png);
    }

    .main-banner-image::before {
        width: 370px;
        height: 220px;
    }

    .main-banner-image::before {
        top: 6%;
        left: -60px;
        z-index: -1;
        content: "";
        width: 300px;
        height: 233px;
        position: absolute;
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

s

.main-banner-image::after {
    right: -30px;
    bottom: 0;
}

.main-banner-image::after {
    z-index: -1;
    content: "";
    right: -45px;
    width: 231px;
    bottom: -10px;
    height: 212px;
    position: absolute;
    animation: movebounce 5s linear infinite;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner-image .col-lg-6:nth-child(1) .image::before {
    background-image: url(https://themes.envytheme.com/ellen/wp-content/uploads/2021/11/dot-shape2.png);
}

.main-banner-image .col-lg-6:nth-child(1) .image::before {
    width: 370px;
    height: 220px;
}

.main-banner-image .col-lg-6:nth-child(1) .image::before {
    left: 270px;
    bottom: -30%;
    z-index: -1;
    content: "";
    width: 308px;
    height: 233px;
    position: absolute;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner-image .image img {
    border-radius: 0 0 0 110px !important;
}

.main-banner-image .col-lg-6:nth-child(2) .image {
    border-radius: 110px 0 0 0;
}

.main-banner-image .image {
    z-index: 1;
    position: relative;
    margin-bottom: 25px;
    border-radius: 0 0 0 110px;
}

.main-banner-image .col-lg-6:nth-child(2) .image img {
    border-radius: 110px 0 0 0 !important;
}

.main-banner-image .col-lg-6:nth-child(2) .image:nth-child(2) img {
    border-radius: 0 110px 0 0 !important;
}

.About-assiginment-ul ul li {
    color: #1A064E;
    margin-bottom: 10px;
    display: flex;
}

    .About-assiginment-ul ul li i {
        color: #0176d3;
        margin-right: 10px;
        font-size: 20px;
        margin-top: 6px;
    }

.About-assiginment-left {
    padding-left: 30px;
}
/* /******************************** section four About-assiginment  Section-start  ------------------------------&gt; */
.our-services {
    padding: 50PX 0PX 80PX;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    z-index: 0;
    position: relative;
}

.boxx-1 {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    position: relative;
    background-color: #fff;
    cursor: pointer;
    transition: all ease .4s;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .boxx-1:hover {
        transform: translateY(-8px);
        transition: all ease .4s;
        color: #fff;
    }

    .boxx-1 img {
        width: 50px;
    }

    .boxx-1:hover img {
        filter: brightness(0) invert(1);
        transition: all ease .4s;
    }

    .boxx-1:hover h4 {
        color: #fff;
        transition: all ease .4s;
    }

    .boxx-1:before {
        content: '';
        background-color: var(--primary-color);
        position: absolute;
        top: -2px;
        bottom: -2px;
        right: -2px;
        left: -2px;
        z-index: -1;
        transition: all ease .6s;
        transform: skew(2deg, 3deg);
    }

.sub-title {
    font-size: 70px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    transition: 0.3s all linear;
}

.boxx-1 .title {
    text-transform: capitalize;
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 10px;
}

.btn {
    transform: translateY(-50px);
    visibility: hidden;
    transition: 0.3s all linear;
    opacity: 0;
}

.boxx-1:hover .btn {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.boxx-1:hover .sub-title {
    top: 80px;
}

/* /******************************** section five what we offer  Section-start  ------------------------------&gt; */

.What-we-offer {
    padding: 75px 0px 50px;
    position: relative;
    z-index: 0;
}

.service-history-wrap {
    padding: 0px 50px 50px 0px;
    position: relative;
}

    .service-history-wrap .service-history-box {
        overflow: hidden;
        position: relative;
        border-radius: 20px;
    }

        .service-history-wrap .service-history-box img {
            position: relative;
            z-index: 1;
            -webkit-transition: all .6s ease;
            transition: all .6s ease;
            -webkit-filter: grayscale(20%);
            filter: grayscale(20%);
        }

        .service-history-wrap .service-history-box:hover img {
            -webkit-filter: grayscale(0);
            filter: grayscale(0);
            -webkit-transform: scale(1.03);
            transform: scale(1.03);
        }

    .service-history-wrap p {
        position: absolute;
        display: inline-block;
        border: 5px solid #186db1;
        height: 73%;
        width: 92%;
        right: 0;
        bottom: 0;
        border-radius: 20px;
    }

        .service-history-wrap p span {
            width: 170px;
            height: 170px;
            right: 0;
            top: 0;
            -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
            background: var(--primary-color);
            position: absolute;
            z-index: 2;
            border-radius: 50%;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
            font-weight: 700;
            font-size: 18px;
            color: #fff;
        }

            .service-history-wrap p span::before {
                position: absolute;
                content: "";
                border: 2px dashed #fff;
                width: 142px;
                height: 142px;
                border-radius: 50%;
                transition: all 0.5s ease;
                animation-name: spin;
                animation-duration: 5000ms;
                animation-iteration-count: infinite;
                animation-timing-function: linear;
            }

    .service-history-wrap .service-history-box::before {
        background: rgba(255, 255, 255, 0.3);
        content: "";
        top: 0;
        left: 0;
        height: 100%;
        position: absolute;
        -webkit-transition: all .8s ease-in-out;
        transition: all .8s ease-in-out;
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
        width: 100%;
        z-index: 2;
        opacity: 0;
    }

    .service-history-wrap .service-history-box:hover::before {
        opacity: 1;
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    }

.single-we-are-box {
    margin-bottom: 29px;
}

.we-are-content span {
    font-size: 23px;
    color: #ffffff;
    font-weight: 600;
    background: var(--primary-color);
    display: inline-block;
    height: 55px;
    line-height: 55px;
    width: 55px;
    border-radius: 27px;
    text-align: center;
    margin: 0px 10px 0 0;
    transition: .5s;
}

.we-are-content {
    display: flex;
}

    .we-are-content h4 {
        font-size: 22px;
        color: #232323;
        font-weight: 500;
    }

    .we-are-content p {
        margin-bottom: 0px;
    }
/* /******************************** section six event-section-list  Section-start  ------------------------------&gt; */

.event-section-list {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    position: relative;
    z-index: 0;
}

    .event-section-list .upper {
        background: #ffff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 22px;
        transition: all ease .6s;
        box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    }

        .event-section-list .upper:hover {
            transform: translateY(-8px);
            transition: all ease .6s;
        }

        .event-section-list .upper .event-thumb img {
            border-radius: 10px;
        }

        .event-section-list .upper .event-content h4 {
            margin: 0 0 10px;
            font-size: 20px;
        }

        .event-section-list .upper .event-content ul {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-left: -13px;
        }

            .event-section-list .upper .event-content ul li img {
                width: 17px;
            }

.event-button-list a {
    display: inline-block;
    background: #0176d3;
    font-size: 16px;
    color: #fefefe;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

/* /******************************** section Seven online Assigment help Blog  start  ---------------------------&gt; */
.tf__blog_2 {
    padding: 75px 0px 70px;
}

.tf__single_blog {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .tf__single_blog .category.light_blue {
        background: #8e56ff;
    }

.tf__single_blog_text .category {
    padding: 8px 20px !important;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 5px;
}

.tf__single_blog_text .title, .tf__single_blog_text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tf__single_blog_img {
    display: block;
    overflow: hidden;
}

.tf__single_blog:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tf__single_blog_img img {
    transition: all .3s linear;
}

.tf__single_blog_text .title {
    font-size: 22px;
    font-weight: 500;
    color: var(--theme-color-dark);
    margin-top: 10px;
    margin-bottom: 0px;
}

.tf__single_blog_text {
    padding: 20px 20px 20px;
}


.tf__single_blog_2_img {
    width: 50%;
    overflow: hidden;
    display: flex;
}

    .tf__single_blog_2_img img {
        overflow: hidden;
        object-fit: cover;
    }

.tf__single_blog_2 {
    padding: 9px;
    border: 1px solid #ddd;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.tf__single_blog_text_2 {
    width: 50%;
    padding: 15px 15px 15px 25px;
}

.tf__single_blog_2:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tf__single_blog_2_img img {
    transition: all .3s linear;
}

.tf__single_blog_text_2 .category {
    padding: 8px 20px !important;
    background: #0176d3;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all .3s linear;
}

.tf__single_blog_text_2 .read_btn:hover, .tf__single_blog_text_2 .title:hover {
    color: var(--colorBlue);
}

.tf__single_blog_text_2 .title, .tf__single_blog_text_2 p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tf__single_blog_text_2 .title {
    font-size: 22px;
    font-weight: 500;
    color: var(--theme-color-dark);
    margin-top: 10px;
    margin-bottom: 0px;
}


/* blog icon social media css */

.middle-1 {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-2 {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    margin-right: 3px;
    text-align: center;
    border-radius: 30%;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
    background-color: #fff;
    color: #3498db;
    overflow: hidden;
    position: relative;
}

    .btn-2 i {
        line-height: 40px;
        font-size: 16px;
        transition: .3s linear;
        color: #0176d3;
    }

    .btn-2:hover {
        background: #0176d3;
    }

        .btn-2:hover i {
            transform: scale(1.3);
            color: #ffffff;
        }

        .btn-2:hover span {
            color: #f1f1f1;
        }

    .btn-2::before {
        content: '';
        position: absolute;
        z-index: -1;
        height: 400%;
        width: 400%;
        background: #3498db;
        transform: rotate(45deg);
        right: -230%;
        top: 90%;
    }

    .btn-2:hover::before {
        animation: aaa 0.7s 1;
        top: -86%;
        left: -10%;
    }

@keyframes aaa {

    0% {
        top: -110%;
        left: 90%;
    }

    50% {
        top: 10%;
        left: -30%;
    }

    100% {
        top: -110%;
        left: 90%;
    }
}

/****************************************** team__area section start  *******************************************/
.team__area-sec {
    padding: 50px 0px 70px;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .team__area-sec .team__area-item-image {
        position: relative;
        z-index: 1;
        margin-top: 20px;
    }

.Team-banner {
    font-size: 20px;
    letter-spacing: 2px;
}

.team__area-item:hover .team__area-item-image::before {
    height: 100%;
    opacity: 0.7;
    z-index: 1;
}

.team__area-sec .team__area-item-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    top: 0;
    left: 0;
    background: rgb(1 118 211 / 79%);
    opacity: 0;
    transition: 0.4s;
    border-radius: 25px 0px 25px 0px;
}

.team__area-sec .team__area-item-image img {
    width: 100%;
    border-radius: 25px 0px 25px 0px;
    border: 5px solid #0176d3;
    transition: all 0.6s;
}

    .team__area-sec .team__area-item-image img:hover {
        transform: scale(1.1);
    }

/* .school-blog-sec .single-blog .blog-image a img {
    transition: all 0.3s linear;
} */
.team__area-sec .team__area-item-image-icon {
    position: absolute;
    bottom: 63px;
    right: 30px;
    z-index: 1;
    display: none;
}

.team__area-item-image-icon:hover .team__area-item-image-social {
    opacity: 1;
    visibility: visible;
}

.team__area-sec .team__area-item-image-icon .team__area-item-image-social {
    position: absolute;
    bottom: 50px;
}

.team__area-sec .team__area-item-image-social {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.team__area-sec .team__area-item-image-icon.page span {
    background-color: var(--primary-color);
}

.team__area-sec .team__area-item-image-icon span {
    color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: 0.4s;
    cursor: pointer;
    border: 2px solid #fff
}

.team__area-sec .team__area-item-image-icon i {
    font-size: 17px;
}

.team__area-sec .team__area-item-content {
    padding: 22px;
    margin: 0 50px;
    margin-top: -50px;
    background: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 10px;
    border-bottom: 5px solid #0176d3;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

.team__area-item-content h5 {
}

.team__area-sec .team__area-item-content .text-eight {
    font-weight: 600;
}

.team__area-sec .text-eight {
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
}

/*********************************** section two  join with our team section start  ************************************************/
.join-with-team {
    padding: 70px 0px 50px;
}

.about__three-title-faq {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.about__three-title-faq-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

    .about__three-title-faq-icon img {
        width: 40px;
    }

.text-one {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--theme-color-dark);
}

.about__three-title-faq-text h6 a {
    margin-left: 15px;
}

.about__one-left {
    position: relative;
}

.about__one-left-image {
    display: flex;
    align-items: start;
    gap: 20px;
}

    .about__one-left-image img {
        width: 100%;
    }

    .about__one-left-image .one {
        max-width: 43%;
        height: 256px;
        object-fit: cover;
    }

    .about__one-left-image .two {
        overflow: hidden;
    }

.about__one-left-experience {
    position: absolute;
    text-align: center;
    left: 64px;
    bottom: 0;
    background: var(--primary-color);
    width: 190px;
    height: 180px;
    padding: 30px 20px;
}

    .about__one-left-experience h1 {
        color: #fff;
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .about__one-left-experience h6 {
        color: #fff;
        font-size: 18px;
        line-height: 28px;
    }
/********************************* section two  join with our team section start  **********************************/
.persnal-skill {
    padding: 50px 0px 70px;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.team__details-experience h3 {
    margin-bottom: 10px;
}

.team__details-experience-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.team__details-experience-area-item {
    padding: 35px 30px 20px 30px;
    border-bottom: 2px solid #0176d3;
    border-right: 2px solid #0176d3;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 5px;
    border-radius: 0px 30px 0px 30px;
    background-color: #fff;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .team__details-experience-area-item h6 {
        position: absolute;
        top: -15px;
        left: -15px;
        background: var(--primary-color);
        color: #fff;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        border-radius: 50%;
        font-weight: 500;
        padding: 6px 0 0 12px;
    }

    .team__details-experience-area-item h4 {
        font-size: 20px;
        font-weight: 400 !important;
    }

    .team__details-experience-area-item p {
        font-size: 16px;
        font-weight: 600;
    }

        .team__details-experience-area-item p span {
            color: var(--primary-color);
        }

.ml-20 {
    margin-left: 20px;
}

.team__details-skills h3 {
    margin-bottom: 10px;
}


.team__details-skills-item-content {
    position: relative;
}

    .team__details-skills-item-content h6 {
        font-size: 18px;
        line-height: 28px;
    }

.team__details-skills-item-count {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 500;
}

.text-two {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000;
}

.team__details-skills-item-inner {
    width: 100%;
    height: 10px;
    position: relative;
    background: #e9e9e8;
    -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
    margin-top: 11px;
}

.team__details-skills-item-bar {
    height: 10px;
    position: absolute;
    width: 0;
    top: 0;
    left: 0;
    background: var(--primary-color);
    transition: all 3.5s ease-out 0s;
    -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}

.mt-25 {
    margin-top: 27px;
}

.mt-30 {
    margin-top: -30px;
}

/* gjhvfjb   **********************************/

.features .ltb-radius {
    border-radius: 6px 0 0 6px;
}

.features-area-item:hover {
    background: var(--primary-color);
}

.features-area-item {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    padding: 25px 25px 10px 25px;
    transition: 0.4s;
    background: #fff;
    border-radius: 8px;
    border: var(--primary-color) 1px solid;
    box-shadow: 61px 32px 28px rgba(64, 50, 11, 0.01), 35px 18px 23px rgba(64, 50, 11, 0.05), 15px 8px 17px rgba(64, 50, 11, 0.09), 4px 2px 10px rgba(64, 50, 11, 0.1), 0px 0px 0px #40320B;
}

    .features-area-item span {
        position: absolute;
        right: -60px;
        top: -60px;
    }

    .features-area-item:hover.features-area-item span i {
        color: #fff;
    }

    .features-area-item span i {
        font-size: 25px;
        color: var(--primary-color);
        position: relative;
        width: 137px;
        height: 137px;
        line-height: 137px;
        text-align: center;
        transition: 0.4s;
    }

        .features-area-item span i::before {
            position: relative;
            top: 24px;
            right: 20px;
        }

        .features-area-item span i::after {
            position: absolute;
            content: "";
            right: 0;
            top: 0;
            width: 137px;
            height: 137px;
            opacity: 0.1;
            background: var(--primary-color);
            border-radius: 50%;
            transition: 0.4s;
        }

    .features-area-item h4 {
        margin-bottom: 10px;
        transition: 0.4s;
    }

    .features-area-item:hover p {
        color: #fff;
    }

    .features-area-item:hover h4 {
        color: #fff;
    }

    .features-area-item p {
        max-width: 270px;
        transition: 0.4s;
    }

.features {
    margin-top: 0px;
    position: relative;
    z-index: 1;
}
/********************************* section two  team-details-1 section start  **********************************/
.team__details-1 {
    padding: 70px 0px 70px;
}

.team__details-content &gt; span {
    font-weight: 600;
    color: var(--primary-color);
}

.team__details-content p {
    margin-bottom: 25px;
}

.team__details-content-contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.team__details-content-contact-item-info a {
    color: var(--theme-color-dark);
    font-weight: 400;
}

.team__details-content-contact-item-info span {
    font-weight: 500;
    font-size: 18px;
}

.dark__image img {
    border: 5px solid #0176d3;
    padding: 10px;
    border-radius: 50px 0px 50px 0px;
}

.team__details-content-contact-item img {
    width: 40px;
}

.team__details-content h2 {
    margin-bottom: 20px;
}

/********************************* section two  404 section start  **********************************/
.MAIN-404 {
    /* background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%); */
    padding: 40px 0px 70px;
}

.error-content {
    text-align: center;
}

    .error-content .notfound-404 {
        position: relative;
        height: 300px;
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
    }

        .error-content .notfound-404 h1 {
            font-size: 230px;
            font-weight: 900;
            margin: 0;
            position: absolute;
            height: 100%;
            width: 100%;
            left: 50%;
            transform: translateX(-50%);
            color: var(--primary-color);
            background-image: url(../images/team/oops-bg.jpg);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: cover;
            background-position: 50%;
        }

    .error-content h3 {
        font-weight: 600;
        font-size: 25px;
        margin-bottom: 15px;
    }

    .error-content p {
        max-width: 550px;
        margin: 0 auto 25px;
    }

.user-w {
    width: 17px;
    transition: all .3s linear;
    margin-right: 5px;
}

.calender-w {
    width: 16px;
    margin-right: 7px;
    transition: all .3s linear;
}

.blog-meta img {
    width: 15px;
}

.box {
    position: relative;
    transition: 0.5s;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 40px;
    inset 0 0 14px -9px color: black;
    background-image: url(../images/demo-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 4px 70px rgb(69 105 231 / 9%);
}

    .box:before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        /* background: linear-gradient(0deg, #007ad3, #ffffff 90%); */
        z-index: -1;
        border-radius: 10px;
    }

    .box .box-1 {
        position: relative;
        padding-top: 5px;
    }

        .box .box-1 .img-box {
            position: absolute;
            right: 20px;
            bottom: 10px;
            width: 80px;
            height: 80px;
            margin: auto;
            background: #ffffff;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            box-shadow: inset 0px 0px 0px 2px #1e67bc;
            backdrop-filter: blur(8px);
        }

        .box .box-1 img {
        }

        .box .box-1 h4 {
            /* background: #1c62b3; */
            text-align: center;
            color: #1c62b3;
            border-bottom: 1px solid #80808024;
            width: 90%;
            margin: auto;
        }

        .box .box-1 .box-content {
            padding: 15px;
            position: relative;
        }

        .box .box-1 .box-content-child {
            margin-bottom: 10px;
            border-radius: 5px;
            padding: 0 15px 2px 55px;
            position: relative;
            overflow: hidden;
        }

            .box .box-1 .box-content-child img {
                width: 40px;
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                margin: auto;
            }


            .box .box-1 .box-content-child:last-child {
                margin-bottom: 0px;
            }

            .box .box-1 .box-content-child p {
                margin-bottom: 0;
            }

            .box .box-1 .box-content-child a {
                color: #878f95;
                padding-bottom: 2px;
            }

            .box .box-1 .box-content-child span {
                color: #878f95;
            }

            .box .box-1 .box-content-child .copy-link i {
                /* top: -6px !important; */
            }

            .box .box-1 .box-content-child .info-link i, .after_submit i {
                color: #0078d3;
                margin-left: 5px;
                font-size: 14px;
                cursor: pointer;
            }


.demo-heading {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.copy-link {
    margin-left: 5px;
    cursor: pointer;
    position: relative;
}

    .copy-link i {
        color: #007ad3cf;
        font-size: 14px;
        /* position: absolute; */
    }

.password-id {
    font-size: 14px;
    letter-spacing: 2px;
}

.category_row [class*="col-"] {
    margin-top: 20px;
}

.ml-75 {
    margin-left: -55px;
}

.mr-75 {
    margin-right: -55px;
}

.single-categorie-box {
    height: 100%;
}



/*custom form design*/
.inquiry-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0078d3, #0ed3ff);
    border-radius: 100%;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 1px 1px 4px 0px #8b8b8b;
    transition: all .3s;
}

    .inquiry-btn:hover {
    }

    .inquiry-btn .inq-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: -1;
        position: relative;
    }

        .inquiry-btn .inq-btn img {
            width: 30px;
        }

    .inquiry-btn .inq-cancle {
        position: absolute;
        top: 6px;
        right: 2px;
        font-size: 20px;
        border: 1px solid #007ad38c;
        border-radius: 100%;
        width: auto;
        height: 25px;
        width: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #007ad3f2;
    }

.form-heading-f {
    background: #0078d3;
    width: 190px;
    text-align: center;
    margin: auto;
    color: #fff;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
    padding: 0px 10px;
    font-size: 20px;
}

.demo-short-form {
    width: 400px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 0px 15px 15px 15px;
    border: 2px solid #007ad3;
    transform: scale(0);
    transition: all .3s;
    transform-origin: bottom left;
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

    .demo-short-form .input-icon img {
        width: 20px;
    }

    .demo-short-form .form-group {
    }

    .demo-short-form .form-control {
        height: 30px;
        padding: 0;
    }

    .demo-short-form .input-icon-img {
        height: 30px;
    }

    .demo-short-form img.country-flag {
        top: 0;
    }

    .demo-short-form textarea.form-control {
        min-height: 30px;
    }

    .demo-short-form .custom-btn {
        height: 40px;
    }

    .demo-short-form .form-heading {
        margin-bottom: 10px;
        text-align: center;
    }

    .demo-short-form.active {
        transform: scale(1);
    }

.school-feature {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.school-feature-list {
    margin-bottom: 60px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    border-radius: 15px;
    padding: 40px 15px 15px 15px;
    background: #fff;
    height: 250px;
}

    .school-feature-list:hover .school-feature-icon {
        transform: translateY(-10px);
    }

.school-feature-heading {
    /* display: flex; */
    text-align: center;
}

.school-feature-icon {
    text-align: center;
    mask-image: url("../images/mark-img1.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    height: 80px;
    width: 80px;
    min-width: 75px;
    z-index: 0;
    position: absolute;
    mask-size: contain;
    top: -40px;
    left: 0px;
    right: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
}

    .school-feature-icon:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: scale(1);
        transform-origin: center;
        transform-style: preserve-3d;
        transition: all .5s cubic-bezier(.62,.21,.45,1.52);
        background: linear-gradient(45deg, #315BDB, #15afff);
        z-index: -1;
    }

    .school-feature-icon img {
        width: 44px;
    }

.school-feature-title {
    font-size: 20px;
    margin-top: 10px;
}

.school-feature-content {
    margin-bottom: 0px;
    text-align: center;
}

.mb-80 {
    margin-bottom: 80px;
}

.why-choose-school {
    margin-top: 50px
}

.erp-school {
    background: #e7f6fe;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    padding: 30px;
    border-radius: 15px;
    padding-left: 290px;
    position: relative;
    border: 3px solid #0078d321;
}

    .erp-school img {
        position: absolute;
        left: -90px;
        width: 340px;
        animation: turn 5s linear infinite;
    }

.college-banner {
    /* background: url("../images/banner_01_bg.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 30px 30px 321px;
    border-radius: 15px;
    position: relative;
    /* box-shadow: -1px 1px 5px 0px #ebebeb; */
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .college-banner .img-4 {
        position: absolute;
        animation: turn 5s linear infinite;
        width: 360px;
        left: -80px;
    }

    .college-banner .img-3 {
        position: absolute;
        animation: l-r 5s linear infinite;
        width: 110px;
        right: 0px;
        top: -40px;
    }

@keyframes turn {
    0% {
        top: 0px;
    }

    50% {
        top: 60px;
    }

    100% {
        top: 0px;
    }
}

@keyframes l-r {
    0% {
        right: 0px;
    }

    50% {
        right: 40px;
    }

    100% {
        right: 0px;
    }
}

.college-need {
    margin-top: 100px;
    padding-bottom: 50px;
}


/*source process start*/

:root {
    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --gold: #f1c40f;
    --red: #e74c3c;
    --orange: #e67e22;
    --shadow1: 0 2px 4px #000 26, 0 3px 6px #000 1f;
    --shadow2: 0 2px 6px #000 44, 0 4px 7px #000 22;
}

.our-process main {
}

.our-process ul.infoGraphic {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

    .our-process ul.infoGraphic li {
        position: relative;
        width: 100%;
        background: #fff;
        border-radius: 0.5em;
        padding: 0.5em;
        z-index: 1;
        transition: all 0.2s;
        cursor: pointer;
        background: linear-gradient(to right, aliceblue, transparent 90%);
        min-height: 255px;
    }

        .our-process ul.infoGraphic li .numberWrap {
            position: absolute;
            left: -20px;
        }

        .our-process ul.infoGraphic li .number {
            font-family: "maven pro", sans-serif;
            font-size: 8em;
            font-weight: 900;
            width: 1.5em;
            text-align: center;
        }

            .our-process ul.infoGraphic li .number.fontColor1 {
                color: var(--blue);
            }

            .our-process ul.infoGraphic li .number.fontColor2 {
                color: var(--green);
            }

            .our-process ul.infoGraphic li .number.fontColor3 {
                color: var(--purple);
            }

            .our-process ul.infoGraphic li .number.fontColor4 {
                color: var(--gold);
            }

            .our-process ul.infoGraphic li .number.fontColor5 {
                color: var(--red);
            }

            .our-process ul.infoGraphic li .number.fontColor6 {
                color: var(--blue);
            }

            .our-process ul.infoGraphic li .number.fontColor6 {
                color: #59d7af;
            }

        .our-process ul.infoGraphic li .coverWrap {
            transform: rotate(130deg);
            position: absolute;
            width: 18em;
            height: 15em;
            left: -3em;
            top: 1em;
        }

            .our-process ul.infoGraphic li .coverWrap .numberCover {
                position: absolute;
                background: linear-gradient(45deg, #f7fcff, #eff9ff);
                width: 13em;
                height: 7em;
                border-radius: 50% 50% 0 0;
                border-bottom: 3px solid #f5f8f712;
                transition: all 0.4s;
            }

                .our-process ul.infoGraphic li .coverWrap .numberCover::before {
                    position: absolute;
                    content: "";
                    bottom: 5px;
                    left: 4em;
                    right: 4em;
                    top: 5em;
                    box-shadow: 0 0 30px 17px #48668577;
                    border-radius: 100px / 10px;
                    z-index: -1;
                }

                .our-process ul.infoGraphic li .coverWrap .numberCover::after {
                    position: absolute;
                    bottom: 0;
                    content: "";
                    left: -10%;
                    width: 120%;
                    height: 150%;
                    background: radial-gradient(at bottom, #d7d4d461, #ffffff00, #ffffff00);
                    z-index: 1;
                }

        .our-process ul.infoGraphic li .content {
            margin: 3em 0px 0em 7em;
            position: relative;
            text-align: right;
            padding-left: 20px;
        }

            .our-process ul.infoGraphic li .content h4 {
                font-size: 1.3em;
                font-weight: 500;
                text-align: right;
                margin-bottom: 10px;
                text-transform: uppercase;
            }

            .our-process ul.infoGraphic li .content p {
                margin-bottom: 0;
            }

        .our-process ul.infoGraphic li:hover .coverWrap .numberCover {
            border-radius: 100%;
        }

.our-process .icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    right: 0;
    transform: translateX(-50%);
    display: none;
}

    .our-process .icon:before {
        color: #666;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
    }

.our-process .iconCodepen:before {
    content: "\f1cb";
}

.our-process .iconSocial:before {
    content: "\f08a";
}

.our-process .iconAirplane:before {
    content: "\f1d9";
}

.our-process .iconMap:before {
    content: "\f278";
}

.our-process .iconBulb:before {
    content: "\f0eb";
}

.our-process .iconPeace:before {
    content: "\f25b";
}

.our-process {
    margin-top: 80px;
    margin-bottom: 40px;
}

.clg-mng-1 {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: auto;
}

.clg-mng-2 {
    width: 300px;
    position: absolute;
    left: 70px;
    right: 0;
    margin: auto;
    bottom: -150px;
}

.what-is-college {
    padding-top: 100px;
}

.what-is-college {
    padding-bottom: 100px;
}

.upper-box-about {
    background: linear-gradient(0deg, transparent, aliceblue, transparent);
    padding: 40px 40px 160px;
    border-radius: 14px;
}

.lower-box-about {
    margin-top: -150px;
}

.lower-box-content .icon-box .img-bg {
    background: #fff;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    line-height: 5;
    display: block;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
}

    .lower-box-content .icon-box .img-bg img {
        width: 50px;
    }

.lower-box-content h6 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: normal;
}

.lower-box-content {
    background: #fff;
    border-radius: 1.5rem;
    padding: 15px;
    box-shadow: 0px 1px 4px 4px #cdcdcd59;
    transition: all 500ms ease;
    text-align: center;
    margin-bottom: 30px;
}

    .lower-box-content:hover {
        background: var(--primary-color);
    }

.bg-blue {
    background: var(--primary-color);
}

.height-ab {
    height: 100%;
}

.height-ac {
    height: 100%;
}


.lower-box-content:hover p, .lower-box-content:hover h6 {
    color: #fff;
}

.about-us-point {
    padding-top: 30px;
}

.line-end:before {
    content: none !important;
}

.free-demo {
    background: #0176d3;
    padding: 10px;
    border-radius: 5px;
}

.blog-button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: auto;
}

.overlay {
    background: #0000000d;
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 1;
    backdrop-filter: blur(5px);
    transform-origin: bottom left;
    transform: scale(0);
    transition: all .1s;
}

    .overlay.active {
        transform: scale(1);
    }

.why-mobile-app {
    /* padding: 80px 0; */
}

.what-mobile-app {
    /* padding: 80px 0; */
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.school-mobile-app-img {
    position: relative;
}

    .school-mobile-app-img .mobile-ui {
        width: 65%;
    }

    .school-mobile-app-img span {
        animation: pulse 2s infinite;
    }

    .school-mobile-app-img span {
        position: absolute;
        background: #ffffff;
        border-radius: 24px;
        padding: 10px;
        display: grid;
        place-content: center;
        justify-items: center;
        gap: 10px;
        font-size: 14px;
        width: 106px;
        text-align: center;
        font-weight: 500;
        border: 1px solid #0078d329;
        box-shadow: 0 0 10px 8px #0078d305;
    }

        .school-mobile-app-img span:before {
            content: "";
            position: absolute;
        }

        .school-mobile-app-img span.sc-side-1 {
            top: 140px;
            left: 70px;
        }

            .school-mobile-app-img span.sc-side-1:before {
                top: -20px;
                left: -20px;
                width: 30px;
                height: 30px;
                background: url("../images/icon-1.svg");
                background-repeat: no-repeat;
                background-size: contain;
                transform: rotate(-12deg);
            }

        .school-mobile-app-img span.sc-side-2 {
            top: 78px;
            right: 50px;
        }

            .school-mobile-app-img span.sc-side-2:before {
                top: -20px;
                right: -20px;
                width: 30px;
                height: 30px;
                background: url("../images/icon-2.svg");
                background-repeat: no-repeat;
                background-size: contain;
            }

        .school-mobile-app-img span.sc-side-3 {
            bottom: 83px;
            right: 80px;
        }

            .school-mobile-app-img span.sc-side-3:before {
                top: -10px;
                right: -20px;
                width: 40px;
                height: 40px;
                background: url("../images/icon-3.svg");
                background-repeat: no-repeat;
                background-size: contain;
            }

        .school-mobile-app-img span img {
            width: 35px
        }

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

.school-app-key-feature {
    padding: 80px 0;
}

.sakf-box {
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

    .sakf-box p {
        margin-bottom: 0;
    }

.sakf-content {
    padding-left: 30px;
}

.sakf-box:hover span:before {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}



.sakf-box span {
    min-width: 25px;
    height: 25px;
    border-radius: 100%;
    transform: translate(0px, 0px);
    position: absolute;
    left: 0;
    background: #cce2ff;
}

    .sakf-box span:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 15px;
        height: 15px;
        background: #fff;
        border-radius: 100%;
    }

.sakf-box:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 11px;
    margin: auto;
    width: 2px;
    height: 100%;
    background: #dcedf3;
    border-radius: 100%;
}

.sakf-box span img {
    width: 30px;
    border-radius: 0;
}


.sakf-box h4 {
    font-size: 16px;
}

@keyframes rotate-deg {
    0% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.eminent-feature {
    /* padding: 80px 0 30px 0; */
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .eminent-feature .service-sub-para {
        position: relative;
        padding: 0px;
        padding-left: 25px;
    }

        .eminent-feature .service-sub-para span {
            min-width: 16px;
            height: 16px;
            border-radius: 100%;
            transform: translate(0px, 0px);
            position: absolute;
            left: 1px;
            top: 2px;
            background: #cce2ff;
        }

            .eminent-feature .service-sub-para span:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                width: 10px;
                height: 10px;
                background: #fff;
                border-radius: 100%;
            }



.eminent-features-alt .service-sub-para {
    position: relative;
    padding-right: 20px;
    padding-left: unset;
    text-align: right;
}

    .eminent-features-alt .service-sub-para span {
        margin-left: auto;
    }

    .eminent-features-alt .service-sub-para:before {
        content: "";
        position: absolute;
        right: -10px;
        left: auto;
        width: 100%;
        height: 120%;
        background: linear-gradient(90deg, transparent, #fff6fa);
    }

.eminent-features-alt .eminent-features-heading {
    text-align: right;
}

.c-1 {
    background: #EAF6FF;
}

    .c-1 span {
        border: 1px dashed #1B75E8;
        background: #cce2ff;
    }

.c-2 {
    background: #FEF2F4;
}

    .c-2 span {
        border: 1px dashed #FF6881;
        background: #ffdce2;
    }

.c-3 {
    background: #EEFBF5;
}

    .c-3 span {
        border: 1px dashed #00BC65;
        background: #D1F5E4;
    }

.c-4 {
    background: #FFFAEF;
}

    .c-4 span {
        border: 1px dashed #F2A700;
        background: #fff1d3;
    }

.c-5 {
    background: #F7F3FF;
}

    .c-5 span {
        border: 1px dashed #4500D0;
        background: #ddcdff;
    }

.c-6 {
    background: #FFF0F8;
}

    .c-6 span {
        border: 1px dashed #BB0064;
        background: #fdc4e3;
    }

.c-7 {
    background: #F3F4FE;
}

    .c-7 span {
        border: 1px dashed #0011BB;
        background: #c3c8ff;
    }

.c-8 {
    background: #FFF7EF;
}

    .c-8 span {
        border: 1px dashed #BB0064;
        background: #ffd0e9;
    }

.c-9 {
    background: #F1FBFF;
}

    .c-9 span {
        border: 1px dashed #00A9ED;
        background: #d1f2ff;
    }




.eminent-features .eminent-features-image {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    /* background: #e7f6fe; */
    /* padding: 5px; */
    border-radius: 4px;
    margin-bottom: 5px;
}



.eminent-features span img {
    width: 50px;
}

.eminent-features {
    position: relative;
}

    .eminent-features:before {
        content: "";
        position: absolute;
        top: 49px;
        left: 8px;
        margin: auto;
        width: 2px;
        height: 48%;
        background: #dcedf3;
        border-radius: 100%;
    }

    .eminent-features .eminent-features-heading h4 {
        font-size: 20px;
    }

    .eminent-features .eminent-features-para {
    }

        .eminent-features .eminent-features-para p {
            margin-bottom: 0;
        }

.elearning-key-feature {
    /* padding: 80px 0; */
}

.elearning-featue-box {
}

.e-side-img {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    display: grid;
    place-content: center;
    margin: auto;
}

.e-side-img-alter {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    display: grid;
    place-content: center;
    margin: auto;
}

    .e-side-img img, .e-side-img-alter img {
        width: 230px;
    }

.why-choose-web-dev {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.why-choose-web-dev-box {
    border-radius: 15px;
    padding: 10px 0px;
    position: relative;
    background: #ffff;
    z-index: 0;
    clip-path: polygon(3% 0, 100% 0, 100% 91%, 97% 100%, 0 100%, 0 11%);
}

.why-choose-web-dev-heading {
    padding: 20px 10px;
    padding-bottom: 0;
}

.why-choose-web-dev-box span {
    width: 100%;
    height: 270px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

    .why-choose-web-dev-box span.alt-wcwdi img {
        clip-path: polygon(100% 0, 100% 92%, 94% 100%, 0 100%, 0 0);
    }

    .why-choose-web-dev-box span img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
    }

.why-choose-web-dev-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-choose-web-dev-box p {
    margin-bottom: 0;
}

.key-service-webdesign {
    padding: 80px 0px;
}

.ks-webdesign-box {
    border: 1px solid #efefef;
    border-radius: 15px;
    overflow: hidden;
    clip-path: polygon(93% 0, 100% 5%, 100% 100%, 0 100%, 0 0);
    height: 100%;
}

    .ks-webdesign-box h4 {
        font-size: 18px;
        /* margin-bottom: -8px; */
    }

    .ks-webdesign-box .ks-webdesign-box-img {
        height: 190px;
        position: relative;
        margin-bottom: 30px;
    }

        .ks-webdesign-box .ks-webdesign-box-img:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #008fcf, transparent);
            z-index: -1;
        }

        .ks-webdesign-box .ks-webdesign-box-img img {
            height: 100%;
            width: 100%;
            object-fit: contain;
        }

    .ks-webdesign-box span {
        border-radius: 100%;
        border: 3px solid #fff;
        width: 80px;
        height: 80px;
        display: grid;
        place-content: center;
        position: absolute;
        bottom: -39px;
        left: 10px;
        background: #008dce;
    }

    .ks-webdesign-box .ks-webdesign-box-img span img {
        width: 35px;
    }

    .ks-webdesign-box p {
        margin-bottom: 0;
    }

.ks-webdesign-box-content {
    padding: 10px 15px 15px 15px;
}

.how-rfid-system {
    padding: 80px 0;
}

.rfid-key-feature {
    position: relative;
    padding: 80px 0;
}

.rfid-key-another-feature {
    padding-bottom: 80px;
}

.rfid-key-feature:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 70%;
    width: 86%;
    z-index: -1;
    border-radius: 50px;
}

.rfid-key-feature-box {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    text-align: center;
}

    .rfid-key-feature-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .rfid-key-feature-box p {
        margin-bottom: 0;
    }

    .rfid-key-feature-box span {
        width: max-content; /* height:60px; */
        display: grid;
        place-content: center;
        border-radius: 50%; /* background: blue; */
        margin: auto;
        margin-bottom: 15px;
        position: relative;
        z-index: 0;
    }

        .rfid-key-feature-box span img {
            width: 50px;
        }

        .rfid-key-feature-box span:before {
            content: "";
            position: absolute;
            top: -12px;
            left: 10px;
            right: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(245deg, #bdeaff, #ffffff 70%);
            border-radius: 50%;
            z-index: -1;
            transition: all .3s ease-in-out;
        }

    .rfid-key-feature-box:hover :before {
        top: -5px;
        left: 0px;
    }

.rkaf-ui {
}

    .rkaf-ui li {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 10px;
    }

        .rkaf-ui li:nth-child(1) span {
            border: 1px dashed #ff5069;
        }

        .rkaf-ui li:nth-child(2) span {
            border: 1px dashed #ffb50e;
        }

        .rkaf-ui li:nth-child(3) span {
            border: 1px dashed #00d485;
        }

        .rkaf-ui li span {
            border-radius: 50%;
            display: flex;
            background: transparent;
            height: 60px;
            width: 60px;
        }

            .rkaf-ui li span img {
                width: 30px;
                margin: auto;
            }

        .rkaf-ui li .rkaf-ui-content {
            border-bottom: 1px solid #dbdbdb;
        }

            .rkaf-ui li .rkaf-ui-content h4 {
                font-size: 18px;
            }

.spec-rfid {
    padding: 80px 0;
    position: relative;
}

    .spec-rfid:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: #0078d3;
        height: 70%;
        width: 100%;
        z-index: -1;
    }

.spec-rfid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

    .spec-rfid-list li {
        background: #fff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 0 10px 15px #0000000d;
        min-width: 173px;
    }

        .spec-rfid-list li span {
            background: red;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spec-rfid-list li:nth-child(1) span {
            background: #00c7c4;
        }

        .spec-rfid-list li:nth-child(2) span {
            background: #ef5c72;
        }

        .spec-rfid-list li:nth-child(3) span {
            background: #f8b81f;
        }

        .spec-rfid-list li:nth-child(4) span {
            background: #22d17e;
        }

        .spec-rfid-list li:nth-child(5) span {
            background: #8e56ff;
        }

        .spec-rfid-list li:nth-child(6) span {
            background: #41c2fa;
        }

        .spec-rfid-list li:nth-child(7) span {
            background: #8BC34A
        }

        .spec-rfid-list li:nth-child(8) span {
            background: #e230cc
        }

        .spec-rfid-list li span img {
            width: 25px;
        }

        .spec-rfid-list li h4 {
            font-size: 16px;
            margin: 5px 0;
        }

        .spec-rfid-list li p {
            margin-bottom: 0;
            font-size: 14px;
        }

.why-choose-rfid {
    padding: 80px 0;
}

.why-choose-rfid-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 5px 8px #d3d3d312;
    height: 100%;
}

    .why-choose-rfid-box span img {
        width: 40px
    }

    .why-choose-rfid-box h4 {
        margin: 10px 0;
        font-size: 20px;
    }

    .why-choose-rfid-box p {
        margin-bottom: 0px;
    }

.erp-bus-keyfeature {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.erp-bus-keyfeature-box {
    position: relative;
    border: 1px solid #f9f9f9;
    border-radius: 15px 100px 100px 15px;
    padding: 25px;
    padding-left: 128px;
    background: #fff;
    overflow: hidden;
    height: 100%;
}

    .erp-bus-keyfeature-box h4 {
        font-size: 18px;
    }

    .erp-bus-keyfeature-box p {
        margin-bottom: 0;
    }

    .erp-bus-keyfeature-box span {
        border-radius: 100%;
        width: 159px;
        height: 120%;
        display: grid;
        place-content: center;
        position: absolute;
        top: 0px;
        left: -56px;
        bottom: 0;
        margin: auto;
    }

.ebkb {
    border-radius: 100px 15px 15px 100px;
    padding-right: 128px;
    padding-left: 25px;
    text-align: right;
}

    .ebkb span {
        right: -56px;
        left: auto;
    }

.erp-bus-keyfeature-box.ebkb span img {
    transform: translate(-25px, 0px);
}

.bg-1 {
    background: #ffe6e6;
}

.bg-2 {
    background: #e6eaff;
}

.bg-3 {
    background: #ceffd6;
}

.bg-4 {
    background: #fbf9a5;
}

.bg-5 {
    background: #fbe3ff;
}

.bg-6 {
    background: #d9ddff;
}

.bg-7 {
    background: #e5ffc7;
}

.bg-8 {
    background: #ffe9f1;
}

.bg-9 {
    background: #fff7b7;
}

.erp-bus-keyfeature-box span img {
    width: 45px;
    transform: translate(25px, 0px);
    filter: brightness(0);
}


.erp-bus-key-applications ul li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

    .erp-bus-key-applications ul li span {
        display: grid;
        place-content: center;
        min-width: 50px;
        height: 50px;
        border-radius: 100%;
        outline-offset: 3px;
    }

    .erp-bus-key-applications ul li:nth-child(1) span {
        background: #ffa9a9;
        outline: 1px dashed #ffa9a9;
    }

    .erp-bus-key-applications ul li:nth-child(2) span {
        background: #a5e3b0;
        outline: 1px dashed #a5e3b0;
    }

    .erp-bus-key-applications ul li:nth-child(3) span {
        background: #f1ed4e;
        outline: 1px dashed #f1ed4e;
    }

    .erp-bus-key-applications ul li:nth-child(4) span {
        background: #f3adff;
        outline: 1px dashed #f3adff;
    }

    .erp-bus-key-applications ul li:nth-child(5) span {
        background: #bec6ff;
        outline: 1px dashed #bec6ff;
    }

    .erp-bus-key-applications ul li span img {
        width: 30px;
        filter: brightness(0);
    }

    .erp-bus-key-applications ul li p {
        margin-bottom: 0;
    }

    .erp-bus-key-applications ul li h4 {
        font-size: 18px;
    }

.erp-tracking-feature {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%)
}

.erp-tracking-feature-box {
    border-radius: 0px;
    padding: 30px;
    height: 100%;
}

    .erp-tracking-feature-box:hover {
        background: #ffffff;
    }

    .erp-tracking-feature-box span {
        margin-bottom: 10px;
        display: grid;
        place-content: center;
        width: 60px;
        height: 60px;
        border-radius: 13px;
    }

    .erp-tracking-feature-box h4 {
        font-size: 18px;
    }

    .erp-tracking-feature-box p {
        margin-bottom: 0;
    }

    .erp-tracking-feature-box span img {
        width: 30px;
        filter: brightness(0);
    }

.bg-white {
    background: #fff;
}

.why-choose-visiter-management {
    /* background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%); */
    border-radius: 10px;
}




.why-choose-visiter-management-box {
    border-radius: 15px;
    position: relative;
}

    .why-choose-visiter-management-box span {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }

        .why-choose-visiter-management-box span:before {
            content: "";
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(45deg, #d7eeff, transparent);
            width: 150px;
            height: 150px;
            border-radius: 100%;
            z-index: -1;
        }

    .why-choose-visiter-management-box img {
        width: 78px;
    }

    .why-choose-visiter-management-box h4 {
        font-size: 18px;
    }

    .why-choose-visiter-management-box p {
        margin-bottom: 0;
    }

.key-feature-visitor-management {
}

.key-feature-visitor-management-box {
    background: linear-gradient(45deg, #fff6d7, #f7fbff);
    padding: 25px;
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: all .3s ease-in-out;
}



    .key-feature-visitor-management-box:hover p, .key-feature-visitor-management-box:hover h4 {
        color: #000000;
    }

    .key-feature-visitor-management-box:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 19px;
        width: 50px;
        height: 2px;
        z-index: 1;
        background: #fff;
    }



    .key-feature-visitor-management-box:after {
        content: "";
        position: absolute;
        top: 19px;
        left: 0px;
        width: 2px;
        height: 50px;
        z-index: 1;
        background: #fff;
    }

    .key-feature-visitor-management-box span {
        margin-bottom: 10px;
        display: grid;
        width: 60px;
        height: 60px;
        place-content: center;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid #f1f1f1;
    }



        .key-feature-visitor-management-box span img {
            width: 35px;
        }

    .key-feature-visitor-management-box h4 {
        font-size: 18px;
    }

    .key-feature-visitor-management-box p {
        margin-bottom: 0px;
    }

.kbvm-box {
    background: linear-gradient(45deg, #ffffff 89%, #fff9e5 10%);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

    .kbvm-box h4 {
        font-size: 18px;
    }

    .kbvm-box p {
        margin-bottom: 0;
    }

    .kbvm-box span {
    }

        .kbvm-box span img {
            width: 35px;
            margin-bottom: 10px;
        }

.key-benefits-visitor-management {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.why-choose-erp-vis-box {
    border-radius: 20px;
    padding: 15px;
    height: 100%;
    background: linear-gradient(45deg, #fffdf7, #f7fcff, #fffdf7);
    outline: 1px solid #f7fbff;
    outline-offset: 6px;
    text-align: center;
}

    .why-choose-erp-vis-box h4 {
        font-size: 18px;
    }

    .why-choose-erp-vis-box p {
        margin-bottom: 0
    }

    .why-choose-erp-vis-box span {
        background: #fff;
        display: grid;
        place-content: center;
        width: 60px;
        height: 60px;
        border-radius: 100%;
        box-shadow: 0 0 15px #e3e3e3;
        margin: auto;
        margin-bottom: 10px;
    }

        .why-choose-erp-vis-box span img {
            width: 30px;
        }

.why-img-school {
    /* width: 70%; */
    margin-bottom: 30px;
}

.el-key-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 50px;
    gap: 20px;
}

    .el-key-list li {
        text-align: center;
        margin: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        height: 100%;
    }

        .el-key-list li span {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #C9C9DD;
            border-radius: 150px;
            background: linear-gradient(180deg, #fff 0%,#F1F1FA 100%);
            color: #7f7e97;
            transition: all .3s ease-out 0s;
            position: relative;
            margin: 0 0 12px;
        }

            .el-key-list li span:before {
                content: "";
                position: absolute;
                top: 26px;
                right: 26px;
                background-image: url("../images/cat_star.svg");
                background-repeat: no-repeat;
                background-size: contain;
                width: 21px;
                height: 26px;
                pointer-events: none;
            }

        .el-key-list li:hover span {
            box-shadow: 6px 5px #0ed3ff2e;
            background: linear-gradient(45deg, #0078d3, #0ed3ff);
        }

            .el-key-list li:hover span img {
                filter: brightness(0.5);
            }


        .el-key-list li span img {
            width: 45px;
        }

.benefit-e-learning {
    background: #f7fcff;
    border-radius: 20px;
    position: relative;
    padding: 20px 5px 20px 10px;
}

    .benefit-e-learning:before {
        content: "";
        position: absolute;
        top: -25px;
        left: -25px;
        width: 50%;
        height: calc(100% + 50px);
        border: 4px solid #e2f7fe;
        border-radius: 40px;
        z-index: -1;
    }

.benefit-e-learning-alt:before {
    content: "";
    position: absolute;
    top: -25px;
    left: auto;
    right: -21px;
    width: 50%;
    height: calc(100% + 50px);
    border: 4px solid #dcf8ff;
    border-radius: 30px;
    z-index: -1;
}


/*process Style Start*/
.porcess-style-three {
    position: relative;
    padding-top: 125px;
    width: 100%;
    z-index: 1;
    background-position: center;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

    .porcess-style-three .sec-title {
        margin-bottom: 60px;
    }

.work-block-three .inner-box {
    position: relative;
    display: block;
    text-align: center;
}

    .work-block-three .inner-box .arrow-box {
        position: absolute;
        top: 2px;
        right: -110px;
        width: 194px;
        height: 56px;
        background-repeat: no-repeat;
    }

    .work-block-three .inner-box .icon-box {
        position: relative;
        display: inline-block;
        font-size: 40px;
        width: 80px;
        height: 80px;
        border: 2px dotted #278fda;
        line-height: 68px;
        text-align: center;
        border-radius: 50%;
        margin-bottom: 52px;
        transition: all 500ms ease;
        /* background: #f9f9f9; */
    }

        .work-block-three .inner-box .icon-box:before {
            position: absolute;
            content: '';
            height: 32px;
            border: 1px dashed #9fd0f3;
            left: 36px;
            bottom: -45px;
        }

    .work-block-three .inner-box:hover .icon-box {
        background: #fff;
    }

    .work-block-three .inner-box .icon-box img {
        position: relative;
        width: 40px
    }

    .work-block-three .inner-box:hover .icon-box i {
    }

    .work-block-three .inner-box .count-box {
        position: relative;
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: 0 auto;
        border-radius: 50%;
        margin-bottom: 30px;
        border: 1px solid rgb(39 143 218 / 9%);
        transition: all 500ms ease;
    }

    .work-block-three .inner-box:hover .count-box {
        box-shadow: 0 0 0 10px rgb(0 122 211 / 5%);
    }

    .work-block-three .inner-box .count-box:before {
        position: absolute;
        content: '';
        background: #0078d3d6;
        width: 40px;
        height: 40px;
        left: 9px;
        top: 9px;
        border-radius: 50%;
        transition: all 500ms ease;
    }

    .work-block-three .inner-box:hover .count-box:before {
        box-shadow: 0 0 0 10px rgb(0 141 206 / 16%);
    }

    .work-block-three .inner-box .count-box span {
        position: relative;
        display: inline-block;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
    }

    .work-block-three .inner-box .content-box {
        position: relative;
        display: block;
        background: #fff;
        padding: 19px 30px 16px 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .work-block-three .inner-box .content-box:before {
            position: absolute;
            content: '';
            background: #fff;
            width: 20px;
            height: 20px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            top: -10px;
        }

        .work-block-three .inner-box .content-box h3 {
            margin-bottom: 7px;
        }

.porcess-style-three .inner-content {
    position: relative;
}

    .porcess-style-three .inner-content .line {
        position: absolute;
        left: 0px;
        top: 157px;
        width: 100%;
        height: 10px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

.porcess-style-three .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 860px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
/*process Style End*/

.why-choose-visiter-management-img {
    border-radius: 20px;
    padding: 15px;
    position: relative;
    outline: 5px solid #fffffffa;
    outline-offset: -8px;
}

.wcvm-img-1 {
    background: linear-gradient(45deg, #fff6d7, #f7fbff);
}

    .wcvm-img-1:after {
        background: #f7fbff;
    }

    .wcvm-img-1:before {
        background: #fff6d7;
    }

.why-choose-visiter-management-img:before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: -7px;
    width: 30%;
    height: 50%;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: -1;
    border-radius: 23px;
}

.why-choose-visiter-management-img:after {
    content: "";
    position: absolute;
    top: -7px;
    right: -7px;
    width: 30%;
    height: 50%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    border-radius: 23px;
}


.why-choose-visiter-management-img img {
    height: 200px;
}

.image-container img {
    width: 70%;
}

.Why-choose-lm-box {
    border: 1px solid #e8f5fc;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    background: #fff;
    box-shadow: rgb(0 0 0 / 5%) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    height: 100%;
}

    .Why-choose-lm-box h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .Why-choose-lm-box p {
        margin-bottom: 0;
    }

    .Why-choose-lm-box span {
        width: 60px;
        height: 60px;
        border-radius: 0px 30px 30px 30px;
        display: grid;
        place-content: center;
        /* background: #008cdc17; */
    }

        .Why-choose-lm-box span img {
            width: 30px;
        }

    .Why-choose-lm-box .lm-box-num {
        background: transparent;
        position: absolute;
        top: 19px;
        right: 20px;
        font-size: 50px;
        font-weight: 600;
        color: #f9f9f9;
    }

.liberary-feature-box {
    border-radius: 30px;
    background: #fff;
    padding: 30px;
    border-left: 3px solid #bee8ff;
    border-right: 3px solid #bee8ff;
    height: 100%;
}

    .liberary-feature-box p {
        margin-bottom: 0px;
    }

    .liberary-feature-box span {
        margin-bottom: 20px;
        display: grid;
        place-content: center;
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

        .liberary-feature-box span img {
            width: 40px;
        }

.liberary-feature {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    position: relative;
    background: url("../images/section-bg-2.png");
    background-repeat: no-repeat;
    background-size: cover;
}

    .liberary-feature:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 20%;
        background: #0083bf21;
        width: 300px;
        height: 300px;
        border-radius: 100%;
        z-index: -1;
        filter: blur(41px);
    }

    .liberary-feature:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 34%;
        background: #0083bf21;
        width: 300px;
        height: 300px;
        border-radius: 100%;
        z-index: -1;
        filter: blur(41px);
    }

.liberary-benefits {
}

.liberary-benefits-box {
    height: 100%;
    position: relative;
    border-left: 3px solid #ebf6fc;
    padding: 15px;
    border-radius: 15px;
    padding-left: 45px;
}

    .liberary-benefits-box p {
        margin-bottom: 0;
    }

    .liberary-benefits-box span {
        display: grid;
        place-content: center;
        border-radius: 100%;
        width: 60px;
        height: 60px;
        /* z-index: 0; */
        position: absolute;
        left: -29px;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 1;
    }



        .liberary-benefits-box span img {
            width: 36px;
        }

.liberary-benefits-box-alt {
    border-radius: 100%;
    width: 250px;
    height: 250px;
    margin: auto;
    padding: 20px;
    display: grid;
    place-content: center;
    border: 1px solid rgb(39 143 218 / 9%);
    transition: all 500ms ease;
    position: relative;
    z-index: 0;
}

    .liberary-benefits-box-alt:before {
        position: absolute;
        content: '';
        background: #fdfdfd;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        border-radius: 50%;
        transition: all 500ms ease;
        z-index: -1;
    }

.liberary-benefits:hover .liberary-benefits-box-alt:before {
    box-shadow: 0 0 0 10px rgb(0 141 206 / 16%);
}

.liberary-benefits:hover .liberary-benefits-box-alt {
    box-shadow: 0 0 0 30px rgb(0 122 211 / 5%);
}

.liberary-benefits-box-alt img {
    width: 100%;
}

.lbb-alt {
    text-align: right;
    padding-right: 45px;
    padding-left: 15px;
    border-left: 0;
    border-right: 3px solid #ebf6fc;
}

    .lbb-alt span {
        margin-left: auto;
        right: -29px;
        left: auto;
    }

.liberary-expertise ul {
    margin-top: 15px;
}

    .liberary-expertise ul li {
        margin-bottom: 10px;
        font-weight: 600;
        border-radius: 10px;
        /* border: 1px solid #f4fcff; */
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-left: 3px solid #97d9ff;
    }

        .liberary-expertise ul li span {
            position: relative;
            display: inline-block;
            font-size: 40px;
            min-width: 40px;
            height: 40px;
            border: 1px dotted #278fda;
            line-height: 29px;
            text-align: center;
            border-radius: 50%;
        }

            .liberary-expertise ul li span img {
                /* position: relative; */
                width: 25px;
            }

.liberary-expertise-l-image {
    width: 300px;
}

.line.line-1 {
    width: 140px;
    height: 1px;
    background: #e8f6fc;
    transform: rotate(-155deg);
    transform-origin: center;
    /* position: absolute; */
    top: 50px;
    right: -130px;
}

.line.line-2 {
    width: 96px;
    height: 1px;
    background: #e8f6fc;
    transform: rotate(155deg);
    transform-origin: center;
    /* position: absolute; */
    top: -48px;
    right: -118px;
}

.line.line-3 {
    width: 140px;
    height: 1px;
    background: #e8f6fc;
    transform: rotate(-25deg);
    transform-origin: center;
    /* position: absolute; */
    top: 50px;
    left: -130px;
}

.line.line-4 {
    width: 140px;
    height: 1px;
    background: #e8f6fc;
    transform: rotate(25deg);
    transform-origin: center;
    /* position: absolute; */
    top: -24px;
    left: -120px;
}

.line:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #53c5ea;
    border-radius: 100%;
    left: -5px;
    bottom: -9px;
    transform: translate(0px, -5px);
    outline: 2px solid #fff;
}

.privacy-policy ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

    .privacy-policy ul li {
        list-style: circle;
        font-weight: 600;
        margin-bottom: 10px;
    }

.banner-wrap-image {
    position: relative;
    margin-top: 50px;
}

    .banner-wrap-image .image-2 {
        top: 149px;
        left: 0;
        position: absolute;
    }

        .banner-wrap-image .image-2 img {
            animation: rotateme 15s linear infinite;
        }

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner-wrap-image .image-2 .middle-img {
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    position: absolute;
    transform: translateY(-50%);
}

    .banner-wrap-image .image-2 .middle-img img {
        animation: unset;
    }

.checklist {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

    .checklist li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 14px;
        color: #292929;
        font-weight: 600;
    }

        .checklist li:before {
            content: "\f14a";
            font-family: "Font Awesome 6 Free";
            color: #0176d3;
            position: absolute;
            left: 0;
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
            font-size: 24px;
            top: -6px;
        }

.wc-addmission-management-soft {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.wc-am-soft-box {
    padding: 25px;
    border-radius: 25px;
    background: #fff;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

    .wc-am-soft-box:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 53px;
        height: 100%;
        width: 2px;
        border: 2px solid #007ad3;
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        border-bottom-left-radius: 25px;
        z-index: -1;
    }

    .wc-am-soft-box:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        height: 100%;
        width: 52px;
        background: #008adb;
        border-bottom-left-radius: 25px;
        z-index: -1;
    }



    .wc-am-soft-box p {
        padding-left: 50px;
    }

    .wc-am-soft-box .wc-am-soft-img {
        display: grid;
        grid-template-columns: 49px 1fr;
        gap: 20px;
        margin-bottom: 15px;
        align-items: center;
    }

        .wc-am-soft-box .wc-am-soft-img h4 {
            width: 60%;
            /* margin: auto; */
            /* text-align:center; */
        }

        .wc-am-soft-box .wc-am-soft-img span {
            width: 60px;
            height: 60px;
            display: grid;
            place-content: center;
            border-radius: 100%;
            border: 2px solid #0078d3;
            margin-left: auto;
            background: #ffffff;
            box-shadow: 0 0 5px 5px #00000005;
        }

            .wc-am-soft-box .wc-am-soft-img span img {
                width: 28px;
            }

.category-list {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid #d0dbe9;
    background: var(--white-color);
    border-radius: 10px;
    margin-left: 30px;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    position: relative;
    z-index: 2;
    height: 100%;
}

    .category-list:before {
        content: '';
        background-color: var(--primary-color);
        width: 0;
        height: 0;
        border-radius: inherit;
        position: absolute;
        top: 0;
        right: 0;
        -webkit-transition: .4s linear;
        transition: .4s linear;
        z-index: -1;
    }

    .category-list:hover:before {
        width: 100%;
        height: 100%;
    }

    .category-list:hover .category-list_icon {
        background: var(--primary-color);
    }

    .category-list:hover .category-list_title {
        color: #fff;
    }

    .category-list:hover p {
        color: #fff;
    }

    .category-list:hover .category-list_icon img {
        -webkit-filter: brightness(99);
        filter: brightness(99);
    }

.category-list_icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    min-width: 60px;
    background-color: #ebf2ff;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    margin-right: 15px;
    border: 1px solid #d0dbe9;
    margin-left: -30px;
}

    .category-list_icon img {
        -webkit-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

.category-list_content {
    position: relative;
    overflow: hidden;
    padding: 26px 26px 26px 0;
    width: 100%;
    border-radius: 10px;
}

.b-addmission-management-soft .single-choose-us-box {
    height: 290px;
    box-shadow: none;
}

.ef-software-box {
    box-shadow: 0px 2px 20px 0px rgba(12, 0, 46, 0.1);
    padding: 30px 20px;
    /* margin-bottom: 30px; */
    transition: 0.5s;
    position: relative;
    background: #FFFFFF;
    text-align: center;
    height: 100%;
}

    .ef-software-box.c-1:hover {
        background: #EAF6FF;
        box-shadow: none;
    }

    .ef-software-box.c-2:hover {
        background: #ffdce2;
        box-shadow: none;
    }

    .ef-software-box.c-3:hover {
        background: #D1F5E4;
        box-shadow: none;
    }

    .ef-software-box.c-4:hover {
        background: #fff1d3;
        box-shadow: none;
    }

    .ef-software-box.c-5:hover {
        background: #ddcdff;
        box-shadow: none;
    }

    .ef-software-box.c-6:hover {
        background: #fdc4e3;
        box-shadow: none;
    }

    .ef-software-box.c-7:hover {
        background: #c3c8ff;
        box-shadow: none;
    }

    .ef-software-box.c-8:hover {
        background: #FFF7EF;
        box-shadow: none;
    }

    .ef-software-box.c-9:hover {
        background: #d1f2ff;
        box-shadow: none;
    }


    .ef-software-box span {
        width: 90px;
        height: 90px;
        text-align: center;
        line-height: 90px;
        border-radius: 46% 54% 68% 32% / 55% 48% 52% 45%;
        margin: auto;
        margin-bottom: 25px;
        animation: icon-animation 5s ease-in-out infinite;
        color: #18a87c;
        display: grid;
        place-content: center;
    }

        .ef-software-box span img {
            width: 40px;
            height: 40px;
        }

@keyframes icon-animation {
    0% {
        border-radius: 46% 54% 68% 32% / 55% 48% 52% 45%;
    }

    50% {
        border-radius: 66% 34% 41% 59% / 51% 34% 66% 49%;
    }

    100% {
        border-radius: 46% 54% 68% 32% / 55% 48% 52% 45%;
    }
}

.fms-key-feature-box {
    border: 1px solid #ffffff;
    border-radius: 24px;
    padding: 24px;
    background: #fff;
}

    .fms-key-feature-box span {
        border-radius: 100%;
        background-color: #fff;
        display: grid;
        place-content: center;
        width: 48px;
        height: 48px;
        box-shadow: 1px 1px 20px #0000000d;
        margin-bottom: 15px;
    }

        .fms-key-feature-box span img {
            width: 24px;
            height: 24px;
        }

.fms-key-feature {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.fms-f-b-alt {
    position: relative;
}


    .fms-f-b-alt p {
        width: 50%;
    }

    .fms-f-b-alt .inv-img {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 200px;
    }

.efm-benefits-box {
    position: relative;
    height: 100%;
}

    .efm-benefits-box .num-circle {
        width: 90px;
        height: 90px;
        border-radius: 100%;
        background: aliceblue;
        display: grid;
        place-content: center;
        font-size: 30px;
        margin: auto;
    }

    .efm-benefits-box .process-line {
        width: 2px;
        background: #ebebeb;
        height: 70%;
        margin: auto;
        margin-top: 10px;
    }

.efm-benefits-img {
    background: #f7f7f7;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .efm-benefits-img:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        height: 30px;
        background: linear-gradient(45deg, #0078d3, #0ed3ff);
        width: 100%;
    }

    .efm-benefits-img img {
        width: 250px;
        margin-top: 40px;
    }

.banner-inner-design {
    background: linear-gradient(45deg, #0078d3, #0ed3ff);
    border-radius: 30px;
    outline: 1px dashed #d0f7ff;
    outline-offset: 10px;
    padding: 30px;
    color: #fff;
    box-shadow: 0px 0 7px 4px #0000001a;
}

.why-student-info-box {
    border: 1px solid #e1f2ff;
    border-radius: 20px;
    box-shadow: 3px 3px 0 0 #e1f2ff;
    padding: 30px;
    display: flex;
    height: 100%;
}

    .why-student-info-box p {
        margin-bottom: 0;
    }

    .why-student-info-box h4 {
        margin-bottom: 10px;
    }

    .why-student-info-box .why-student-img {
        max-width: 40px;
        margin-right: 10px;
    }

        .why-student-info-box .why-student-img img {
            max-width: 30px;
        }

    .why-student-info-box .verticle-line {
        background-color: #dcf3ff;
        width: 1px;
        height: 65%;
        margin: auto;
        margin-top: 14px;
    }

.kf-student-info-p {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    padding: 20px;
}

.kf-student-info {
    position: relative;
    padding: 24px;
    gap: 40px;
    overflow: hidden;
}

    .kf-student-info p {
        margin-bottom: 0px;
    }

.border-1 {
    border: 1px solid #cce3f5;
}

.key-feature-student-info {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.kf-student-info-img {
    border: .5px solid #e6e6e7;
    background-color: #f5f5f6;
    padding: 4px;
    width: 60px;
    margin-bottom: 20px;
}

    .kf-student-info-img span {
        background-color: #fff;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 11px;
        display: flex;
        box-shadow: 0 2px 1.5px .5px #95a0b229;
    }

.key-benefits-student-box {
    padding: 30px 30px 0px 30px;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    height: 100%;
}

    .key-benefits-student-box h4 {
        margin-bottom: 10px;
    }

.key-benefits-student-img {
    text-align: center;
}

.our-expertise-student-info {
    background-image: url("../images/our-expertise-student-info-bg.webp"), linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.sakf-box-alt:before {
    content: none;
}

.si-app-dev ul li {
    display: flex;
    gap: 13px;
}

    .si-app-dev ul li span {
        background: #f7f7f7;
        min-width: 50px;
        height: 50px;
        display: grid;
        place-content: center;
    }

        .si-app-dev ul li span img {
            width: 30px;
        }

.devider {
    border-top: 1px solid #000;
    opacity: 0.1;
    margin: 1rem 0;
    width: 100%;
}

.user-section {
}


    .user-section &gt; li:nth-child(1) {
        background: #64d1da;
    }

    .user-section &gt; li:nth-child(2) {
        background: #34b2e4;
    }

    .user-section &gt; li:nth-child(3) {
        background: #065381;
    }

    .user-section li {
        border-radius: 20px;
        margin-bottom: 80px;
        display: grid;
        grid-template-columns: 45px 1fr;
        align-items: center;
        gap: 50px;
        padding: 25px 20px;
        background: var(--primary-color);
        width: 80%;
        border: 1px solid #e5e5e5;
        box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 28%);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .user-section li span {
            /* position: relative; */
        }

        .user-section li h4 {
            color: #ffffff;
        }

        .user-section li span:before {
            content: "";
            top: 0;
            background-color: rgba(255, 255, 255, 0.25);
            height: 300px;
            width: 280px;
            border-radius: 35%;
            position: absolute;
            left: -180px;
            bottom: 0;
            z-index: -1;
        }

        .user-section li span:after {
            content: "";
            position: absolute;
            top: 0px;
            bottom: 0;
            margin: auto;
            right: -30px;
            height: 70%;
            width: 2px;
            background: #b3e4ff;
            z-index: -1;
        }

.user-section-mid img {
    width: 150px;
}

.user-section-mid {
}

    .user-section-mid span {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border-radius: 100%;
        z-index: -1;
    }

    .user-section-mid .circle-1 {
        width: 215px;
        height: 215px;
        animation: anti-rotate 36s infinite;
        border: 1px dashed #0176d3;
        background: hsl(0deg 0% 100% / 70%);
        \: 1px solid #e5e5e5;
        /* box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 28%); */
    }

    .user-section-mid .circle-2 {
        width: 375px;
        height: 375px;
        animation: rotate 36s infinite;
        border: 1px dashed #0176d3;
        z-index: -2;
        background: hsl(0deg 0% 100% / 70%);
        /* box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 11%); */
    }

    .user-section-mid .circle-3 {
        width: 550px;
        height: 550px;
        animation: anti-rotate 36s infinite;
        border: 1px dashed #0176d3;
        z-index: -3;
        background: hsl(0deg 0% 100% / 70%);
        /* box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 5%); */
    }

.user-section-alt li:nth-child(1) {
    background: #8b103d;
}

.user-section-alt li:nth-child(2) {
    background: #e34856;
}

.user-section-alt li:nth-child(3) {
    background: #fe912a;
}






.user-section-alt li {
    transform: translate(-30px, 0px);
}

    .user-section-alt li:nth-child(2) {
        transform: translate(30px, 0px);
    }


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes anti-rotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


.kf-staff-payroll-box {
    display: flex;
    height: 100%;
    border: 1px solid #008dce2e;
    padding: 25px 25px 25px 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .kf-staff-payroll-box:before {
        content: "";
        height: 100%;
        top: 0;
        width: 100%;
        left: -1px;
        background: linear-gradient(45deg, #ebdafc1f, #b7e7f514);
        position: absolute;
        z-index: -1;
        opacity: 0.9;
    }

    .kf-staff-payroll-box p {
        margin-bottom: 0;
    }

    .kf-staff-payroll-box img {
        margin-bottom: 10px;
        /* display: none; */
    }

    .kf-staff-payroll-box .kf-staff-payroll-number {
        font-size: 50px;
        font-weight: 900;
        color: #dddddd70;
        position: absolute;
        left: 10px;
        top: 13px;
    }

        .kf-staff-payroll-box .kf-staff-payroll-number:before {
            content: "";
            height: 50px;
            width: 1px;
            right: -1px;
            /* background: #1b71f4; */
            bottom: 4px;
            border-radius: 50%;
            position: absolute;
            animation: MOVE-BA 3s linear infinite;
        }

@keyframes MOVE-BA {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-140px);
        transform: translateY(-140px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.Crucial-payrol {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.Crucial-payrol-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #008dce2e;
    height: 100%;
}



    .Crucial-payrol-box img {
        width: 100%;
        height: 120px;
        margin: auto;
        object-fit: contain;
    }

.benefit-staff-payroll-box {
    display: flex;
}

    .benefit-staff-payroll-box p {
        margin-bottom: 0;
    }

    .benefit-staff-payroll-box span {
        max-width: 50px;
        margin-right: 20px;
    }

    .benefit-staff-payroll-box img {
        width: 100%;
    }

.payroll-idustry {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.payroll-idustry-box {
    border: 1px solid #008dce2e;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    background: #fff;
    position: relative;
    height: 100%;
}

    .payroll-idustry-box .box-shape {
        position: absolute;
        top: 18px;
        right: 16px;
        width: 30px;
        opacity: 0.2;
        transition: all .3s ease-in-out;
    }

    .payroll-idustry-box:hover .box-shape {
        transform: scale(1.3);
    }

    .payroll-idustry-box span {
        width: 60px;
        height: 60px;
        display: grid;
        place-content: center;
        margin: auto;
        border-radius: 100%;
        margin-bottom: 20px;
        box-shadow: 0 0 21px 0 #d1d1d12b;
        background: linear-gradient(45deg, #f3f3f3, #f4f8fb);
    }

    .payroll-idustry-box img {
        width: 30px;
    }

.digital-market-sbox {
    border-radius: 25px;
    padding: 30px;
    background: linear-gradient(45deg, #f3ffff4f, #fbf6ff7d);
    display: block;
    position: relative;
    overflow: hidden;
}

    .digital-market-sbox p {
        color: #2b2b2b;
    }

    .digital-market-sbox span {
        width: 50px;
        height: 50px;
        display: grid;
        place-content: center;
        border-radius: 100%;
        margin-bottom: 15px;
        background: #ffffff;
    }

    .digital-market-sbox:hover {
        background: linear-gradient(45deg, #cffeff, #ecdcf9);
    }

.sbox-alt {
    background: linear-gradient(45deg, #cffeff, #ecdcf9);
}

.digital-market-sbox .redict-img {
    width: 50px;
    position: absolute;
    right: 30px;
    top: 30px;
    opacity: 0.03;
}

.digital-market-sbox span img {
    width: 30px;
}

.digital-marketing-info ul {
    display: flex;
    gap: 30px;
}

    .digital-marketing-info ul li {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .digital-marketing-info ul li span:nth-child(1) {
            width: 60px;
            height: 60px;
            display: grid;
            place-content: center;
            border-radius: 100%;
            font-weight: 600;
            border: 2px solid #ff9100;
            position: relative;
            z-index: 0;
        }

            .digital-marketing-info ul li span:nth-child(1):before {
                content: "";
                position: absolute;
                top: -5px;
                left: -9px;
                height: 40px;
                width: 40px;
                background: #eef9ff;
                border-radius: 100%;
                z-index: -1;
            }

.digital-marketing-info {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}


.digital-marketing-info-img {
    position: relative;
    padding: 30px;
    z-index: 0;
}

    .digital-marketing-info-img:before {
        content: "";
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border: 3px solid #0078d38a;
        height: 80%;
        width: 75%;
        z-index: -1;
    }

    .digital-marketing-info-img img {
    }

    .digital-marketing-info-img .digi-1 {
        width: 80%;
        height: 370px;
        border: 2px solid #fff;
        border-radius: 15px;
        object-fit: cover;
    }

    .digital-marketing-info-img .digi-2 {
        border-radius: 15px;
        width: 50%;
        height: 260px;
        position: absolute;
        border: 2px solid #fff;
        right: -20px;
        bottom: -60px;
        object-fit: cover;
    }

    .digital-marketing-info-img .digi-ex {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #FF9800;
        width: 100px;
        height: 100px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        font-size: 12px;
        border: 3px solid #fff;
    }

        .digital-marketing-info-img .digi-ex p {
            margin-bottom: 0;
        }

    .digital-marketing-info-img .digi-point {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        gap: 10px;
        width: fit-content;
        position: absolute;
        bottom: 60px;
        left: -30px;
        border-left: 2px solid blue;
    }

    .digital-marketing-info-img p {
        margin-bottom: 0;
    }

    .digital-marketing-info-img .digi-point img {
        max-width: 40px;
    }

.why-choose-digital-marketing ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.wc-digital-marketing-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid #cfcfcf;
    transition: all 1s ease-in-out;
}

    .wc-digital-marketing-box:hover span {
        transform: scale(1.1);
    }

    .wc-digital-marketing-box span {
        background: #ffffff;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        outline: 8px solid #f7f9fb;
        box-shadow: 0 0 20px 12px #00000005;
    }

        .wc-digital-marketing-box span img {
            width: 25px;
        }

.digital-marketing-products {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.digital-marketing-products-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 0;
    border: 1px solid #ffffff;
    height: 100%;
}

    .digital-marketing-products-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        background: linear-gradient(45deg, #cffeff, #ecdcf9);
        height: 100%;
        width: 74px;
        z-index: -1;
        border-radius: 15px 0px 0px 15px;
    }

    .digital-marketing-products-box .dm-product-img {
        background: #ffffff;
        min-width: 80px;
        height: 80px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        outline: 8px solid #f7f9fb;
        box-shadow: 0 0 20px 12px #00000005;
    }

        .digital-marketing-products-box .dm-product-img img {
            max-width: 35px;
        }

    .digital-marketing-products-box p {
        margin-bottom: 0;
    }

.digital-marketing-connect-img .dg-c {
    border-radius: 60px;
    width: 100%;
    border: 4px solid #0078d317;
    width: 89%;
    height: 100% !important;
    min-height: 100%;
}

.digital-marketing-connect-img .image-2 {
    right: -36px;
    left: auto;
    top: 104px;
    scale: 0.6;
}

.seo-services {
    border: 1px solid #e1f6ff;
    border-radius: 30px;
    padding: 60px 30px 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ebdafc, #b2ebfb);
    z-index: 0;
    box-shadow: 0 0 7px 6px #b3b3b305;
}

    .seo-services:before {
        content: "";
        position: absolute;
        top: 132px;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/poly-1.svg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
        transform: scale(1.3);
        filter: brightness(100);
    }

    .seo-services span {
        background: #ffffff;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        outline: 1px solid #f7f9fb;
        outline-offset: 9px;
        box-shadow: 0 0 20px 12px #00000005;
        margin: auto;
        margin-bottom: 20px;
    }

        .seo-services span img {
            width: 30px;
        }

    .seo-services .line-1-shape {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: auto;
        width: 50%;
    }

    .seo-services .number {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: auto;
        width: 50%;
        color: #adadad;
        outline: none;
        box-shadow: none;
        font-size: 20px;
    }

.seo-feature-services {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.seo-feature-icon {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 0;
}

    .seo-feature-icon:before {
        content: "";
        position: absolute;
        /* top: 0px; */
        bottom: 0px;
        left: 29px;
        margin: auto;
        background: #eef8ff;
        height: 64%;
        width: 2px;
        z-index: -1;
    }

    .seo-feature-icon span {
        background: #eef9ff;
        min-width: 60px;
        height: 60px;
        border-radius: 100%;
        text-align: center;
        color: #edf8ff;
        display: grid;
        place-content: center;
        outline: 1px solid #edf8ff;
        outline-offset: 8px;
        margin-top: 15px;
    }

        .seo-feature-icon span img {
            width: 30px;
        }

.seo-feature-services-box {
    background: #fff;
    border-radius: 30px;
    padding: 25px;
}

.seo-feature img {
    width: 300px;
}

.seo-feature-content ul {
    padding-left: 20px;
}

    .seo-feature-content ul li {
        list-style: circle;
        margin-bottom: 10px;
        font-weight: 600;
        color: #414141;
    }

.smo-first-box {
    padding: 30px;
    position: relative;
}

    .smo-first-box:before {
        content: "";
        position: absolute;
        opacity: 0.1;
    }

    .smo-first-box.sfb-1:before {
        background: url("../images/arrow-1.svg");
        background-repeat: no-repeat;
        bottom: -57px;
        height: 81px;
        right: 38px;
        width: 194px;
    }

    .smo-first-box.sfb-2:before {
        background: url("../images/arrow-2.svg");
        height: 91px;
        right: 58px;
        top: -47px;
        width: 228px;
    }

    .smo-first-box.sfb-3:before {
        background: url("../images/arrow-3.svg");
        bottom: -43px;
        height: 233px;
        right: -50px;
        width: 229px;
    }

    .smo-first-box img {
        margin-bottom: 30px;
        width: 210px;
    }

.smo-info {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.smo-services-box {
    padding: 0px 30px 30px 30px;
    position: relative;
    text-align: center;
}

    .smo-services-box:before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        margin: auto;
        background: linear-gradient(45deg, #aee6fa, #fce8ff);
        height: 76px;
        width: 82%;
        border-radius: 60px;
        z-index: -1;
        border-top: 1px solid #b3b3b3;
        border-left: 1px solid #b3b3b3;
        border-right: 1px solid #b3b3b3;
    }

    .smo-services-box:after {
        content: "";
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        margin: auto;
        background: linear-gradient(45deg, #c0e8fd, #cee7fc);
        height: 30px;
        width: 30px;
        transform: rotate(45deg);
        z-index: -2;
        border-radius: 2px;
        border: 1px solid #b3b3b3;
    }

    .smo-services-box span {
        background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
        width: 80px;
        height: 80px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        margin: auto;
        margin-bottom: 60px;
        border: 1px solid #b3b3b3;
    }

        .smo-services-box span img {
            width: 30px;
        }

.smo-info .about-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

.smo-info .img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(.645,.045,.355,1) .4s;
    opacity: 0;
}


@keyframes img-anim-left {
    0% {
        transform: translate(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0
    }

    to {
        transform: translate(0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.smo-info .about-image .bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
    width: 100%;
}

.smo-info .about-image .grap-shape {
    position: absolute;
    bottom: 40px;
    left: 35px;
}

.smo-info .about-image .box-shape {
    position: absolute;
    right: 25px;
    top: 32%;
}

.smo-info .about-image .emoji-shape {
    position: absolute;
    top: 20%;
    left: 164px;
    animation: bounce-x 7s infinite linear;
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translate(30px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translate(30px)
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translate(10px)
    }

    to {
        -webkit-transform: translateX(30px);
        transform: translate(30px)
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    to {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

.smo-info ul {
    margin-bottom: 30px;
}

    .smo-info ul li {
        font-weight: 600;
        display: flex;
        gap: 10px;
        margin-bottom: 10px
    }

        .smo-info ul li img {
            width: 25px;
        }

.smo-social-media {
    background: aliceblue;
    position: relative;
}

.soc-list:before {
    background: linear-gradient(90deg, #ff000000, #f0f8ff);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0px;
    height: 100%;
    width: 8%;
    z-index: 2;
}

.soc-list:after {
    background: linear-gradient(90deg, #f0f8ff, #eef8ff1c);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0px;
    height: 100%;
    width: 8%;
}

.cocial-media-list {
    display: flex;
    width: max-content;
    gap: 29px;
    margin-bottom: 30px;
    position: relative;
}

    .cocial-media-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px solid #daefff;
        border-radius: 30px;
        padding: 5px;
        padding-right: 30px;
        background: #ffffffa8;
        box-shadow: 0 0 7px 8px #dbdbdb1f;
    }

    .cocial-media-list::after {
        content: "";
        display: flex;
    }

    .cocial-media-list li span {
        background: #fff;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        text-align: center;
        display: grid;
        place-content: center;
        border: 1px solid #3f51b51a;
    }

.soc-list {
    overflow: hidden;
    position: relative;
}

.scroll-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}


.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.ppc-what-we-do-box span {
    background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    display: grid;
    place-content: center;
    margin-bottom: 15px;
}

    .ppc-what-we-do-box span img {
        width: 30px;
    }

.pay-per-click {
    width: 250px;
}

.ppc-process {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.ppc-services-box {
    background: #eef8ff;
    border-radius: 20px;
    padding: 15px;
    height: 100%;
}

    .ppc-services-box span {
        background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
        width: 60px;
        height: 60px;
        border-radius: 100%;
        text-align: center;
        color: #fff;
        display: grid;
        place-content: center;
        margin-bottom: 15px;
    }

        .ppc-services-box span img {
            width: 30px;
        }

.ppc-process-box {
    display: flex;
    gap: 15px;
}

    .ppc-process-box .ppc-process-number {
        font-size: 60px;
        opacity: 0.4;
        color: #ff9700;
        font-weight: 900;
    }

    .ppc-process-box:hover .ppc-process-number {
        opacity: 1;
    }

.feature-online-class {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.f-online-class-box {
    position: relative;
    padding-left: 40px;
}

    .f-online-class-box span {
        position: absolute;
        top: 8px;
        left: 0;
        background: #0078d3;
        width: 25px;
        height: 25px;
        display: grid;
        place-content: center;
        border-radius: 100%;
        color: #ffffff;
        outline: 1px solid #0078d3;
        outline-offset: 3px;
        font-size: 14px;
    }

.services-online-class-img {
    position: relative;
}

.services-online-class-img-alt {
    position: relative;
}

.services-online-class-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(45deg, #0078d3, #0ed3ff);
    z-index: -1;
    border-radius: 20px 0px 0px 20px;
    opacity: 0.1;
}

.services-online-class-img-alt:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(45deg, #0078d3, #0ed3ff);
    z-index: -1;
    border-radius: 0px 20px 20px 0px;
    opacity: 0.1;
}

.exam-management-system-box {
    position: relative;
    padding: 15px 15px;
    outline-offset: 20px;
    border-radius: 15px;
}

    .exam-management-system-box.emsb-1 {
        background: #fff8f8;
        outline: 2px solid #ffd1d1;
    }

    .exam-management-system-box.emsb-2 {
        background: #f7ffee;
        outline: 2px solid #e4f9cd;
    }

    .exam-management-system-box.emsb-3 {
        background: #f8f4ff;
        outline: 2px solid #e5daf7;
    }

    .exam-management-system-box p {
        margin-bottom: 0;
    }

    .exam-management-system-box span {
        width: 60px;
        height: 60px;
        display: grid;
        place-content: center;
        margin: auto;
        background: #0078d308;
        border-radius: 30px 0px 30px 30px;
        margin-bottom: 15px;
    }

    .exam-management-system-box img {
        width: 30px;
    }

    .exam-management-system-box:hover span {
        background: #ffffff;
    }


    .exam-management-system-box:hover img {
        filter: brightness(0);
    }

    .exam-management-system-box:before {
        content: "";
        position: absolute;
        bottom: -23px;
        right: -22px;
        width: 100px;
        height: 100px;
        border-right: 6px solid #ffffff;
        border-bottom: 7px solid #ffffff;
        border-radius: 0px 0px 36px 0px;
    }

    .exam-management-system-box:after {
        content: "";
        position: absolute;
        bottom: 65px;
        right: -28px;
        border-right: 7px solid #ffffff;
        border-bottom: 7px solid #ffffff;
        border-left: 7px solid #ffffff;
    }

    .exam-management-system-box.emsb-1:after {
        border-top: 7px solid #ffd1d1;
    }

    .exam-management-system-box.emsb-2:after {
        border-top: 7px solid #e4f9cd;
    }

    .exam-management-system-box.emsb-3:after {
        border-top: 7px solid #e5daf7;
    }

.exam-management-info {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.feature-exam-management-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .feature-exam-management-box li {
        border: 2px solid #fff;
        border-radius: 30px;
        padding: 30px 30px 61px 30px;
        position: relative;
    }

        .feature-exam-management-box li span {
            width: 80px;
            height: 1px;
            border-radius: 10px;
            position: absolute;
            bottom: 32px;
            right: -44px;
            display: block;
            background: #b7cddf;
            z-index: 1;
        }

        .feature-exam-management-box li:nth-child(1) {
            background: #fff8f8;
        }

        .feature-exam-management-box li:nth-child(2) {
            background: #f7ffee;
        }

        .feature-exam-management-box li:nth-child(3) {
            background: #f8f4ff;
        }

            .feature-exam-management-box li:nth-child(3) span {
                display: none;
            }

        .feature-exam-management-box li:nth-child(4) {
            background: #f0fdfa;
        }

        .feature-exam-management-box li:nth-child(5) {
            background: #f2f8fd;
        }

        .feature-exam-management-box li:nth-child(6) {
            background: #f4fffe;
        }

            .feature-exam-management-box li:nth-child(6) span {
                display: none;
            }

        .feature-exam-management-box li span:before, .feature-exam-management-box li span:after {
            content: "";
            position: absolute;
            width: 15px;
            height: 15px;
            z-index: 1;
            outline: 1px solid #b7cddf;
            outline-offset: 3px;
            background: #dddddd;
            border-radius: 100%;
            bottom: -6px;
        }

        .feature-exam-management-box li span:before {
            right: -18px;
        }

        .feature-exam-management-box li span:after {
            left: -18px;
        }

.Benefits-exam-management {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.Benefits-exam-management-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #ffffff;
}

    .Benefits-exam-management-box .b-em-heading-1 {
        background: #ffeaea;
        padding: 15px;
        text-align: center;
    }

    .Benefits-exam-management-box .b-em-heading-2 {
        background: #eaffd3;
        padding: 15px;
        text-align: center;
    }

    .Benefits-exam-management-box .b-em-heading-3 {
        background: #e8dcfd;
        padding: 15px;
        text-align: center;
    }

    .Benefits-exam-management-box ul {
        position: relative;
        padding: 30px;
    }

        .Benefits-exam-management-box ul:before {
            position: absolute;
            content: "";
            top: 38px;
            left: 34px;
            height: 59%;
            width: 2px;
            background: #f5f5f5;
        }

        .Benefits-exam-management-box ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 30px;
        }

            .Benefits-exam-management-box ul li:before {
                content: "";
                position: absolute;
                width: 10px;
                height: 10px;
                z-index: 1;
                outline: 1px solid #b7cddf;
                outline-offset: 2px;
                background: #dddddd;
                border-radius: 100%;
                top: 7px;
                left: 0
            }

.features-hr-management-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .features-hr-management-box li {
        border-bottom: 1px solid #ebebeb;
        border-right: 1px solid #ebebeb;
        padding: 30px;
        position: relative;
        background: linear-gradient(0deg, #f2fcff, #ffffff);
    }

        .features-hr-management-box li:nth-child(1):before, .features-hr-management-box li:nth-child(2):before, .features-hr-management-box li:nth-child(3):before {
            content: "";
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            background: #0078d3;
            z-index: 1;
        }

        .features-hr-management-box li:nth-child(5), .features-hr-management-box li:nth-child(6), .features-hr-management-box li:nth-child(7), .features-hr-management-box li:nth-child(8) {
            border-bottom: 0px;
        }

        .features-hr-management-box li:nth-child(4), .features-hr-management-box li:nth-child(8) {
            border-right: 0px;
        }

        .features-hr-management-box li span {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            display: grid;
            place-content: center;
            background: url("../images/hr-feature-shape.svg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }

        .features-hr-management-box li img {
            width: 40px;
        }

.hr-management-services {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.hr-management-services-box {
    border: 1px solid #cde0ef;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

    .hr-management-services-box:before {
        content: "";
        position: absolute;
        right: -1px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 40%;
        height: 100%;
        background: linear-gradient(45deg, #cde0ef, #e9dafc);
        clip-path: polygon(100% 0, 0 100%, 100% 100%);
        z-index: -1;
    }

.hr-msb-alt:before {
    left: 0;
    right: auto;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.hr-management-services-box ul {
    padding-left: 20px;
}

    .hr-management-services-box ul li {
        font-weight: 600;
        margin-bottom: 10px;
        list-style: disc;
    }

.hr-management-services-box .hr-management-services-img {
    height: 300px;
    width: 300px;
    padding: 30px;
    margin: auto;
    position: relative;
}

    .hr-management-services-box .hr-management-services-img img {
        height: 100%;
        width: 100%;
    }

.features-fee-management-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

    .features-fee-management-box li {
        border: 1px solid #f5f5f5;
        padding: 15px;
        border-radius: 30px;
        background: linear-gradient(45deg, #fff4f4, #f1fbff);
        box-shadow: 0 0 6px 11px #f9f9f91c;
        cursor: grab;
    }

.fee-management-services {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.fee-management-services-box {
    border: 1px solid #c8dceb;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-left: 100px;
}

    .fee-management-services-box span {
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 60px;
        height: 60px;
    }

        .fee-management-services-box span img {
        }

    .fee-management-services-box:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: -80px;
        width: 140px;
        height: 140px;
        background: linear-gradient(45deg, #fff4f4, #f1fbff);
        transform: rotate(65deg);
        z-index: 0;
    }

    .fee-management-services-box p {
        margin-bottom: 0px;
    }

.fee-management-choose-box {
    position: relative;
}

    .fee-management-choose-box:before {
        position: absolute;
        content: "";
        height: 95%;
        width: 2px;
        background: #f1f1f1;
        left: 40px;
        z-index: -1;
    }

    .fee-management-choose-box li {
        display: flex;
        gap: 30px;
    }

        .fee-management-choose-box li .fee-management-choose-image {
            border: 1px solid #c8dceb;
            border-radius: 100%;
            min-width: 80px;
            height: 80px;
            display: grid;
            place-content: center;
            background: linear-gradient(45deg, #fff4f4, #f1fbff);
            outline: 5px solid #ffffff;
            outline-offset: -7px;
        }

            .fee-management-choose-box li .fee-management-choose-image img {
                width: 40px;
            }

        .fee-management-choose-box li .fee-management-choose-content {
        }

.fee-management-process {
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.fee-management-process-box {
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: 35px 0px;
}


.fee-management-process .step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(#ffffff, #eaf7fe);
    border-radius: 100%;
    text-align: center;
}

    .fee-management-process .step:not(:last-of-type) {
        /* margin-right: 2rem; */
    }

    .fee-management-process .step:nth-child(odd) {
        flex-direction: column-reverse;
        margin-top: 0.4rem;
    }

        .fee-management-process .step:nth-child(odd) .circ::before, .fee-management-process .step:nth-child(odd) .circ::after {
            margin-top: 0;
        }

        .fee-management-process .step:nth-child(odd) .half {
            transform: rotate(180deg);
            top: 0;
        }

.fee-management-process .circ {
    width: 6rem;
    height: 6rem;
    border-radius: 6rem;
    position: relative;
}

    .fee-management-process .circ::before, .fee-management-process .circ::after {
        content: '';
        width: 0.5rem;
        height: 0.5rem;
        position: absolute;
        background: #0078d3;
        border-radius: 0.5rem;
        top: 50%;
        margin-top: 1px;
        transform: translateY(-50%);
    }

    .fee-management-process .circ::before {
        left: -2.2rem;
    }

    .fee-management-process .circ::after {
        right: -2.2rem;
    }

.fee-management-process .half {
    position: absolute;
    top: 50%;
    left: 0;
    border: 2px solid #0078d3;
    width: 6rem;
    height: 3rem;
    border-radius: 0 0 3rem 3rem;
    border-top-width: 0;
}

    .fee-management-process .half::before, .fee-management-process .half::after {
        content: '';
        width: 2.2rem;
        height: 2px;
        background: #0078d3;
        display: block;
        position: absolute;
        top: 0%;
    }

    .fee-management-process .half::before {
        right: 100%;
    }

    .fee-management-process .half::after {
        left: 100%;
    }

.fee-management-process .inner {
    border-radius: 5rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    background: linear-gradient(180deg, #ffe7e7 0%, rgb(176 219 255) 100%);
    outline: 1px solid #ffffff;
    outline-offset: -6px;
    display: grid;
    place-content: center;
}

    .fee-management-process .inner img {
        width: 45px;
    }

.transpot-app-feature-box {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    display: flex;
    gap: 24px;
    border-radius: 15px;
    position: relative;
}

    .transpot-app-feature-box .transpot-app-feature-icon span {
        min-width: 60px;
        height: 60px;
        background: #0176d3;
        display: grid;
        place-content: center;
        border-radius: 50px 50px 50px 10px;
        box-shadow: -10px -10px 0 #ecedff;
    }

        .transpot-app-feature-box .transpot-app-feature-icon span img {
            width: 30px;
            filter: brightness(100);
        }

    .transpot-app-feature-box .transpot-app-feature-number {
        position: absolute;
        left: 20px;
        bottom: 0px;
        font-size: 50px;
        font-weight: 400;
        color: transparent;
        -webkit-text-stroke: 1px #757f952b;
    }

.about-transport-app {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

    .about-transport-app .about-image img {
        border-radius: 100px;
    }


    .about-transport-app .about-image .img-2 {
        margin-left: -20px;
        margin-top: 130px;
        border: 10px solid #fff;
    }

    .about-transport-app .about-image .img-3 {
        margin-top: -20px;
        margin-left: -50px;
        border: 10px solid #fff;
    }

    .about-transport-app .about-experience {
        background: #0176d3;
        position: absolute;
        right: 50px;
        bottom: 20px;
        padding: 14px 25px;
        border-radius: 100px;
        text-align: center;
        border: 10px solid #fff;
    }

    .about-transport-app .transport-about-content .about-item {
        display: flex;
        gap: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 15px;
        align-items: center;
    }

        .about-transport-app .transport-about-content .about-item .icon {
            min-width: 65px;
            height: 65px;
            line-height: 65px;
            text-align: center;
            background: #0176d3;
            border-radius: 50px;
            display: grid;
            place-content: center;
        }

            .about-transport-app .transport-about-content .about-item .icon img {
                width: 45px;
                filter: brightness(0) invert(1);
            }

.transport-app-services-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    height: 100%;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
}

    .transport-app-services-box span {
        width: 60px;
        height: 60px;
        background: #0176d3;
        display: grid;
        place-content: center;
        border-radius: 50px 50px 50px 10px;
        box-shadow: 10px 10px 0 #ecedff;
        margin-bottom: 30px;
    }

        .transport-app-services-box span img {
            width: 30px;
        }

    .transport-app-services-box .t-s-number {
        position: absolute;
        right: 20px;
        top: 24px;
        font-size: 50px;
        font-weight: 400;
        color: #efefef;
        -webkit-text-stroke: 1px #757f9514;
    }

.transport-app-process {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.transport-app-process-box {
    display: flex;
    gap: 25px;
    position: relative;
}

    .transport-app-process-box .transport-app-process-icon {
        position: relative;
        min-width: 60px;
        height: 60px;
        line-height: 58px;
        background: #0176d3;
        text-align: center;
        border-radius: 50px 50px 50px 10px;
        display: grid;
        place-content: center;
        outline: 2px solid #fff;
        outline-offset: -5px;
    }

        .transport-app-process-box .transport-app-process-icon img {
            width: 30px;
        }

.payment-gateway-what-box {
    position: relative;
}

    .payment-gateway-what-box img {
        width: 60px;
        margin-bottom: 25px;
    }

    .payment-gateway-what-box .arrow-1 {
        position: absolute;
        right: -100px;
        top: 0;
        width: auto;
    }

    .payment-gateway-what-box .arrow-1-1 {
        position: absolute;
        right: -100px;
        top: -47px;
        width: auto;
    }

.payment-gateway-about {
    background: linear-gradient(rgb(255, 255, 255) 0%, rgb(234, 245, 254) 100%);
}

.payment-gateway-about-img {
    position: relative;
}

    .payment-gateway-about-img .pg-1 {
        margin-left: 50px;
        border-radius: 30px;
        object-fit: cover;
        width: 80%;
    }

    .payment-gateway-about-img .pg-2 {
        position: absolute;
        height: 55%;
        bottom: 40px;
        left: 0;
        border: 10px solid #fff;
        border-radius: 40px;
    }

    .payment-gateway-about-img .pg-clients {
        width: 150px;
        height: 150px;
        background: #0176d3;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        border-radius: 100%;
        display: grid;
        place-content: center;
        outline: 2px solid #fff;
        outline-offset: -8px;
    }

.payment-gateway-about-list li {
    display: flex;
    gap: 15px;
}

.payment-gateway-about-list .gateway-about-icon {
    box-shadow: 0px 0px 0px 0px rgba(157.99999999999997, 154, 221, 0.12);
    height: 65px;
    min-width: 65px;
    border-radius: 100%;
    display: grid;
    place-content: center;
    border: 1px solid #0078d3;
}

    .payment-gateway-about-list .gateway-about-icon:hover {
        background: #0176d3;
    }

    .payment-gateway-about-list .gateway-about-icon img {
        width: 30px;
    }

.payment-gateway-feature-box {
    border: 1px solid #f9f5ff;
    padding: 40px 20px 20px 20px;
    border-radius: 30px;
    position: relative;
    background: #fdfdfd;
}

    .payment-gateway-feature-box span {
        position: absolute;
        top: -35px;
        left: 30px;
        box-shadow: 0px 0px 0px 0px rgba(157.99999999999997, 154, 221, 0.12);
        height: 65px;
        min-width: 65px;
        border-radius: 100%;
        display: grid;
        place-content: center;
        border: 1px solid #EAE5F1;
        background: #0176d3;
    }

        .payment-gateway-feature-box span img {
            width: 35px;
        }

.about-digital-content ul li {
    margin-bottom: 0px;
    font-weight: 600;
    padding-left: 0;
    padding-bottom: 0;
}

    .about-digital-content ul li span {
        color: blue;
        padding-right: 5px;
    }

.digital-content-feature {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.digital-content-feature-box {
    padding: 30px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background: #fff;
}

.career-list {
    background: linear-gradient(0deg, aliceblue 80%, #fff);
}

.career-list-box {
    background: #fff;
    border: 2px solid #ffbd009e;
    padding: 25px;
    border-radius: 30px;
    position: relative;
    height: 100%;
}

    .career-list-box ul {
        display: flex;
        gap: 30px;
        margin: 10px 0;
    }

        .career-list-box ul li {
            position: relative;
        }

            .career-list-box ul li:before {
                content: "";
                position: absolute;
                right: -15px;
                top: 0;
                bottom: 0;
                margin: auto;
                /* background: #181818; */
                height: 40%;
                width: 1px;
            }

    .career-list-box .career-flag {
        position: absolute;
        top: -10px;
        right: 34px;
        padding: 5px 15px;
        background: #ff9700;
        border-radius: 0px 0px 5px 5px;
        color: #fff;
    }

        .career-list-box .career-flag:before {
            content: "";
            position: absolute;
            top: 0px;
            left: -7px;
            border-top: 4px solid #ffffff00;
            border-left: 4px solid #ffffff00;
            border-right: 4px solid #ffbd00;
            border-bottom: 4px solid #ffbd00;
        }

        .career-list-box .career-flag:after {
            content: "";
            position: absolute;
            top: 0px;
            right: -7px;
            border-top: 4px solid #007ad300;
            border-left: 4px solid #ffbd00;
            border-right: 4px solid #2196f300;
            border-bottom: 4px solid #ffbd00;
        }

    .career-list-box .vacancy-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #ebebeb;
        padding-top: 15px;
    }

.job-apply-details {
    position: relative;
    padding-top: 100px;
    text-align: center;
}


.job-apply-content {
    background: #f2f6ff;
    border-radius: 4px;
    border: 1px solid #c4c4ec42;
    padding: 10px;
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
}

.job-apply-details img {
    width: 80%;
    margin: auto;
    text-align: center;
}

.description-sec ul li {
    position: relative;
    padding-left: 30px;
    list-style: none;
}

    .description-sec ul li:before {
        content: "";
        position: absolute;
        top: 7px;
        left: 0;
        width: 18px;
        height: 18px;
        background: url(../images/green-circle-tick-mark.svg) center / cover no-repeat;
    }

.vacancy-sub-heading {
    font-weight: 700;
    margin-bottom: 5px;
}

.popular-block-img {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.pb-img-1 {
    background: url("../images/pb-img-1.jpg")
}

.pb-img-2 {
    background: url("../images/pb-img-2.jpg")
}

.pb-img-3 {
    background: url("../images/pb-img-3.jpg")
}

.pb-img-4 {
    background: url("../images/pb-img-4.jpg")
}

.popular-block-img img {
    width: 300px;
}



/*trsted-sec*/

.Trusted-health {
    position: relative;
    padding: 80px 0 0px;
}

.trsted-sec {
    text-align: center;
    margin-top: 20px;
}

    .trsted-sec span {
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #C9C9DD;
        border-radius: 150px;
        background: linear-gradient(180deg, #fff 0%, #F1F1FA 100%);
        color: #7f7e97;
        transition: all .3s ease-out 0s;
        position: relative;
        margin: auto;
        margin-bottom: 15px;
    }

        .trsted-sec span:before {
            content: "";
            position: absolute;
            top: 26px;
            right: 26px;
            background-image: url(../images/cat_star.svg);
            background-repeat: no-repeat;
            background-size: contain;
            width: 21px;
            height: 26px;
            pointer-events: none;
        }

        .trsted-sec span img {
            width: 45px;
        }

    .trsted-sec:hover span img {
        filter: brightness(0.5);
    }

    .trsted-sec:hover span {
        box-shadow: 6px 5px #0ed3ff38;
        background: linear-gradient(45deg, #0078d3, #0ed3ff);
    }

.Trusted-key-feature {
    position: relative;
}

.Trusted--featue-box {
    border: 4px solid #0176d31f;
    padding: 30px 30px 10px 30px;
    border-radius: 20px;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.trusted-img {
    border: 10px solid #ffffff85;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

    .trusted-img img {
        width: 100%;
        clip-path: polygon(7% 0, 95% 0, 100% 7%, 100% 95%, 95% 100%, 7% 100%, 0 95%, 0 7%);
        border: 4px solid #0176d3;
    }

.Explore-features {
    position: relative;
    padding: 0px 0 80px;
}

    .Explore-features .nav-pills {
        border-bottom: 1px solid #d5d5d5;
        padding-bottom: 10px;
        /* width: fit-content; */
        /* margin: auto; */
    }

        .Explore-features .nav-pills .nav-link {
            background-color: #f1f1f1;
            color: var(--theme-color-dark);
            position: relative;
            padding: 10px 20px 10px;
            letter-spacing: 1px;
            border-radius: 5px;
            margin: 0px 5px;
            font-weight: 600;
        }

.nav-pills .nav-link.active, .nav-pills .show &gt; .nav-link {
    background: var(--primary-color);
    color: #ffff;
}

.Explore-features .nav-pills:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
    width: 0px;
    height: 0px;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #444;
    border-bottom: 0px;
    display: none;
}

.sedduling-payments {
    border-radius: 10px;
    align-items: center;
    gap: 9px;
    padding: 5px;
    text-decoration: none;
    /* transition: background-color .2s, box-shadow .2s; */
    width: 100%;
    /* box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 13%); */
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    display: flex;
    background: #fff;
    /* box-shadow: 0 5px 15px rgb(0 0 0 / 12%); */
}

    .sedduling-payments:hover {
        background: #fff;
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .09);
    }

    .sedduling-payments img {
        width: 26px;
    }

.health-benifits {
    position: relative;
    padding: 0px 0 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
}

.benifits-text-sec ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    border-radius: 50px;
    gap: 20px 25px;
    align-items: center;
}

    .benifits-text-sec ul li {
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        background: #fff;
        color: #000000;
        transition: all .3s ease-out 0s;
        position: relative;
        padding: 13px 10px 13px 20px;
        height: 100%;
        font-size: 17px;
    }

        .benifits-text-sec ul li span {
            background: var(--primary-color);
            border-radius: 34px;
            line-height: 25px;
            font-size: 11px;
            position: absolute;
            width: 25px;
            height: 25px;
            text-align: center;
            color: #fff;
            font-weight: 600;
            left: -8px;
            top: -8px;
        }

.Benifits-img {
    width: 400px;
    margin: auto;
}


.Health-video {
    position: relative;
    padding: 50px 0 80px;
}

.Video-sec {
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    display: grid;
    gap: 20px;
    align-items: center;
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
}

.video-img {
    position: relative;
    z-index: 1;
}

    .video-img img {
        position: absolute;
        right: 0;
        bottom: -31px;
        content: "";
        height: 350px;
        object-fit: cover;
        z-index: -2;
    }

.appointment-btn {
    background: transparent;
    color: var(--primary-color);
}

    .appointment-btn:hover {
        color: #fff;
    }


.serviceBox-1 {
    color: var(--main-color);
    text-align: center;
    padding: 30px 20px 25px;
    position: relative;
    z-index: 1;
    height: 100%;
}

    .serviceBox-1:before,
    .serviceBox-1:after {
        content: "";
        border-radius: 25px;
        border: 10px solid var(--primary-color);
        clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: -1;
    }

    .serviceBox-1:after {
        border-width: 3px;
        clip-path: polygon(0 0, 60% 0, 55% 5%, 96% 44%, 100% 40%, 100% 100%, 40% 100%, 43% 95%, 5% 55%, 0 60%);
        top: 3px;
        bottom: 3px;
        right: 3px;
        left: 3px;
        z-index: -1;
    }



.Facility-featur {
    position: relative;
    padding: 80px 0 80px;
}

.Trusted--featue-box ul, li {
    padding: 0px;
    margin: 0px;
    padding-left: 15px;
    padding-bottom: 10px;
}

.Security-benifits .Security-featue ul, li {
    padding: 0px;
    margin: 0px;
    padding-bottom: 8px;
}

.Security-benifits {
    padding: 80px 0px 80px;
}

.Security-featue {
    border: 4px solid #0176d31f;
    padding: 30px;
    border-radius: 20px;
}

.Security-benifits .Security-featue ul li i {
    color: var(--primary-color);
    padding-right: 10px;
}



/*textimonial csss*/

.testimonial {
    margin: 0 20px 50px;
}

    .testimonial .pic {
        display: inline-block;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin: 0 15px 15px 0;
    }

        .testimonial .pic img {
            width: 100%;
            height: auto;
            border-radius: 50%;
        }

    .testimonial .testimonial-profile {
        display: inline-block;
        position: relative;
        top: 15px;
    }

    .testimonial .title {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #2f2f2f;
        text-transform: capitalize;
        margin: 0 0 7px 0;
    }

    .testimonial .post {
        display: block;
        font-size: 14px;
        color: #5d7aa7;
    }

    .testimonial .description {
        padding: 20px 22px;
        background: #1f487e;
        font-size: 15px;
        color: #fff;
        line-height: 25px;
        margin: 0;
        position: relative;
    }

        .testimonial .description:before,
        .testimonial .description:after {
            content: "";
            border-width: 18px 0 0 18px;
            border-style: solid;
            border-color: #5d7aa7 transparent transparent;
            position: absolute;
            bottom: -18px;
            left: 0;
        }

        .testimonial .description:after {
            border-width: 18px 18px 0 0;
            left: auto;
            right: 0;
        }

.owl-theme .owl-controls {
    margin-top: 10px;
    margin-left: 30px;
}

    .owl-theme .owl-controls .owl-buttons div {
        opacity: 0.8;
        background: #fff;
    }

.owl-prev:before,
.owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #1f487e;
}

.owl-next:before {
    content: "\f054";
}

.Bottom-Contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

    .Bottom-Contact .inner {
        background: linear-gradient(180deg, #fff 0%, #F1F1FA 100%);
        border: 1px solid #e5e5e5;
        padding: 25px 15px;
    }

        .Bottom-Contact .inner .img-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50px;
            margin: auto;
            margin-bottom: 10px;
            background: linear-gradient(180deg, #fff 0%, #F1F1FA 100%);
            border: 1px solid #e5e5e5;
        }

        .Bottom-Contact .inner img {
            width: 40px;
            filter: none;
        }


/*result-analysis*/
.analysis-Box {
    text-align: center;
    padding: 10px 35px 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 100%;
}

    .analysis-Box:before,
    .analysis-Box:after {
        content: '';
        background: linear-gradient(#0176d3, #0176d3, #0d8bcd, #0d8bcd);
        height: 900px;
        border-radius: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: 2px;
        right: 2px;
        top: 50%;
        z-index: -1;
    }

    .analysis-Box:after {
        background: #f5f5f5;
        border-radius: 0;
        height: 100%;
        transform: translateY(0);
        top: 0;
        left: 10px;
        right: 10px;
        box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
    }

.analysis-Box-icon span {
    background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    display: grid;
    place-content: center;
    margin: auto;
    margin-bottom: 15px;
}

    .analysis-Box-icon span img {
        width: 30px;
    }

.result-benifits li {
    padding: 15px;
    border-radius: 30px;
    background: #ffff;
    border: 1px solid #00000017;
    cursor: grab;
}

.result-benifits-img {
    text-align: center;
}

    .result-benifits-img img {
        height: 400px;
    }

.Explore-features h4 {
    font-size: 18px;
}

.sedduling-payments h6 {
    font-size: 13px;
}

.menu-btn-ai {
    width: 25px;
    margin-left: 5px;
}

.Facility-featur .serviceBox-1 span {
    background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    display: grid;
    place-content: center;
    margin: auto;
    margin-bottom: 15px;
}

    .Facility-featur .serviceBox-1 span img {
        width: 30px;
    }


.counter {
    background: var(--primary-color);
    text-align: center;
    padding: 40px 12px 10px;
    border-radius: 10px;
    position: relative;
    margin: 50px auto 0;
    z-index: 1;
}

    .counter:before {
        content: "";
        background: #fff;
        width: calc(100% - 8px);
        height: calc(100% + 15px);
        border-radius: 10px 10px;
        transform: translateX(-50%) translateY(-50%);
        position: absolute;
        top: 50%;
        left: 50%;
        box-shadow: 0 0 10px rgb(0 0 0 / 17%);
        z-index: -1;
    }

    .counter .counter-value {
        font-size: 30px;
        font-weight: 600;
    }

    .counter .counter-icon {
        color: #fff;
        background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        transform: translateX(-50%);
        position: absolute;
        top: -50px;
        left: 50%;
    }

        .counter .counter-icon img {
            width: 35px;
        }





.trustBox {
    border: 2px solid var(--primary-color);
    background: #fff;
    padding: 15px 15px 0px;
    margin: 20px 15px 0 0;
    border-radius: 5px 5px;
    position: relative;
    z-index: 1;
    text-align: center;
    height: 100%;
}

    .trustBox .main-heading-1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .trustBox:before,
    .trustBox:after {
        content: "";
        background: var(--primary-color);
        width: 100%;
        height: 100%;
        border-radius: 5px 5px;
        position: absolute;
        top: -15px;
        right: -13px;
        z-index: -1;
    }

    .trustBox:after {
        top: -10px;
        left: 8px;
        box-shadow: 0 5px 15px rgb(231 233 235);
        background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    }

    .trustBox .trust-icon {
        margin: 0px auto 10px;
    }

        .trustBox .trust-icon span {
            background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
            width: 80px;
            height: 80px;
            border-radius: 100%;
            text-align: center;
            color: #fff;
            display: grid;
            place-content: center;
            margin: auto;
        }

            .trustBox .trust-icon span img {
                width: 40px;
            }

.sedduling-payments span {
    background: linear-gradient(45deg, #c0e7fc, #e0e8fd);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    display: grid;
    place-content: center;
}

    .sedduling-payments span img {
        width: 20px;
    }


.timeline-content {
    color: #fff;
    background: linear-gradient(#e52d27, #b31217);
    padding: 15px 15px 35px 135px;
    border-radius: 50px 0;
    border: 20px solid #e7e7e7;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .timeline-content:before {
        content: '';
        background-color: rgba(255, 255, 255, 0.25);
        height: 300px;
        width: 300px;
        border-radius: 50%;
        position: absolute;
        left: -180px;
        bottom: -125px;
        z-index: -1;
    }

.timeline-icon {
    font-size: 60px;
    position: absolute;
    left: 20px;
    bottom: 15px;
}

.info-img {
    text-align: center;
}

    .info-img img {
        width: 55%;
    }

.web-none {
    display: none;
}


.main-0seddule {
    border-radius: 10px;
    align-items: center;
    gap: 10px;
    padding: 15px 14px;
    text-decoration: none;
    transition: background-color .2s, box-shadow .2s;
    /* width: 100%; */
    /* box-shadow: 6px 6px 10px 0px rgb(14 16 16 / 13%); */
    text-align: center;
    cursor: pointer;
    /* display: flex
; */
    background: linear-gradient(180deg, #FFFFFF 0%, rgb(234, 245, 254) 100%);
    box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
    height: 100%;
    position: relative;
}


    .main-0seddule:before {
        content: '';
        position: absolute;
        border-radius: 5px;
        border: 3px solid var(--primary-color);
        clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }


/**************************** Pricing section page css start  *********************************/
.Pricing-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background: linear-gradient(360deg, #FFFFFF 22.92%, #FFD769 274.03%);
    background-size: cover;
    place-content: center;
    position: relative;
    padding: 130px 0 0px;
    height: auto;
    z-index: 1;
}


.Pricing-tab .tabs {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.Pricing-tab .tab {
    background: #0077d9;
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
}

    .Pricing-tab .tab a {
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        margin: 0 2px;
        transition: background 0.3s;
    }

        .Pricing-tab .tab a.active {
            background: #fff;
            color: #0077d9;
            font-weight: bold;
        }

.Pricing-tab .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 40px auto;
    align-items: baseline;
}

.Pricing-tab .item {
    text-align: center;
    cursor: pointer;
}

.Pricing-tab .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 9px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Pricing-tab .icon-box img {
        width: 40px;
        height: 40px;
    }

.Pricing-tab .item span {
    font-size: 14px;
    color: #333;
}

.Pricing-tab .yellow {
    background: #f8b500;
}

.Pricing-tab .blue {
    background: #3498db;
}

.Pricing-tab .green {
    background: #00695c;
}

.Pricing-tab .orange {
    background: #f4511e;
}

.Pricing-tab .maroon {
    background: #8e0000;
}

.Pricing-tab .light-green {
    background: #4caf50;
}

.Pricing-tab .purple {
    background: #9c27b0;
}

.Pricing-tab .gray {
    background: #607d8b;
}

.active-icon .icon-box {
    width: 110px;
    height: 110px;
    transform: scale(1.05);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.active-icon span {
    font-weight: 700;
}

.Pricing-tab .tab-content {
    display: none;
}

    .Pricing-tab .tab-content.active {
        display: grid;
    }


.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.active-icon .icon-box {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-container .card {
    position: relative;
    width: 216px;
    padding: 15px;
    border-radius: 16px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    border: none;
}

    .pricing-container .card .plan {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pricing-container .card .price {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .pricing-container .card .per {
        font-size: 14px;
        margin-bottom: 0;
        color: #555;
    }

    .pricing-container .card hr {
        margin: 10px 0;
        border: none;
        border-top: 1px solid #000000;
    }

.features {
    font-size: 13px;
    /* line-height: 1.7; */
    margin-bottom: 20px;
}

    .features p {
        margin: 0 0 6px 0;
    }

        .features p::before {
            content: '✔ ';
            color: #fff;
            font-weight: 100;
            background: #1C3345;
            font-size: 10px;
            padding: 3px;
            text-align: center;
            margin-right: 6px;
            border-radius: 3px;
        }

.try-btn {
    margin-top: auto;
    text-align: center;
}

    .try-btn a {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #0176D3;
        color: white;
        font-weight: 600;
        font-size: 14px;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .try-btn a i {
            margin-left: 8px;
            font-size: 12px;
        }

        .try-btn a:hover {
            background: #005fa3;
        }

.professional-btn a {
    background: #324741;
}

.try-btn a:hover {
    background: #005fa3;
}

.business-btn a {
    background: #3F4024;
}

.enterprise-btn a {
    background: #60531D;
}

.elite-btn a {
    background: #574100;
}

.plus-icon {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 0px 10px 0px 25px;
    width: 42px;
    height: 41px;
    font-weight: bold;
    line-height: 35px;
    z-index: 0;
    text-align: center;
    color: #999;
    cursor: pointer;
}

    .plus-icon i {
        background: #fff;
        color: #000;
        width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%;
        font-size: 12px;
        position: absolute;
        top: 0px;
        right: 0;
    }

    .plus-icon:hover i {
        background: #0176D3; /* or any other hover color */
        color: #fff;
    }

    .plus-icon .active {
        background: #0176d3;
        color: #fff;
    }

.price-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgb(192 187 187 / 10%);
    background: #fff;
    margin-top: 60px;
}

th, td {
    padding: 10px 10px;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    border: 1px solid #f2f2f2;
}

th {
    /* background: #f0f0f0; */
    font-weight: bold;
}

.category-col {
    width: 200px;
    text-align: left;
}

.feature-col {
    text-align: left;
    font-weight: 500;
}

.category-icon {
    /* display: flex; */
    /* align-items: center; */
    text-align: center;
}

    .category-icon h5 {
        font-size: 16px;
    }

    .category-icon img {
        width: 60px;
        padding-bottom: 10px;
    }

/* Backgrounds for pricing columns */
.starter {
    background: #C0DDF4;
}

.professional {
    background: #CDDCD8;
}

.business {
    background: #DADBBC;
}

.enterprise {
    background: #E6D99F;
}

.elite {
    background: #F3D883;
}

.lock-icon {
    font-size: 18px;
}

.green {
    color: #388e3c;
}

.red {
    color: #d32f2f;
}

.label {
    font-weight: bold;
    font-size: 13px;
}

.fa-lock {
    color: #ff0000;
    font-size: 16px;
}

.fa-lock-open {
    color: #22d42a;
    font-size: 16px;
}

.Pricing-tab .flx-grid.active {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-container table {
    min-width: 900px;
}



/*popup csss */


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 52%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(2px);
}

.popup-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: absolute;
    animation: popupAnim 0.3s ease;
    left: 0;
    right: 0;
    top: 50%;
    /* bottom: 0; */
    margin: auto;
    transform: translatey(-50%);
}

    .popup-box h3 {
        margin-bottom: 15px;
    }


    .popup-box button {
        width: 100%;
    }

        .popup-box button:hover {
            background: #005fa3;
        }

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}




/* Animation */
@keyframes popupAnim {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.copy-btn-flex {
    display: flex;
    justify-content: space-between;
    align-items:center;
}
    .copy-btn-flex button {
        width: auto ;
        height: max-content;
    }
    .copy-btn-flex button:hover {
        color:#fff;
    }
    .copy-btn-flex button i:hover {
      color:#fff;
    }
.copy-btn-flex .form-control {
    padding: 0;
}</pre></body></html>