:root {
    --font-owner: "Mukta Vaani", "Inter";
    --font-default: "Open Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: sans-serif, "Inter";
    --bs-nav-tabs-link-active-bg1: none;
}
/*background images*/

:root {
    --layer1: url("../img/icons_background.svg");
    --layer2: url("../img/banners/lightblue_bg.png");
    --layer3: url("../img/banners/lines.png");
    --layer4: url("../img/banners/subject_icons.png");
    --map-gujarat: url(../img/banners/map.png);
    --map-gujart1: url(../img/AboutUsmap.png);
    --map--location: url(../img/Map_location.png);
    --forgot--bg: url(../img/forgot/ForgotPassword.svg);
}


/* Colors */
:root {
    --color-default: #0a0d13;
    --color-primary: #0d42ff;
    --color-secondary: #0e1d34;
    /*Common Colors*/
    --color-white: #ffffff;
    --color-black: #000000;
    /*Menu Card Color*/
    --color-card: #E2F2FF;
    /*Graident Colors*/
    --color-graident: linear-gradient(180deg, #e8f7ff99 25%, #009ee685 75%);
    /*navbar*/
    --color-navbar: #ffffff;
    --color-navbar-secondary: #80A2B3;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem !important;
}

.row {
     --bs-gutter-x: 0rem !important;
}

    /* Smooth scroll behavior */
    : root {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-owner);
    color: var(--color-default);
    background-image: var(--layer1) !important;
    background-size: auto;
    background-position: center;
    /*background-repeat: no-repeat;*/
    width: 100%;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

    a:hover {
        color: #406aff;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

.section-space {
    margin-top: 55px;
}

.section-header {
    text-align: center;
    padding: 11px 0;
    position: relative;
}

    .section-header h2 {
        font-size: 30px;
        font-weight: 700;
        text-transform: capitalize;
        color: #001973;
        position: relative;
        z-index: 2;
        position: relative;
    }

        .section-header h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-header span {
        position: absolute;
        top: 46px;
        color: rgba(14, 29, 52, 0.06);
        left: 0;
        right: 0;
        z-index: 1;
        font-weight: 700;
        font-size: 56px;
        text-transform: uppercase;
        line-height: 0;
    }

    .section-header p {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

@media (max-width: 640px) {

    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .breadcrumbs .page-header:before {
        content: "";
        background-color: rgba(14, 29, 52, 0.8);
        position: absolute;
        inset: 0;
    }

    .breadcrumbs .page-header h2 {
        font-size: 56px;
        font-weight: 500;
        color: #fff;
        font-family: var(--font-secondary);
    }

    .breadcrumbs .page-header p {
        color: rgba(255, 255, 255, 0.8);
    }

.breadcrumbs nav {
    padding: 20px 0;
}

    .breadcrumbs nav .help {
        position: relative;
        padding: 20px 0;
        top: 2rem;
    }

    .breadcrumbs nav ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0px;
        color: var(--color-secondary);
        position: relative;
        top: 3rem;
    }

        .breadcrumbs nav ol a {
            color: var(--color-primary);
            transition: 0.3s;
        }

            .breadcrumbs nav ol a:hover {
                text-decoration: underline;
            }

        .breadcrumbs nav ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs nav ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #4278cc;
                content: "/";
            }

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        background: rgba(13, 66, 255, 0.8);
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

    #preloader:before,
    #preloader:after {
        content: "";
        position: absolute;
        border: 4px solid var(--color-primary);
        border-radius: 50%;
        -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    #preloader:after {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    position: fixed;
    background: linear-gradient(180deg, #359AEC 0%, #1A50CB 100%);
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    height: 55px;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

    .header.sticked {
        background: linear-gradient(180deg, #359AEC 0%, #1A50CB 100%);
        padding: 15px 0;
        box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
    }

    .header .logo img {
        max-height: 40px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: #fff;
        font-family: var(--font-primary);
    }

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 10px 0 10px 30px;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
                border-bottom: 1px solid #fff;
            }

        .navbar .get-a-quote,
        .navbar .get-a-quote:focus {
            background: var(--color-primary);
            padding: 8px 20px;
            margin-left: 30px;
            border-radius: 4px;
            color: #fff;
        }

            .navbar .get-a-quote:hover,
            .navbar .get-a-quote:focus:hover {
                color: #fff;
                background: #2756ff;
            }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 14px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
            border-radius: 4px;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                font-weight: 400;
                color: var(--color-secondary);
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(14, 29, 52, 0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .get-a-quote,
        .navbar .get-a-quote:focus {
            background: var(--color-primary);
            padding: 8px 20px;
            border-radius: 4px;
            margin: 15px;
            color: #fff;
        }

            .navbar .get-a-quote:hover,
            .navbar .get-a-quote:focus:hover {
                color: #fff;
                background: rgba(13, 66, 255, 0.8);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid #19335c;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 2rem;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: relative;
        right: 2rem;
        top: 2rem;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(14, 29, 52, 0.8);
                z-index: 9996;
            }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

    .featured-services .service-item .icon {
        margin-right: 20px;
    }

        .featured-services .service-item .icon i {
            color: #001f8d;
            font-size: 48px;
            transition: 0.3s;
        }

    .featured-services .service-item:hover .icon {
        background: #fff;
    }

        .featured-services .service-item:hover .icon i {
            color: var(--color-primary);
        }

    .featured-services .service-item .title {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 20px;
        color: var(--color-secondary);
        transition: 0.3s;
    }

    .featured-services .service-item .description {
        font-size: 15px;
        color: #132848;
        margin-bottom: 10px;
    }

    .featured-services .service-item .readmore {
        display: flex;
        align-items: center;
        color: var(--color-secondary);
        transition: 0.3s;
        font-weight: 700;
        font-size: 14px;
    }

        .featured-services .service-item .readmore i {
            margin-left: 8px;
        }

    .featured-services .service-item:hover .title,
    .featured-services .service-item:hover .readmore,
    .featured-services .service-item:hover .icon i {
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
    padding-top: 10px;
}

    .about .img-fluid {
        max-width: 84%;
        height: auto;
    }

    .about .heroGlogo {
        position: absolute;
        left: 21%;
        top: 40%;
        animation: grow-and-shrink 4000ms;
        animation-iteration-count: 1;
        animation-timing-function: ease-in-out;
    }

    .about .bg-downloads {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 32px;
    }

    .about .card {
        background: var(--color-card);
    }

        .about .card .card-body {
            padding: 0 0.6rem 2rem 0.6rem !important;
            background: var(--color-graident);
        }


    .about section {
        padding: 80px 0;
        overflow: hidden;
    }

    .about .section-header {
        text-align: left;
        padding: 3px 0 3px 10px;
        position: relative;
    }

        .about .section-header h2 {
            font-size: 23px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 20px;
            padding-bottom: 0;
            color: #001973;
            position: relative;
            z-index: 2;
            text-align: left;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }



    .about .content h3 {
        font-weight: 700;
        font-size: 32px;
        font-family: var(--font-owner);
        font-style: normal;
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 0.2px;
        color: #3B3D42;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            display: flex;
            align-items: flex-start;
            margin-top: 40px;
        }

        .about .content ul i {
            flex-shrink: 0;
            font-size: 48px;
            color: var(--color-primary);
            margin-right: 20px;
            line-height: 0;
        }

        .about .content ul h5 {
            font-size: 18px;
            font-weight: 700;
            color: #19335c;
        }

        .about .content ul p {
            font-size: 15px;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

        .about .play-btn:before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
            -webkit-animation: pulsate-btn 2s;
            animation: pulsate-btn 2s;
            -webkit-animation-direction: forwards;
            animation-direction: forwards;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: steps;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgba(13, 66, 255, 0.7);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .about .play-btn:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .about .play-btn:hover:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            -webkit-animation: none;
            animation: none;
            border-radius: 0;
        }

        .about .play-btn:hover:after {
            border-left: 15px solid var(--color-primary);
            transform: scale(20);
        }

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .about .heroGlogo {
        position: relative;
        left: 36%;
        top: -56%;
        animation: grow-and-shrink 4000ms;
        animation-iteration-count: 1;
        animation-timing-function: ease-in-out;
    }
}



/*--------------------------------------------------------------
# Download Us Section
--------------------------------------------------------------*/

.downloads {
    padding-top: 10px;
}

    .downloads .bg-downloads {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 32px;
    }

    .downloads .card {
        background: var(--color-white);
    }

        .downloads .card .card-body {
            padding: 0 !important;
            background: var(--color-white);
        }


    .downloads section {
        padding: 80px 0;
        overflow: hidden;
    }

    .downloads .section-header {
        text-align: left;
        padding: 3px 0 3px 10px;
        position: relative;
    }

        .downloads .section-header h2 {
            font-size: 23px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 20px;
            padding-bottom: 0;
            color: #001973;
            position: relative;
            z-index: 2;
            text-align: left;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }

    .downloads .card2 {
        background: var(--color-card);
        padding: 0px;
    }

        .downloads .card2 .card-body {
            background: var(--color-graident);
            padding: 1rem !important;
        }

            .downloads .card2 .card-body h4 {
                font-family: var(--font-owner);
                font-style: normal;
                font-weight: 600;
                font-size: 18px;
                line-height: 24px;
                color: #3B3D42;
            }


    .downloads span {
        font-family: var(--font-default);
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        padding: 10px 0px;
        line-height: 48px;
        display: flex;
        align-items: center;
        color: #49596E;
        flex: none;
        order: 1;
        flex-grow: 0;
        justify-content: center;
        align-content: flex-start;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }

        .downloads span img {
            width: 48px;
            height: 60px;
            flex: none;
            order: 0;
            flex-grow: 0;
        }


        .downloads span a.clidwn {
            font-family: var(--font-owner);
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 32px;
            color: #1F5DD1;
            flex: none;
            order: 3;
            flex-grow: 0;
        }

        .downloads span button {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 19px 67px;
            gap: 10px;
            width: 212px;
            height: 52px;
            background: #1C4281;
            border-radius: 4px;
            flex: none;
            order: 0;
            flex-grow: 0;
            text-align: center;
            color: #FFFFFF;
        }

@media (max-width: 640px) {

    .downloads span {
        font-family: var(--font-default);
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 24px;
        padding: 10px 0px;
        display: flex;
        align-items: center;
        color: #49596E;
        flex: none;
        order: 1;
        flex-grow: 0;
        justify-content: center;
        align-content: flex-start;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }

    .downloads .card2 h4 p {
        font-size: 14px;
    }

    .downloads .card2 p {
        font-size: 14px;
    }

    .downloads .card2 ul li {
        font-size: 14px;
    }

    .downloads .card2 .card-body {
        background: var(--color-graident);
        padding: 1.5rem !important;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
    border: 1px solid rgba(14, 29, 52, 0.15);
    background: #fff;
    position: relative;
    border-radius: 0;
    height: 100%;
}

    .services .card .card-img {
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 0;
    }

        .services .card .card-img img {
            transition: 0.3s ease-in-out;
        }

    .services .card h3 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 5px;
        padding: 10px 30px;
        text-transform: uppercase;
    }

    .services .card a {
        color: #001973;
        transition: 0.3;
    }

        .services .card a:hover {
            color: var(--color-primary);
        }

    .services .card p {
        padding: 0 30px;
        margin-bottom: 30px;
        color: var(--color-secondary);
        font-size: 15px;
    }

    .services .card:hover .card-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta-bg.jpg") center center;
    background-size: cover;
    padding: 100px 0;
}

@media (min-width: 1365px) {
    .call-to-action {
        background-attachment: fixed;
    }
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: #fff;
}

.call-to-action .cta-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

    .call-to-action .cta-btn:hover {
        background: var(--color-primary);
        border: 2px solid var(--color-primary);
    }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding-top: 80px;
}

    .features .features-item + .features-item {
        margin-top: 100px;
    }

@media (max-width: 640px) {
    .features .features-item + .features-item {
        margin-top: 40px;
    }
}

.features .features-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: #001973;
}

.features .features-item ul {
    list-style: none;
    padding: 0;
}

    .features .features-item ul li {
        padding-bottom: 10px;
    }

        .features .features-item ul li:last-child {
            padding-bottom: 0;
        }

    .features .features-item ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--color-primary);
    }

.features .features-item p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--color-secondary);
}

.pricing h4 {
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-primary);
    margin-bottom: 25px;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: rgba(108, 117, 125, 0.8);
        font-size: 18px;
    }

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }

    .pricing ul i {
        color: #059652;
        font-size: 24px;
        padding-right: 3px;
    }

    .pricing ul .na {
        color: rgba(108, 117, 125, 0.5);
    }

        .pricing ul .na i {
            color: rgba(108, 117, 125, 0.5);
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 4px;
    color: var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: 0.3s;
    border: 1px solid var(--color-primary);
}

    .pricing .buy-btn:hover {
        background: var(--color-primary);
        color: #fff;
    }

.pricing .featured {
    border-top-color: var(--color-primary);
}

    .pricing .featured .buy-btn {
        background: var(--color-primary);
        color: #fff;
    }

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
    padding-top: 10px;
}

    .faq .card {
        background: #E2F2FF;
    }

        .faq .card .card-body {
            padding: 0 0.6rem 2rem 0.6rem !important;
            background: linear-gradient(180deg, #e8f7ff99 25%, #009ee685 75%);
        }

    .faq section {
        padding: 80px 0;
        overflow: hidden;
    }

    .faq .section-header {
        text-align: left;
        padding: 3px 0 3px 10px;
        position: relative;
    }

        .faq .section-header h2 {
            font-size: 20px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 20px;
            padding-bottom: 0;
            color: #001973;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }


    .faq .accordion-item {
        border: 0;
        margin-bottom: 10px;
        background: #FFFFFF !important;
        box-shadow: 2px 4px 6px rgb(0 0 0 / 15%);
        border-radius: 8px;
    }

    .faq .accordion-collapse {
        border: 0;
    }

    .faq .accordion-button {
        padding: 15px 30px 20px 60px;
        font-weight: 600;
        border: 0;
        font-size: 18px;
        color: var(--color-default);
        text-align: left;
        /*background: rgba(14, 29, 52, 0.03);*/
        background: #FFFFFF !important;
        border-radius: 8px !important;
    }

        .faq .accordion-button:focus {
            box-shadow: none;
        }

        .faq .accordion-button:not(.collapsed) {
            color: var(--color-primary);
            border-bottom: 0;
            box-shadow: none;
        }

    .faq .question-icon {
        position: absolute;
        top: 14px;
        left: 25px;
        font-size: 20px;
        color: var(--color-primary);
    }

    .faq .accordion-button:after {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .faq .accordion-body {
        padding: 0 30px 25px 60px;
        border: 0;
        background: #FFFFFF !important;
        border-radius: 5px;
    }

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 0 0 60px 0;
    background: var(--bs-body-bg);
}

    .clients .swiper-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 12px;
        width: 217px;
        align-items: center;
        height: 243.24px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }


        .clients .swiper-slide img {
            opacity: 1;
            transition: 0.3s;
        }

            .clients .swiper-slide img:hover {
                filter: none;
                opacity: 1;
            }

        .clients .swiper-slide p {
            font-family: var(--font-owner);
            width: 193px;
            height: 24px;
            font-style: normal;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.1px;
            color: #1C4281;
            flex: none;
            order: 1;
            flex-grow: 0;
        }

 
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(14, 29, 52, 0.7);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .stars {
            margin-bottom: 15px;
        }

            .testimonials .testimonial-item .stars i {
                color: #ffc107;
                margin: 0 1px;
            }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.6);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.4);
            opacity: 0.5;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #fff;
            opacity: 1;
        }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
    padding: 40px 30px;
    width: 100%;
    /*    height: 274px;*/
    left: 0px;
    background: rgba(207, 227, 236, 0.5);
    opacity: 1;
}

    .stats-counter .stats-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 0px;
        gap: 2px;
        /* position: relative;
    top: 5rem;*/
        border-right: 1px dashed #E77F0E;
    }

    .stats-counter .rembrd {
        border-right: 0px dashed #E77F0E;
    }

    .stats-counter .stats-item p.school {
        color: #FF9C00;
    }

    .stats-counter .stats-item p.teacher {
        color: #9C0E4E;
    }

    .stats-counter .stats-item p.students {
        color: #00A0FF;
    }

    .stats-counter .stats-item p.downloads {
        color: #9747FF;
    }


    .stats-counter .stats-item span {
        font-size: 48px;
        display: block;
        /*color: var(--color-secondary);*/
        color: #52595C;
        font-weight: 700;
        margin-bottom: 0px;
        padding-bottom: 0px;
        position: relative;
    }

        .stats-counter .stats-item span:after {
            content: "+";
            position: relative;
            width: 25px;
            height: 3px;
            left: 0px;
            right: 0px;
            top: 0;
            margin: auto;
        }

    .stats-counter .stats-item p {
        padding: 0;
        margin: 0;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: var(--color-secondary);
    }

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid rgba(14, 29, 52, 0.15);
}

    .team .member img {
        margin: -1px -1px 30px -1px;
    }

    .team .member .member-content {
        padding: 0 20px 30px 20px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 18px;
    }

    .team .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
        color: #6c757d;
    }

    .team .member p {
        padding-top: 10px;
        font-size: 14px;
        font-style: italic;
        color: #6c757d;
    }

    .team .member .social {
        margin-top: 15px;
    }

        .team .member .social a {
            color: rgba(14, 29, 52, 0.5);
            transition: 0.3s;
        }

            .team .member .social a:hover {
                color: var(--color-primary);
            }

        .team .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    padding-bottom: 30px;
    background: #fff;
    height: 100%;
    position: relative;
}

.horizontal-pricing h3 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
    color: var(--color-secondary);
}

.horizontal-pricing h4 {
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-primary);
    margin-bottom: 25px;
    text-align: center;
}

    .horizontal-pricing h4 sup {
        font-size: 28px;
    }

    .horizontal-pricing h4 span {
        color: rgba(108, 117, 125, 0.8);
        font-size: 18px;
    }

.horizontal-pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
}

    .horizontal-pricing ul li {
        padding-top: 15px;
        display: flex;
        align-items: center;
    }

    .horizontal-pricing ul i {
        color: #059652;
        font-size: 24px;
        padding-right: 3px;
    }

    .horizontal-pricing ul .na {
        color: rgba(108, 117, 125, 0.5);
    }

        .horizontal-pricing ul .na i {
            color: rgba(108, 117, 125, 0.5);
        }

        .horizontal-pricing ul .na span {
            text-decoration: line-through;
        }

.horizontal-pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--font-primary);
}

    .horizontal-pricing .buy-btn:hover {
        background: #406aff;
        border-color: #406aff;
    }

.horizontal-pricing .featured {
    background: var(--color-primary);
}

    .horizontal-pricing .featured h3,
    .horizontal-pricing .featured h4,
    .horizontal-pricing .featured h4 span,
    .horizontal-pricing .featured ul,
    .horizontal-pricing .featured ul .na,
    .horizontal-pricing .featured ul i,
    .horizontal-pricing .featured ul .na i {
        color: #fff;
    }

    .horizontal-pricing .featured .buy-btn {
        background: var(--color-primary);
        color: #fff;
        border-color: #fff;
    }

        .horizontal-pricing .featured .buy-btn:hover {
            background: #fff;
            color: var(--color-primary);
        }

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.get-a-quote .php-email-form {
    background: #f3f6fc;
    padding: 40px;
    height: 100%;
}

@media (max-width: 575px) {
    body {
        background-image: none;
    }

    .get-a-quote .php-email-form {
        padding: 20px;
    }
}

.get-a-quote .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.get-a-quote .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .get-a-quote .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #059652;
        border-top-color: #fff;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .get-a-quote .php-email-form input:focus,
    .get-a-quote .php-email-form textarea:focus {
        border-color: var(--color-primary);
    }

.get-a-quote .php-email-form input {
    padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
    padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .get-a-quote .php-email-form button[type=submit]:hover {
        background: rgba(13, 66, 255, 0.8);
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 10px;
}

    .contact .aboutmap {
        width: 100%;
        position: absolute;
        height: 56.089141vh;
        left: 0px;
        background-image: url(../img/banners/map.png);
        background-size: cover;
        background-position: center;
    }


    .contact .card {
        background: #E2F2FF;
    }

        .contact .card .card-body {
            padding: 0 0.6rem 2rem 0.6rem !important;
            background: linear-gradient(180deg, #e8f7ff99 25%, #009ee685 75%);
        }

    .contact section {
        padding: 40px 0;
        overflow: hidden;
    }

    .contact .section-header {
        text-align: left;
        padding: 10px 0 3px 20px;
        position: relative;
    }

        .contact .section-header h2 {
            font-size: 20px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 10px;
            padding-bottom: 0;
            color: #001973;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }

    .contact .addcontain {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0px;
        gap: 0px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

        .contact .addcontain img {
            margin-bottom: 1rem;
        }

    .contact .address {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 4px;
        gap: 8px;
        flex: none;
        order: 1;
        flex-grow: 0;
    }

    .contact .info-item + .info-item {
        margin-top: 5px;
    }

    .contact .info-item i {
        font-size: 18px;
        color: #000;
        display: flex;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact .info-item span {
        font-size: 18px;
        color: #000;
        display: flex;
        width: 6rem;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact .info-item h4 {
        padding: 0;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--color-secondary);
    }

    .contact .info-item p {
        padding: 2px;
        margin-bottom: 0;
        font-size: 16px;
        color: rgba(14, 29, 52, 0.8);
        display: flex;
        flex-direction: column-reverse;
    }

    .contact .location {
        width: 250px;
        height: 250px;
        background: var(--map--location);
        border: 1px solid #FFFFFF;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 24px 0px;
        gap: 10px;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {

    .contact .addcontain img {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0px;
        gap: 0px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid #d3dff3;
    margin-bottom: 20px;
}

    .service-details .services-list a {
        display: block;
        line-height: 1;
        padding: 8px 0 8px 15px;
        border-left: 3px solid #c2cbdf;
        margin: 20px 0;
        color: var(--color-secondary);
        transition: 0.3s;
    }

        .service-details .services-list a.active {
            font-weight: 700;
            border-color: var(--color-primary);
        }

        .service-details .services-list a:hover {
            border-color: var(--color-primary);
        }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--color-primary);
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 111.50729335494327vh;
    left: 0px;
    background-image: url('../../assests/img/banners/lightblue_bg.png');
    background-size: cover;
    background-position: center;
}

.heroimg {
    width: 100%;
    position: absolute;
    height: 111.08914100486224vh;
    left: 0px;
    top: 55px;
    background-image: url('../../assests/img/banners/lines.png');
    background-size: cover;
    background-position: center;
}

.heroicon {
    width: 100%;
    position: absolute;
    height: 85.08914100486224vh;
    left: 0px;
    top: 130px;
    background-image: url("../../assests/img/banners/subject_icons.png");
    background-size: cover;
    background-position: center;
    /*animation: grow-shrink 2000ms;
animation-iteration-count: 1;
animation-timing-function: ease-in;*/
}

@keyframes grow-shrink {
    0% {
        transform: scale(1.5);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}


.heroGlogo {
    position: absolute;
    left: 26%;
    /*right: 66.95%;*/
    top: 36%;
    /*bottom: 75.35%;*/
    animation: grow-and-shrink 4000ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}

@keyframes grow-and-shrink {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}


.herolayer {
    width: 100%;
    /*  position: absolute;*/
    height: 111.50729335494327vh;
    left: 0px;
    background-image: url("../img/banners/blue_rightside.png");
    background-size: cover;
    background-position: center;
}

    .herolayer .welcome {
        font-family: 'Mukta Vaani';
        font-style: normal;
        font-weight: 600;
        font-size: 36px;
        line-height: 48px;
        align-items: center;
        text-align: center;
        letter-spacing: 0.2px;
        color: #000000;
    }

    .herolayer .learntext {
        font-family: 'Mukta Vaani';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        background: linear-gradient(180deg, #1C4281 0%, #1A50CB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

.subtit {
    font-family: 'Mukta Vaani';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    background: linear-gradient(180deg, #E77F0E 0%, #E77F0E 100%);
    margin-left: 5px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.heromap {
    width: 100%;
    position: absolute;
    height: 85.08914100486224vh;
    left: 0px;
    top: 130px;
    background-image: url("../../assests/img/banners/map.png");
    background-size: cover;
    background-position: center;
}

.hero h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 575px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
}

    .hero p.question {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        padding: 8px 4px;
        margin: 10px 0;
        color: #3B3D42;
    }

.hero form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.hero .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px dashed #80A2B3 !important;
    border: 0px;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero .input-group-text {
    display: flex;
    align-items: start;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    border: 0px !important;
    background: none;
    line-height: 1.5;
    color: #212529;
    text-align: right;
    white-space: nowrap;
    border-radius: 0.375rem;
    flex-wrap: wrap;
    position: absolute;
    top: 0px;
    right: 0;
}

.hero .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border-bottom: 1px dashed #80A2B3 !important;
    border: 0px;
}

.hero form .form-control {
    border-bottom: 1px dashed #80A2B3 !important;
}

    .hero form .form-control:hover,
    .hero form .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.hero form .btn-primary {
    background-color: var(--color-primary);
    padding: 15px 30px;
}

    .hero form .btn-primary:hover {
        background-color: #2756ff;
    }

.hero .stats-item {
    padding: 30px;
    width: 100%;
}

    .hero .stats-item span {
        font-size: 32px;
        display: block;
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 15px;
        position: relative;
    }

        .hero .stats-item span:after {
            content: "";
            position: absolute;
            display: block;
            width: 20px;
            height: 3px;
            background: var(--color-primary);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .hero .stats-item p {
        padding: 0;
        margin: 0;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 600;
    }

.hero i {
    position: absolute;
    right: 10px;
    top: 10px;
}


/*new css for */

.newHero {
    width: 100%;
    height: 100.50729335494327vh;
    background: linear-gradient(to top, transparent 50%, rgba(255, 156, 0, 1) 100%), url('../../assests/img/banners/home_banner_lines_corner_colorBG.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.login-form {
    background: #FFFFFF;
    padding: 0;
    width: 28rem;
    margin: 20px auto;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 2px 4px 6px 0px #00000026;
    border: 0px, 1px, 0px, 1px;
}
.login-form-bg {
    background-image: url(../../assests/img/banners/mobile_bg.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 60px;
}
.input-border {
    border-bottom: 2px dotted #7898A8 !important;
}
.form-control:focus{
    background:none !important;
    box-shadow:none !important;
}
@media (min-width: 380px) and (max-width:767px) {
    .newHero {
        height: auto !important;
    }
}
@media (max-width:450px) {
    .login-form {
        width: 22rem;
    }
    .newHero {
        width: 100%;
        height: 100.50729335494327vh;
        background: linear-gradient(to top, transparent 50%, rgba(255, 156, 0, 1) 100%);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background: linear-gradient(180deg, #359AEC 0%, #1A50CB 100%);
    padding: 44px 0;
    color: white;
}

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer p {
        font-size: 14px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer img {
        border-right: 1px dashed #CED3D6;
    }



    .footer .eductionlogo {
        border-right: 1px dashed #CED3D6;
    }

        .footer .eductionlogo img {
            border-right: 0px dashed #CED3D6;
            margin: 9%;
        }

    .footer .footer-contact h4 p {
        line-height: 26px;
        padding: 0px;
        gap: 10px;
        position: absolute;
        width: 310px;
        height: 136px;
        left: calc(52% - 310px/2 - 169px);
        top: calc(50% - 105.25px/2 + 1.12px);
    }

    .footer .copyright {
        text-align: center;
    }

    .footer .credits {
        padding-top: 4px;
        text-align: center;
        font-size: 13px;
    }

        .footer .credits a {
            color: #fff;
        }

@media (max-width: 640px) {

    .footer img {
        border-right: 0px dashed #CED3D6;
    }

    .footer .eductionlogo {
        border-right: 0px dashed #CED3D6;
    }
}

@media screen and (max-width: 480px) {
    /*.section-space {
    margin-top: 0px;
}*/

    .login {
        padding: 0;
        width: 26rem !important;
        border-radius: 10px 10px 10px 10px;
    }

    .language {
        border-radius: 10px 10px 0px 0px
    }
}
/*--------------------------------------------------------------
# Login screen
--------------------------------------------------------------*/
.language {
    font-family: var(--font-owner);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    height: 50px;
    color: #ffffff;
    /* background: #FF9C00;*/
    background: linear-gradient(180deg, #359AEC 0%, #1A50CB 100%);
    border-width: 0px 1px;
    border-color: #80A2B3;
    border-radius: 10px 10px 0px 0px
}

    .language .help {
        left: 251px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 27px;
        color: #3B3D42;
    }

    /*.language ul {
    display: flex;
    position: absolute;
    width: 161px;
    height: 28px;
    padding: 0px 10px;
    top: 10px;
    line-height: 27px;
}*/

    .language ul li {
        flex: none;
        padding: 0px 4px;
        order: 0;
        flex-grow: 0;
        list-style: none;
    }

        .language ul li a {
            color: #3B3D42;
        }

            .language ul li a.active {
                border-bottom: 2px solid #000000;
            }


.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    background: #FFFFFF;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #80A2B3;
    padding: 0;
    width: 28rem;
    border-radius: 10px 10px 10px 10px;
}

.logininner {
    padding: 7px 7px 58px 7px;
}

.swiper-wrapper {
    height: 270px;
}

.form-check-input:checked {
    background-color: #E77F0E;
    border-color: #E77F0E;
}

.text-organ {
    color: #E77F0E;
    font-weight: 700;
    font-size: 16px;
}

.text-rem {
    color: #1271ED;
}

.from-control {
    position: absolute;
    width: 357px;
    height: 32px;
    left: 33.5px;
    top: 200.25px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px dashed #80A2B3 !important;
}

.loginbtn {
    width: 178.5px;
    color: #fff;
    background: #1C4281;
    border-radius: 5px;
}

    .loginbtn:hover {
        color: #fff;
        background: #1C4281;
    }

.dosign {
}

    .dosign.signup {
        color: #1C4281;
        font-family: var(--font-owner);
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
    }

        .dosign.signup a {
            color: #1C4281;
        }

.line {
    width: 116px;
    border: 1px solid #CED3D6;
}

.or {
    font-family: var(--font-owner);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #A5BAC6;
    top: 3.3rem;
}

.demo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-owner);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin-top: 1.3rem;
    gap: 10px;
}

.hero .extlink {
    display: flex;
    margin: 20px 0;
}

.extlink .ios img {
    width: 100%;
    height: 50px;
}

.extlink .andriod img {
    width: 100%;
    height: 50px;
}
/*Download Pages*/


/** G-Shala Full form Animations**/
.animate {
    font-size: 26px;
    margin-top: 20px;
    color: #000000;
}

    .animate span {
        display: inline-block;
        color: #000000;
        <<<<<<< HEAD position: absolute;
        ======= >>>>>>> 976359d411cd373c8f95ef8f0c8345d22248a47f
    }



.three span {
    color: #000000;
    opacity: 0;
    transform: translate(-300px, 0) scale(0);
    animation: sideSlide .8s forwards;
    animation-iteration-count: 2;
}

.animate span:nth-of-type(1) {
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(2) {
    animation-delay: .05s;
}

.animate span:nth-of-type(3) {
    animation-delay: .1s;
}

.animate span:nth-of-type(4) {
    animation-delay: .15s;
}

.animate span:nth-of-type(5) {
    animation-delay: .2s;
}

.animate span:nth-of-type(6) {
    animation-delay: .25s;
}

.animate span:nth-of-type(7) {
    animation-delay: .3s;
}

.animate span:nth-of-type(8) {
    animation-delay: .35s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(9) {
    animation-delay: .4s;
}

.animate span:nth-of-type(10) {
    animation-delay: .45s;
}

.animate span:nth-of-type(11) {
    animation-delay: .5s;
}

.animate span:nth-of-type(12) {
    animation-delay: .55s;
}

.animate span:nth-of-type(13) {
    animation-delay: .6s;
}

.animate span:nth-of-type(14) {
    animation-delay: .65s;
}

.animate span:nth-of-type(15) {
    animation-delay: .7s;
}

.animate span:nth-of-type(16) {
    animation-delay: .75s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(17) {
    animation-delay: .8s;
}

.animate span:nth-of-type(18) {
    animation-delay: .85s;
}

.animate span:nth-of-type(19) {
    animation-delay: .9s;
}

.animate span:nth-of-type(20) {
    animation-delay: .95s;
}

.animate span:nth-of-type(21) {
    animation-delay: .05s;
}

.animate span:nth-of-type(22) {
    animation-delay: .10s;
}

.animate span:nth-of-type(23) {
    animation-delay: .20s;
}

.animate span:nth-of-type(24) {
    animation-delay: .25s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(25) {
    animation-delay: .30s;
}

.animate span:nth-of-type(26) {
    animation-delay: .35s;
}

.animate span:nth-of-type(27) {
    animation-delay: .40s;
}

.animate span:nth-of-type(28) {
    animation-delay: .45s;
}

.animate span:nth-of-type(29) {
    animation-delay: .50s;
}

.animate span:nth-of-type(31) {
    animation-delay: .55s;
}

.animate span:nth-of-type(32) {
    animation-delay: .60s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(33) {
    animation-delay: .05s;
}

.animate span:nth-of-type(34) {
    animation-delay: .10s;
}

.animate span:nth-of-type(35) {
    animation-delay: .15s;
}

.animate span:nth-of-type(36) {
    animation-delay: .20s;
}

.animate span:nth-of-type(37) {
    animation-delay: .25s;
}

.animate span:nth-of-type(38) {
    animation-delay: .30s;
}

.animate span:nth-of-type(39) {
    animation-delay: .35s;
}

.animate span:nth-of-type(40) {
    animation-delay: .40s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(41) {
    animation-delay: .45s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

.animate span:nth-of-type(42) {
    animation-delay: .50s;
    text-transform: capitalize;
    color: #EF7F1A;
    opacity: 1;
}

/* Animation Three */

@keyframes sideSlide {
    60% {
        transform: translate(20px, 0) scale(1);
    }

    80% {
        transform: translate(20px, 0) scale(1);
    }

    99% {
        transform: translate(0) scale(1.2);
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
    }
}



@media screen and (max-width: 768px) {
    .hero {
        width: 100%;
        height: 160.507293vh;
        left: 0px;
        background-image: url(../../assests/img/banners/lightblue_bg.png);
        background-size: cover;
        background-position: center;
    }

    .heroimg {
        width: 100%;
        position: absolute;
        height: 160.089141vh;
        left: 0px;
        top: 55px;
        background-image: url(../../assests/img/banners/lines.png);
        background-size: cover;
        background-position: center
    }

    .herolayer {
        height: 160.507293vh;
        text-align: center;
        position: absolute;
    }

    .heromap {
        left: 0px;
        background-image: none;
        /*z-index: 1;        */
    }

    /* .animate {
    font-size: 34px;
    margin: 13.4% 0 0 6%;
    color: #000000;
    width: 90%;
    text-align: center;
    z-index: 1;
}*/
    /*.hero {
    width: 100%;
    height: 160.507293vh;
    left: 0px;
    background-image: url(../../assests/img/banners/lightblue_bg.png);
    background-size: cover;
    background-position: center;
}*/

    .heroicon {
        background-image: none;
    }

    .stats-counter {
        padding: 60px 10px 60px 10px;
        width: 100%;
        height: auto;
        left: 0px;
        background: rgba(207, 227, 236, 0.5);
        opacity: 1;
    }

        .stats-counter .stats-item {
            padding: 10px 0px;
            gap: 2px;
            position: relative;
            top: 2rem;
            border-right: 1px dashed #E77F0E;
        }

    .heroGlogo {
        position: relative;
        left: 33%;
        top: 36rem;
        z-index: 5;
    }

    .stats-counter .stats-item {
        border-right: 0px dashed #E77F0E;
    }

    .map-side {
        width: 100%
    }

    .form-side {
        width: 100%
    }
}





@media screen and (max-width: 425px) {
    /*.language {
    width: 100%;
    height: 51px;
    right: 0rem;
    position: absolute;
    top: 7.5rem;
    z-index: 1;
}*/

    /*.login {
    width: 100%;
    height: 43rem;
    right: 0rem;
    position: absolute;
    top: 10.5rem;
    z-index: 0;
}
*/


    /* .herolayer .welcome {
        display: flex;
        align-items: center;
        text-align: center;
        letter-spacing: 0.2px;
        color: #000000;
        position: absolute;
        left: 3rem;
        top: 13rem;
    }*/

    .hero .extlink {
        top: 2.3rem;
    }

    .heromap {
        left: 0px;
        background-image: none;
        <<<<<<< HEAD =======
        /*  z-index: 1;*/
        >>>>>>> 976359d411cd373c8f95ef8f0c8345d22248a47f
    }

    /* .animate {
    font-size: 34px;
    margin: 21.4% 0 0 6%;
    color: #000000;
    width: 90%;
    top: 8rem;
    text-align: center;
    z-index: 1;
    position: absolute;
    display: none;
}
*/
    /*.herolayer .learntext {
    position: absolute;
    left: 8%;
    top: 16.125rem;
    z-index: 1;
}*/

    /* .hero {
    width: 100%;
    height: 58rem;
    left: 0px;
    top: 3.5rem;
    background-image: var(--layer2);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: -1;
}*/

    .heroicon {
        background-image: none;
    }

    /*.stats-counter {
    padding: 60px 10px 60px 10px;
    width: 100%;
    height: auto;
    left: 0px;
    background: rgba(207, 227, 236, 0.5);
    opacity: 1;
}*/

    .stats-counter .stats-item {
        padding: 10px 0px;
        gap: 2px;
        position: relative;
        top: 2rem;
        border-right: 1px dashed #E77F0E;
    }

    .heroGlogo {
        position: relative;
        left: 33%;
        top: 36rem;
        z-index: 5;
        display: none;
    }

    .stats-counter .stats-item {
        border-right: 0px dashed #E77F0E;
    }
}




/*--------------------------------------------------------------
# Circualar Notices Us Section
--------------------------------------------------------------*/


.Cirnotices {
    padding-top: 10px;
}

    .Cirnotices.img-fluid {
        max-width: 84%;
        height: auto;
    }

    .Cirnotices .card {
        background: var(--color-card);
    }

        .Cirnotices .card .card-body {
            padding: 0 0.6rem 2rem 0.6rem !important;
            background: var(--color-graident);
        }


    .Cirnotices section {
        padding: 80px 0;
        overflow: hidden;
    }

    .Cirnotices .section-header {
        text-align: left;
        padding: 3px 0 3px 10px;
        position: relative;
    }

        .Cirnotices .section-header h2 {
            font-size: 23px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 20px;
            padding-bottom: 0;
            color: #001973;
            position: relative;
            z-index: 2;
            text-align: left;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
        }



    .Cirnotices .content h3 {
        font-weight: 700;
        font-size: 32px;
        font-family: var(--font-owner);
        font-style: normal;
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 0.2px;
        color: #3B3D42;
    }

    /* Bordered Tabs */
    .Cirnotices .nav_bar {
        padding: 0;
    }

        .Cirnotices .nav_bar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .Cirnotices .nav_bar li {
            position: relative;
            margin: 0px 0px 2px 3px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            align-content: space-around;
        }

            .Cirnotices .nav_bar li a {
                display: flex;
                justify-content: center;
                margin: 10px 0 10px 30px;
                font-family: var(--font-owner);
                font-size: 16px;
                font-weight: 400;
                color: var(--color-navbar-secondary);
                white-space: nowrap;
                transition: 0.3s;
                align-content: flex-end;
                flex-direction: row;
                align-items: flex-end;
            }

                .Cirnotices .nav_bar li a span {
                    color: var(--color-navbar);
                    margin: 5px 0px 3px 11px;
                    background: var(--color-navbar-secondary);
                }

                    .Cirnotices .nav_bar li a span:focus {
                        color: #ffffff;
                        --bs-bg-opacity: 1;
                        background-color: rgba(var(--bs-black-rgb),var(--bs-bg-opacity)) !important;
                    }

                    .Cirnotices .nav_bar li a span .active,
                    .Cirnotices .nav_bar li a span .active:focus {
                        color: #ffffff;
                        --bs-bg-opacity: 1;
                        background-color: rgba(var(--bs-black-rgb),var(--bs-bg-opacity)) !important;
                    }


        .Cirnotices .nav_bar a,
        .Cirnotices .nav_bar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 10px 0 10px 30px;
            font-family: var(--font-owner);
            font-size: 16px;
            font-weight: 400;
            color: var(--color-navbar-secondary);
            white-space: nowrap;
            transition: 0.3s;
        }

            .Cirnotices .nav_bar a i,
            .Cirnotices .nav_bar a:focus i {
                font-size: 16px;
                font-weight: 400;
                line-height: 0;
                margin-left: 5px;
            }

            .Cirnotices .nav_bar a:hover,
            .Cirnotices .nav_bar .active,
            .Cirnotices .nav_bar .active:focus,
            .Cirnotices .nav_bar li:hover > a {
                --bs-bg-opacity: 1;
                color: rgba(var(--bs-black-rgb)) !important;
                font-size: 16px;
                font-weight: 700;
                border-bottom: 2px solid var(--bs-black);
            }

        .Cirnotices .nav_bar li a .active span {
            --bs-bg-opacity: 1;
            background: rgba(var(--bs-black-rgb)) !important;
            color: var(--color-white) !important;
            font-size: 16px;
            font-weight: 700;
        }

    .Cirnotices .accordion-item {
        border: 0;
        margin-bottom: 10px;
        background: #FFFFFF !important;
        box-shadow: 2px 4px 6px rgb(0 0 0 / 15%);
        border-radius: 8px;
    }

    .Cirnotices .accordion-button {
        padding: 15px 30px 20px 60px;
        font-weight: 600;
        border: 0;
        font-size: 18px;
        color: var(--color-default);
        text-align: left;
        /* background: rgba(14, 29, 52, 0.03); */
        background: #FFFFFF !important;
        border-radius: 8px !important;
    }

        .Cirnotices .accordion-button:not(.collapsed) {
            color: var(--color-primary);
            border-bottom: 0;
            box-shadow: none;
        }

    .Cirnotices .question-icon {
        position: absolute;
        top: 14px;
        left: 25px;
        font-size: 20px;
        color: var(--color-primary);
    }

    .Cirnotices .search {
        display: block;
        position: relative;
        top: 6px;
        right: 8%;
        font-size: 20px;
    }

    .Cirnotices .form-control {
        background: rgba(255, 255, 255, 0.08);
        border-bottom: 1px dashed #80A2B3 !important;
        border: 0px;
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .Cirnotices .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
    }

        .Cirnotices .input-group > .form-control, .Cirnotices .input-group > .form-floating, .Cirnotices .input-group > .form-select {
            position: relative;
            flex: 1 1 auto;
            width: 1%;
            min-width: 0;
        }

@media (max-width: 640px) {
    .Cirnotices .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .Cirnotices .section-header span {
        font-size: 38px;
    }

    .Cirnotices .search {
        right: 4%;
        font-size: 17px;
    }

    .Cirnotices {
        font-size: 14px;
    }
}

.forgotpassword {
    min-height: 52vh;
}

    .forgotpassword .text-green {
        color: #059652;
    }

    .forgotpassword .text-blue {
        color: #009BC9;
    }

    .forgotpassword .form-control {
        background: rgba(255, 255, 255, 0.08);
        border-bottom: 1px dashed #80A2B3 !important;
        border: 0px;
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .forgotpassword .loginbtn {
        display: flex;
        position: relative;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        height: 40px;
        color: #fff;
        background: #1C4281;
        border-radius: 5px;
    }


    .forgotpassword .text-org {
        color: #E77F0E;
        font-weight: 700;
        font-size: 14px;
    }

    .forgotpassword .form-enter {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        background-clip: padding-box;
        border: 2px solid #84bede !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0.375rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

.modal {
    background: var(--forgot--bg);
    width: 100%;
    position: absolute;
    left: 0px;
    background-size: cover;
    background-position: center;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: 0px !important;
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
    align-content: flex-start;
    flex-direction: column-reverse;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    min-height: 100%;
    padding: var(--bs-modal-padding);
    background: var(--forgot--bg);
    background-position: bottom;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-header img {
    height: 3rem;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
