<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/


.btn:focus, .btn:active {
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

    /*mobile first (1px and up)*/                        
    @media (min-width: 0px) {
        *{
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
        }

        body{
            background-color: #FFFFFF;
            color: #555555;
            font-family: 'Poppins', 'Arial', sans-serif;
            font-weight: normal;
            font-size: 16px;
            line-height: 22px;
            text-rendering: optimizeLegibility;
            padding: 0;
            margin: 0;
        }

        /*----------------------- Header css starts ----------------------*/

        header{
            position: relative;
            top: 0;
            left: 0;
        }

        /* navbar css */
        nav {
            background-color: transparent;
            color: #FFFFFF;
            z-index: 99;
        }

        nav .navbar-brand{
            width: 100px;
            height: auto;
        }

        .navbar-toggler.btn-collapse{
            border-color: #355C83;
        }

        .badge {
            background-color: #FFFFFF;
        }

        nav .nav-item .reqDemoLink {
            font: normal normal bold 16px/22px poppins;
            letter-spacing: 0;
            /* border-top: 1px solid #2a649e; */
            /* border-bottom: 2px solid #2a649e; */
            /* border-radius: 11px; */
            /* background-color: #c0abcc; */
            /* opacity: 0.9; */
        }

        .navbar-light .navbar-nav .nav-link {
            color: #FFFFFF;
        }

        .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited, .navbar-light .navbar-nav .nav-link:active {
            color: #FFFFFF;
        }

        .navbar-light .navbar-nav .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            margin-top: 3px;
            /* background: #355C83; */
            background: #FFFFFF;
            -webkit-transition: width .3s;
            -o-transition: width .3s;
            transition: width .3s;
        }
        
        .navbar-light .navbar-nav .nav-link:hover::after{
            width: 20%;
            -webkit-transition: width .3s;
            -o-transition: width .3s;
            transition: width .3s;
        }
        
        .navbar-light .navbar-nav .nav-link.active::after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            margin-top: 3px;
            background: #355C83;
            -webkit-transition: width .3s;
            -o-transition: width .3s;
            transition: width .3s;
        }

        nav .searchBar{
            border: #FFFFFF;
        }

        nav .form-inline .form-control {
            display: inline-block;
            width: auto;
            vertical-align: middle;
            background-color: transparent;
            border: 1px solid white;
            border-radius: 6px;
        }

        nav .searchBar::-webkit-input-placeholder {
            color: #FFFFFF;
        }

        nav .searchBar::-moz-placeholder {
            color: #FFFFFF;
        }

        nav .searchBar:-ms-input-placeholder {
            color: #FFFFFF;
        }

        nav .searchBar::-ms-input-placeholder {
            color: #FFFFFF;
        }

        nav .searchBar::placeholder {
            color: #FFFFFF;
        }

        nav .mdc-button--raised:not(:disabled) {
            background-color: #355C83;
            text-transform: capitalize;

        }

        nav .btn.btn-primary{
            background-color: #355C83;
            text-transform: capitalize;
            border: 1px solid transparent;
            transition: transform 0.5s, opacity 0.5s;
        }

        nav .btn.btn.btn-primary:hover{
            animation: loginBtn-hover 2s ease-in -1s;
        }
    
        nav .btn.btn.btn-primary:focus{
            animation: loginBtn-focus 2s ease-in -1s;
        }
    
    
        @keyframes loginBtn-hover {
            0%   {
                background-color: #3C6D9C;
            }
            50%  {
                background-color: #5d86ac;
                border: 1px solid #8fa0b0;
                transform: scale(1.02);
            }
            75%  {
                background-color: #5d86ac;
                border: 1px solid #5f7284;
                transform: scale(1.05);
            }
            100% {
                background-color: #3C6D9C;
                border: 1px solid #5f7284;
                transform: scale(1.0);
            }
        }
    
        @keyframes loginBtn-focus {
            0%   {
                background-color: #3C6D9C;
            }
            50%  {
                background-color: #26547e;
                border: 1px solid #8fa0b0;
                transform: scale(1.02);
            }
            75%  {
                background-color: #091f34;
                border: 1px solid #5f7284;
                transform: scale(1.05);
            }
            100% {
                background-color: #3C6D9C;
                border: 1px solid #5f7284;
                transform: scale(1.0);
            }
        }
    

        .bg-dark{
            background-color: #1d334a !important;
            opacity: 0.9;
        }

        /*----------------------- hero-section css starts -----------------------*/
        #hero-image-div{
            position: relative;
            width: 100%;
            height:calc(100vh - 0px);
            overflow: hidden;
            padding: 0;
            top: 0;
        }

        .bg-image {
            position:absolute;
            left:0;
            right:0;
            top:0;
            bottom:0;
            /* background-image: url("Content/images/lforschools/slider.png"); */
            background-image: url("/Content/images/lforschools/slider.png");
            background-position: top center;
            background-size: cover;
            background-attachment:fixed;
            background-repeat: no-repeat;
            /* min-width: 100%;
            min-height: 100%; */
        }

        #hero-image-contents{
            position: relative;
            top: 186px;
            left: 22px;
            padding-right: 30px;
            height: 599px;
            /* height:calc(100vh - 90vh); */
            color: #2a649e;
            overflow: hidden;
            z-index: 99;
        }

        header .display-4{
            font-size: 2.0rem;
            font-weight: 600;
            line-height: 1.4;
        }
        
        #hero-image-contents h1{
            letter-spacing: 1px;
            color: #2a649e;
        }

        #hero-image-contents p{
            font-size: 0.9rem;
            line-height: 160%;
            word-spacing: 1px;
            padding-bottom: 10px;
            color: #13508c;
        }
        

        #hero-image-contents .mdc-button--outlined:not(:disabled) {
            background-color: transparent;
            color: #2a649e;
            border-color: #2a649e;
            border: 2px solid #2a649e;
            border-radius: 15px;
            text-transform: capitalize;
        }

        #hero-image-contents .btn.btn-primary{
            background-color: transparent;
            color: #2a649e;
            border-color: #2a649e;
            border: 2px solid #2a649e;
            border-radius: 15px;
            text-transform: capitalize;
        }

        #hero-image-contents .btn.btn.btn-primary:hover{
            animation: reqBtn-hover 2s ease-in -1s;
        }
    
        #hero-image-contents .btn.btn.btn-primary:focus{
            animation: reqBtn-focus 2s ease-in -1s;
        }
    
    
        @keyframes reqBtn-hover {
            0%   {
                background-color: transparent;
            }
            50%  {
                background-color: transparent;
                border: 1px solid #8fa0b0;
                transform: scale(1.02);
            }
            75%  {
                background-color: transparent;
                border: 1px solid #5f7284;
                transform: scale(1.05);
            }
            100% {
                background-color: transparent;
                border: 1px solid #5f7284;
                transform: scale(1.0);
            }
        }
    
        @keyframes reqBtn-focus {
            0%   {
                background-color: transparent;
            }
            50%  {
                background-color: transparent;
                border: 1px solid #8fa0b0;
                transform: scale(1.02);
            }
            75%  {
                background-color: transparent;
                border: 1px solid #5f7284;
                transform: scale(1.05);
            }
            100% {
                background-color: transparent;
                border: 1px solid #5f7284;
                transform: scale(1.0);
            }
        }


        /*----------------------- About-us css starts ----------------------*/
        .about-us{
            position: relative;
            top: 0;
            left: 0;
            margin-top: 50px;
        }

        .about-us .about-us-heading{
            color: #222222;
            font-size: 25px;
            line-height: 170%;
            word-spacing: 2px;
        }

        .about-us .font-weight-bold{
            font-weight: bold;
            color: #222222;
            font-size: 30px;
        }

        .about-us .write-up{
            color: #1f1e1e;
            line-height: 200%;
            word-spacing: 1px;
            /* font-size: 18px; */
            /* text-shadow: 0 0 #9c9898cc; */
        }

        .about-us .mdc-button:not(:disabled) {
            background-color: #355C83;
            text-transform: capitalize;
        }

        .about-us .btn.btn-primary{
            background-color: #355C83;
            color: #FFFFFF;
            border: 2px solid transparent;
            border-radius: 15px;
            text-transform: capitalize;
        }

        .about-us .btn.btn.btn-primary:hover{
            animation: loginBtn-hover 2s ease-in -1s;
        }
    
        .about-us .btn.btn.btn-primary:focus{
            animation: loginBtn-focus 2s ease-in -1s;
        }

        .about-us-video-div{
            position: relative;
            top: 0;
            left: 0;
            margin-bottom: 430px;
        }

        .about-us .about-us-video{
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-image: url(/Content/images/lforschools/luminate-icon.png);
            background-position: center;
            background-size: contain;
            /* background-attachment: fixed; */
            background-repeat: no-repeat;
            width: 100%;
            height: 531px;
        }

        .about-us iframe{
            position: relative;
            top: 131px;
            left: 10px;
            /* right: 10px; */
            width: 95%;
            height: 280px;
            -webkit-box-shadow: 3px 0px 10px #000000;
                    box-shadow: 3px 0px 10px #000000;
            cursor: pointer;
        }

        /*----------------------- benefits css starts ----------------------*/
        .benefits{
            background-color: #3C6D9C;
            margin-top: 130px;
            padding-top:50px;
        }

        .benefits .benefits-heading{
            font-size: 25px;
            line-height: 170%;
            word-spacing: 2px;
            text-align: center;
            color: #FFFFFF;
        }

        .benefits .font-weight-bold{
            font-weight: bold;
            color: #FFFFFF;
            font-size: 30px;
        }

        /* .benefits-illustrations{
            margin-top: 30px;
            transition: transform 0.5s, opacity 0.5s;
            transform: scale(1.4);

        } */

        .benefits-illustration{
            padding: 15px 5px 3px 5px;
            height: 300px;
            width: 270px;
            margin: 0 auto 50px auto;
            margin-top: 30px;
            -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
            transition: opacity 0.5s, -webkit-transform 0.5s;
            -o-transition: transform 0.5s, opacity 0.5s;
            transition: transform 0.5s, opacity 0.5s;
            transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
            /* transform: scale(1.4); */
        }

        .benefits-illustration:hover{
            cursor: pointer;
            opacity: 1;
            -webkit-transform: scale(1.22);
                -ms-transform: scale(1.22);
                    transform: scale(1.22);
        }


        .benefits .card-img, .card-img-top {
            border-top-left-radius: calc(.25rem - 1px);
            border-top-right-radius: calc(.25rem - 1px);
            height: 180px;
        }

        .benefits .card-text{
            font-weight: 700;
            text-align: center;
        }

        /*----------------------- testimonials css starts ----------------------*/
        .testimonials{
            margin-top: 70px;
        }

        .testimonials .testimonials-heading{
            font-size: 25px;
            line-height: 170%;
            word-spacing: 2px;
            text-align: center;
            color: #222222;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .testimonial{
            margin-bottom: 30px;
        }

        .testimonial-write-up{
            padding-top: 30px;
            color: #1f1e1e;
            line-height: 200%;
            word-spacing: 1px;
        }

        /*----------------------- counter css starts ----------------------*/
        .counter{
            margin-top: 70px;
            background-color: #3C6D9C;
            color: #FFFFFF;
        }

        .counter .counter-heading{
            font-size: 25px;
            line-height: 170%;
            word-spacing: 2px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .counter ul{
            margin: 30px auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            list-style: none; 
            padding-left: 0;
        }

        .counter ul li{
            display: -ms-grid;
            display: grid;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
            text-align: center;
            width: 189px;
            height: 189px;
            border-radius: 50%;
            padding-top: 20px;
            font-weight: 600;
            -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,.7);
                    box-shadow: 1px 1px 5px rgba(0,0,0,.7);
            border: 10px solid #ffffff;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

        .counter ul li::after {
            content: '';
            display: block;
            width: 75%;
            height: 2px;
            /* margin-top: 1px; */
            background-color: #FFFFFF;
            -webkit-transition: width .3s;
            -o-transition: width .3s;
            transition: width .3s;
            text-align: center;
            margin: auto;
            /* border-radius: 50%; */
        }


        .counter ul li:hover{
            border: 3px solid #6d737a;
            -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .9);
                    box-shadow: inset 0 0 5px rgba(0, 0, 0, .9);
        }

        .counter ul li span{
            font-size: 45px;
            padding: 10px 0;
            color: #FFFFFF;
        }

        .counter ul li p{
            font-size: 18px;
            font-weight: 300;
            color: #FFFFFF;
            padding-top: 5px;
        }

        .counter .counter-logo-text{
            margin-top: 12px;
            font-size: 15px;
        }

        /*----------------------- footer css starts ----------------------*/
        footer .footer-headings{
            color: #101C21;
            font-size: 17px;
            font-weight: 700;
            line-height: 170%;
        }

        footer .nav-item a{
            color: #777777;
            font-size: 14px;
            line-height: 160%;
        }
        
        footer .socials li.facebook{
            display: -ms-grid;
            display: grid;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
            text-align: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent -o-linear-gradient(45deg, #6362D7 0%, #FF8FE2 100%) 0% 0% no-repeat padding-box;
            background: transparent linear-gradient(45deg, #6362D7 0%, #FF8FE2 100%) 0% 0% no-repeat padding-box;
            /* padding-top: 20px; */
            /* font-weight: 600; */
            border: 1px solid transparent;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;            
        }

        footer .socials li.linkedin{
            display: -ms-grid;
            display: grid;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
            text-align: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent -webkit-gradient(linear, left top, right top, from(#FF9AB6), color-stop(99%, #F03295), to(#F03295)) 0% 0% no-repeat padding-box;
            background: transparent -o-linear-gradient(left, #FF9AB6 0%, #F03295 99%, #F03295 100%) 0% 0% no-repeat padding-box;
            background: transparent linear-gradient(90deg, #FF9AB6 0%, #F03295 99%, #F03295 100%) 0% 0% no-repeat padding-box;            /* padding-top: 20px; */
            /* font-weight: 600; */
            border: 1px solid transparent;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;            
        }

        footer .socials li.instagram{
            display: -ms-grid;
            display: grid;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -ms-flex-line-pack: center;
                align-content: center;
            text-align: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: transparent -o-linear-gradient(43deg, #F09376 0%, #F0DB79 100%) 0% 0% no-repeat padding-box;
            background: transparent linear-gradient(47deg, #F09376 0%, #F0DB79 100%) 0% 0% no-repeat padding-box;
            /* font-weight: 600; */
            border: 1px solid transparent;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;            
        }

        footer .footer-down{
            margin-top: 20px;
            background: transparent -o-linear-gradient(86deg, #FFFFFF 0%, #DFF0FF 100%) 0% 0% no-repeat padding-box;
            background: transparent linear-gradient(4deg, #FFFFFF 0%, #DFF0FF 100%) 0% 0% no-repeat padding-box;
            -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 100%);
                    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 100%);
        }

        .cutimg{
            padding-top: 50px;
        }

        footer .footer-down .yeardate{
            font-size: 13px;
            text-decoration: underline;
            padding-top: 10px;
        }

        footer .footer-down .yeardate span{
            color: #000000;
        }

        footer .footer-down .yeardate a{
            color: #000000;
        }

    }

    /*Small devices (landscape phones, 576px and up)*/
    @media (min-width: 576px) {
        .badge {
            background-color: red;
        }

        /*----------------------- About-us css starts ----------------------*/
        .about-us iframe {
            position: relative;
            top: 92px;
            left: 10px;
            /* right: 10px; */
            width: 97%;
            height: 357px;
            -webkit-box-shadow: 3px 0px 10px #000000;
                    box-shadow: 3px 0px 10px #000000;
            cursor: pointer;
        }
    }


    /* Medium devices (tablets, 768px and up)*/
    @media (min-width: 768px) { 
        .badge {
            background-color: green;
        }

        /*----------------------- About-us css starts ----------------------*/
        .about-us .about-us-heading{
            color: #222222;
            font-size: 35px;
            line-height: 170%;
            word-spacing: 2px;
        }

        .about-us .font-weight-bold{
            font-weight: bold;
            color: #222222;
            font-size: 40px;
        }

        .about-us iframe {
            position: relative;
            top: 61px;
            left: 10px;
            /* right: 10px; */
            width: 97%;
            height: 422px;
            -webkit-box-shadow: 3px 0px 10px #000000;
                    box-shadow: 3px 0px 10px #000000;
            cursor: pointer;
        }

        /*----------------------- testimonial css starts ----------------------*/
        .testimonials .testimonials-heading{
            font-size: 35px;
            line-height: 170%;
            word-spacing: 2px;
            text-align: center;
            color: #222222;
            margin-bottom: 20px;
            font-weight: 700;
        }

        /*----------------------- counter css starts ----------------------*/
        .counter .counter-heading{
            font-size: 35px;
            line-height: 170%;
            word-spacing: 2px;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }
    }

    /* Large devices (desktops, 992px and up)*/
    @media (min-width: 992px) { 
        
        /*----------------------- navbar css starts-----------------------*/
        nav .navbar-brand{
            width: 150px;
            height: auto;
        }

        .badge {
            background-color: blue;
        }

        nav .mdc-button--raised:not(:disabled) {
            background-color: #355C83;
            text-transform: capitalize;
            font-size: 16px;
        }

        nav .nav-item .reqDemoLink {
            font: normal normal bold 16px/22px poppins;
            letter-spacing: 0;
            border-top: 1px solid #2a649e;
            border-bottom: 2px solid #2a649e;
            border-radius: 11px;
            padding-bottom: 0;
            background-color: #c0abcc;
            opacity: 0.9;
        }

        .navbar-light .navbar-nav .nav-link:hover::after{
            width: 100%;
            -webkit-transition: width .3s;
            -o-transition: width .3s;
            transition: width .3s;
        }


        /*----------------------- hero-section css starts-----------------------*/
        #hero-image-contents{
            position: relative;
            top: 186px;
            left: 35px;
            padding-right: 30px;
            height: 599px;
            /* height:calc(100vh - 90vh); */
            color: #355C83;
            overflow: hidden;
            z-index: 99;
        }

        header .display-4{
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1.4;
        }

        /*----------------------- About-us css starts ----------------------*/
        .about-us .about-us-heading{
            color: #222222;
            font-size: 35px;
            line-height: 170%;
            word-spacing: 2px;
        }

        .about-us .font-weight-bold{
            font-weight: bold;
            color: #222222;
            font-size: 40px;
        }

        .write-up-section{
            margin-top: 110px;
        }

        .about-us .write-up{
            color: #1f1e1e;
            line-height: 200%;
            word-spacing: 1px;
            margin-top: 30px;
            margin-bottom: 40px;
            /* font-size: 18px; */
            /* text-shadow: 0 0 #9c9898cc; */
        }

        .about-us iframe {
            position: relative;
            top: 59px;
            left: 40px;
            /* right: 10px; */
            width: 97%;
            height: 422px;
            -webkit-box-shadow: 3px 0px 10px #000000;
                    box-shadow: 3px 0px 10px #000000;
            cursor: pointer;
        }

        /*----------------------- counter css starts ----------------------*/
        .counter ul{
            margin: 30px auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
                    justify-content: flex-start;
            -ms-flex-line-pack: center;
                align-content: center;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            list-style: none; 
            padding-left: 0;
        }

    }

    /* Extra large devices (large desktops, 1200px and up)*/
    @media (min-width: 1200px) { 
        .badge {
            background-color: black;
        }

        /*----------------------- About-us css starts ----------------------*/
        .about-us .about-us-video{
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-image: url(/Content/images/lforschools/luminate-icon.png);
            background-position: center;
            background-size: contain;
            /* background-attachment: fixed; */
            background-repeat: no-repeat;
            width: 100%;
            height: 531px;
        }

        .about-us iframe {
            position: relative;
            top: 99px;
            left: 60px;
            /* right: 10px; */
            width: 95%;
            height: 347px;
            -webkit-box-shadow: 3px 0px 10px #000000;
                    box-shadow: 3px 0px 10px #000000;
            cursor: pointer;
        }

    }</pre></body></html>