        /********** Template CSS **********/
        :root {
            --primary: #4b8ef1;
            --light: #EDF5FF;
            --dark: #202942;
        }
        /*** Heading ***/
        
        .all-page .my-6 {
            /* margin-top: 2rem; */
            margin-bottom: 2rem;
        }
        
        .all-page .py-6 {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        
        .all-page h1,
        .all-page h2,
        .all-page .fw-bold {
            font-weight: 700 !important;
        }
        
        .all-page h3,
        .all-page h4,
        .all-page .fw-semi-bold {
            font-weight: 600 !important;
        }
        
        .all-page h5,
        .all-page h6,
        .all-page .fw-medium {
            font-weight: 500 !important;
        }
        
        
        /*** Button ***/
        .all-page .btn {
            transition: .5s;
        }
        
        .all-page .btn:hover {
            box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        }
        
        /* .all-page .btn.btn-primary {
            color: var(--light) !important;
        } */
        .all-page .btn:hover .btn-primary{
            color: var(--primary) !important;
        }
        .all-page .btn.btn-light {
            color: var(--primary) !important;
        }
        
        .all-page .btn-square {
            width: 38px;
            height: 38px;
        }
        
        .all-page .btn-sm-square {
            width: 32px;
            height: 32px;
        }
        
        .all-page .btn-lg-square {
            width: 48px;
            height: 48px;
        }
        
        .all-page .btn-square,
        .all-page .btn-sm-square,
        .all-page .btn-lg-square {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: normal;
            border-radius: 50px;
        }
        /*** Feature ***/
        .all-page .feature-item,
        .all-page .advanced-feature-item {
            height: 100%;
            transition: .5s;
            border-radius: 15px !important;
        }
        
        .all-page .feature-item:hover {
            margin-top: -15px;
        }
        
        .all-page .advanced-feature-item {
            box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        }
        
        .all-page .advanced-feature-item * {
            transition: .5s;
        }
        
        .all-page .advanced-feature-item:hover {
            background: var(--primary);
        }
        
        .all-page .advanced-feature-item:hover * {
            color: #FFFFFF !important;
        }
        .all-page .project-img{
            box-shadow: 0 0 45px rgba(0, 0, 0, .3) !important;
            border-radius: 15px !important;
        }
        #features p {
            font-weight: 500;
        }
        .mySwiper .swiper-slide-active {
            scale: 1;
        }
        .mySwiper .swiper-button-prev,
    .mySwiper .swiper-button-next {
        scale: 0.7;
        color: rgb(0, 50, 126);
        margin: 0 auto;
        font-weight: 800; 
    }
    .mySwiper .swiper-pagination-bullet {
        background: rgb(0, 50, 126);
        width: 20px;
        height: 20px;
    }
    .swiper-slide .container p {
        font-weight: 500;
    }
    .advanced-feature-item i{
        color: #4b8ef1 !important;
    }