:root {
    --first-color: #46d2d4;
    --second-color: #f68121;
    --third-color: #ffde7c;
    --bg-color-light: #fbf7ff;
    --bg-light: #e6e6e6;
    --shadow: 0 10px 10px -5px #121a3c;
    --shadow-teal: 0 10px 10px -5px #134e4a;
    /* Scale is using this font-size */
    --font-size: 0.8em;
    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --gold: #f1c40f;
    --red: #e74c3c;
    --orange: #e67e22;
    --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
    --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

body {
    margin: 0;
    padding: 0;
    background:url(../images/banner/pattern.png);
}

iframe,
img,
video {
    vertical-align: middle;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: #555;
}

ul {
    list-style: none;
    padding: 0;
}

h4 {
    color: var(--second-color);
    font-weight: 700;
}

.btn {
    color: #fff;
    font-size: 18px;
    padding: 8px 20px;    
    border: 1px dashed var(--first-color);
    transition: 2s;
    display: inline-block;
    background-color: var(--second-color);
    border-radius: 0;
}

    .btn:hover {
        transition: all 1s ease-out;
        border: 1px solid var(--first-color);
        background-color: rgba(0, 0, 0, 0);
        color: var(--first-color);
    }

.btn-remov {
    background: var(--second-color);
    color: #fff;
    border: 1px solid #fff;
}

.divide-row {
    margin-bottom: 0px;
    height: .5px;
    position: relative;
    background-color: rgba(0, 0, 0, .06);
    z-index: 9;
}

    .divide-row::after {
        background-color: var(--second-color);
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        transform: translate(-50%, -50%);
        animation: move 20s linear infinite alternate;
    }

@keyframes move {
    0% {
        left: 0;
        right: 99%;
    }

    100% {
        right: 0;
        left: 99%;
    }
}

/* header css */

.top-header {
    background-color: var(--second-color);
}

header .logone img {
    width: 250px;
    padding-right: 10px;
}

header .logotwo img {
    width: 200px;
    padding-right: 10px;
}

header .logo img {
    width: 150px;
    padding-right: 10px;
}

/* Relative Code Starts Here */

.nav-menu {
    position: absolute;
    background: none;
    width: 60px;
    height: 80px;
    top: 0;
    right: 15px;
    z-index: 99;
    transition: width 0.2s ease, height 0.4s ease;
    overflow: hidden;
}

.open {
    position: fixed;
    background: #060402de;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: auto;
}

.menu-list {
    /*text-align: center;*/
    margin-top: 100px;
    opacity: 0;
    font-size: 30px;
    width: 20%;
    margin: 100px auto 0;
}

.list-open {
    opacity: 1;
    transition: opacity 0.64s ease;
    transition-delay: 0.34s;
}

.menu-list li {
    padding: 10px;
    color: #fff;
}

    .menu-list li:hover {
        background: #fff;
        color: #39D;
        cursor: pointer;
    }

.navbar-nav .nav-link i {
    font-size: 25px;
    padding-right: 10px;
}

/* toggle-btn */
.toggle-btn {
    position: fixed;
    top: 44px;
    right: 15px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 70px;
    transition: all .3s;
}

    .toggle-btn span {
        display: block;
        position: absolute;
        top: 30px;
        left: 16px;
        right: 16px;
        height: 3px;
        background: #060402de;
        border-radius: 15px;
        transition: background 0.3s .3s;
        transition-delay: 0.4s, 0s;
    }

        .toggle-btn span::after,
        .toggle-btn span::before {
            position: absolute;
            display: block;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--second-color);
            content: "";
            border-radius: 5px;
            transition-duration: .3s, .3s;
            transition-delay: 0.4s, 0s;
        }

        .toggle-btn span::before {
            top: -8px;
            transition-property: top, transform;
        }

        .toggle-btn span::after {
            bottom: -8px;
            transition-property: bottom, transform;
        }

.open .toggle-btn span::after,
.open .toggle-btn span::before {
    -webkit-transition-delay: 0s, .4s;
    transition-delay: 0s, .4s;
    background-color: #fafafa;
}

.open .toggle-btn span::before {
    top: 0;
    transform: rotate(45deg);
}

.open .toggle-btn span::after {
    bottom: 1px;
    transform: rotate(-45deg);
}

.scrolled a.toggle-btn {
    top: 10px;
}

.navbar a.nav-link {
    color: var(--second-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px 15px !important;
}

    .navbar a.nav-link.active {
        /* background-color: var(--third-color); */
        color: var(--second-color);
        border-bottom: 3px solid var(--first-color);
    }

    .navbar a.nav-link:hover {
        border-bottom: 3px solid var(--first-color);
        color: var(--first-color);
        border-radius: 5px;
        margin-right: 10px;
    }

/* counter css start */

.count {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.counter-wrapper {
    background-image: url('../images/banner/three-bg.jpg');
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 50px 0;
}

    .counter-wrapper:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .7);
    }

.counter-inner {
    position: relative;
    z-index: 2;
}

.count-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: var(--second-color);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.counterbox {
    background: #0005;
    box-shadow: 2px 2px 5px #ddd;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    padding: 2rem;
    margin: 0 20px;
}

/* counter css enf */

/* nav tabs design css nilesh */
div#v-pills-tab button {
    box-shadow: 2px 2px 5px var(--second-color);
    /* margin: 0 !important; */
    /* padding: 15px 45px 15px 15px; */
}

.tabssection button {
    margin-bottom: 20px;
    background-color: var(--second-color);
    color: #000;
    position: relative;
    border: none;
    font-weight: 500;
}

    .tabssection button:hover {
        border: none;
        background-color: var(--third-color);
        color: var(--blue);
    }

    .tabssection button.active {
        background-color: #00BCD4 !important;
        color: #000 !important;
    }

    .tabssection button.active:after {
        content: "";
        border-top: 15px solid var(--first-color);
        border-bottom: 15px solid var(--first-color);
        border-left: 15px solid var(--first-color);
        border-right: 15px solid var(--first-color);
        display: inline-grid;
        position: absolute;
        left: 50%;
        top: 27px;
        transform: rotate(45deg);
        box-shadow: 3px -2px 3px 0px #00000036;
        z-index: -1;
    }

/* tabs design css start */
main#main {
    padding-bottom: 50px;
}
.tab-content {
    background: #46d2d42e url(../images/banner/bgpattern.jpg);
    background-blend-mode: multiply;
    padding: 20px;
}
ul.infoGraphic {
    font-size: var(--font-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #ffffff57;
    padding: 10px 0;
    box-shadow: 0px 0px 10px #ddd;
}

    ul.infoGraphic li {
        position: relative;
        width: 100%;
        max-width: 25em;
        background: var(--bg1);
        border-radius: 0.5em;
        padding: 0.5em;
        /*z-index: 1;*/
        transition: all 0.2s;
        /* cursor: pointer; */
        margin: 10px;
    }

        ul.infoGraphic li .numberWrap {
            position: absolute;
        }

        ul.infoGraphic li .number {
            font-family: "maven pro", sans-serif;
            font-size: 9em;
            font-weight: 900;
            width: 0.9em;
            text-align: center;
        }

            ul.infoGraphic li .number.fontColor1 {
                color: var(--blue);
            }

            ul.infoGraphic li .number.fontColor2 {
                color: var(--green);
            }

            ul.infoGraphic li .number.fontColor3 {
                color: var(--purple);
            }

            ul.infoGraphic li .number.fontColor4 {
                color: var(--gold);
            }

            ul.infoGraphic li .number.fontColor5 {
                color: var(--red);
            }

            ul.infoGraphic li .number.fontColor6 {
                color: var(--orange);
            }

        ul.infoGraphic li .coverWrap {
            transform: rotate(130deg);
            position: absolute;
            width: 18em;
            height: 15em;
            left: -3em;
            top: -1em;
        }

            ul.infoGraphic li .coverWrap .numberCover {
                position: absolute;
                background: var(--bg1);
                width: 18em;
                height: 6em;
                border-radius: 50% 50% 0 0;
                border-bottom: 3px solid #f5f8f7;
                transition: all 0.4s;
            }

                ul.infoGraphic li .coverWrap .numberCover::before {
                    position: absolute;
                    content: "";
                    bottom: 5px;
                    left: 4em;
                    right: 4em;
                    top: 5em;
                    box-shadow: 0 0 30px 17px #48668577;
                    border-radius: 100px / 10px;
                    z-index: -1;
                }

                ul.infoGraphic li .coverWrap .numberCover::after {
                    position: absolute;
                    bottom: 0;
                    content: "";
                    left: -10%;
                    width: 120%;
                    height: 150%;
                    background: radial-gradient(at bottom, #48668533, transparent, transparent);
                    z-index: 1;
                }

        ul.infoGraphic li .content {
            margin: 8em 3em 1em 7em;
            position: relative;
        }

            ul.infoGraphic li .content h2 {
                font-size: 1.7em;
                font-weight: 500;
                text-align: center;
                margin-bottom: 10px;
                text-transform: uppercase;
            }

        ul.infoGraphic li:hover .coverWrap .numberCover {
            border-radius: 100%;
        }

/* Icons */
.icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    left: 50%;
    transform: translateX(-50%);
}

    .icon:before {
        color: #666;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
    }

.iconCodepen:before {
    content: "\f1cb";
}

.iconSocial:before {
    content: "\f08a";
}

.iconAirplane:before {
    content: "\f1d9";
}

.iconMap:before {
    content: "\f278";
}

.iconBulb:before {
    content: "\f0eb";
}

.iconPeace:before {
    content: "\f25b";
}


/* four second design */
/*.card-wrapper {
    --color-primary: #00768b;
    --color-secondary: #01a188;
    --box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.5);
    width: 200px;
}

    .card-wrapper .card-header {
        width: 90%;
        background: #fff;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 15px;
        border-top-left-radius: 70px !important;
        z-index: 2;
        position: relative;
        box-shadow: var(--box-shadow);
    }

.card-header:after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 20%;
    width: 30px;
    height: 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    transform: rotate(45deg);
    z-index: 1;
}

.card-wrapper .card-header i {
    font-size: 40px;
    color: var(--color-primary);
}

.card-wrapper .card-header h1,
.card-wrapper .card-header h2 {
    text-transform: uppercase;
    color: var(--color-primary);
}

.card-wrapper .card-header h1 {
    font-size: 18px;
}

.card-wrapper .card-header h2 {
    font-size: 14px;
    margin-top: 15px;
}

.card-wrapper .card-header p {
    font-size: 12px;
    text-align: justify;
    margin-top: 10px;
}

.card-footer {
    width: 100%;
    height: 250px;
    background-image: linear-gradient(to right bottom, var(--color-secondary), var(--color-primary));
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    margin-top: -150px;
    border-radius: 5px 5px 70px 0px;
    color: #fff;
    overflow: hidden;
}

    .card-footer .footer-content-wrap {
        padding: 0 30px 10px 20px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .card-footer .footer-text-wrap {
        text-align: center;
        color: rgba(255, 255, 255, 0.3);
    }

    .card-footer i {
        font-size: 48px;
        color: rgba(255, 255, 255, 0.7);
    }

    .card-footer h1 {
        font-size: 60px;
        line-height: 0.85;
        font-weight: 400;
    }

    .card-footer p {
        font-size: 12px;
        text-transform: uppercase;
    }

.card-wrapper.one {
    --color-primary: #45b649;
    --color-secondary: #dce35b;
}

.card-wrapper.two {
    --color-primary: #fc4a1a;
    --color-secondary: #f7b733;
}

.card-wrapper.three {
    --color-primary: #7b920a;
    --color-secondary: #add100;
}

.card-wrapper.four {
    --color-primary: #000046;
    --color-secondary: #1cb5e0;
}*/
/* tabs css nilesh end */
/* form css start nilesh */
.mask {
    position: absolute;
    background-size: cover;
    background-position: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
}

.bg-primary {
    background-color: #f97316 !important;
}

.opacity-9 {
    opacity: .9 !important;
}

.opacity-8 {
    opacity: .8 !important;
}

.z-index-2 {
    z-index: 2 !important;
}

.form-label,
label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #27272a;
    margin-left: 10px;
}
.col-form-label {
    color: #f68121;
}
.w-10 {
    width: 10%;
    padding: 10px;
}

h4.newshd {
    background: var(--third-color);
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 2px 2px 5px;
}

table tr th {
    background: #ee852d !important;
    border: 1px solid #ffffff !important;
    color: #fff !important;
}
tbody, td, tfoot, th, thead, tr {
    vertical-align: middle;
}
.table-hover > tbody > tr:hover td {
    background: #00f8ff2e !important;
    border: 1px solid #fff;
}
.table tr td .btn {
    color: #fff;
    font-size: 16px;
    padding: 3px 10px;
    border: 1px dashed var(--first-color);
    transition: 2s;
    display: inline-block;
    background-color: var(--second-color);
    border-radius: 0;
}

/* form css start end */

/* breadcrumb css start nilesh */

.breadcrumb li {
    position: relative;
    padding: 0;
    margin: 0px 10px 0px 0px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-width: 0;
    border-left-width: 10px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    z-index: 2;
    border-left-color: #000;
    left: 0;
}

.breadcrumb-item.active a {
    color: var(--second-color);
}

/* footer section css nilesh */

footer {
    padding: 30px 0;
    background-color: var(--bg-color-light);
}

.footlogo img {
    width: 130px;
    padding-bottom: 15px;
}

footer .useful-link a {
    color: var(--second-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
    /* display: inline-block; */
    /* padding: 5px 0 0; */
}

footer h4 {
    color: var(--second-color);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 20px;
}

footer .useful-link a:hover {
    color: var(--first-color);
    padding-left: 15px;
    transition: all 0.5s;
}

.useful-link i.fa-angle-right,
.address i {
    color: var(--first-color);
    padding-right: 10px;
}

.address a {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.address p {
    margin: 0;
}

.copyrightsec {
    background-color: var(--blue);
    background: var(--first-color);
    /*position: fixed;
    bottom: 0;
    width: 100%;*/
    margin-top: auto;
    padding: 0.5rem 0;
}




.card-header {
    background: var(--first-color);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.accordion-collapse {
    background: #ffe9d7;
}

button.accordion-button {
    font-weight: 700;
    background: #f68121;
    color: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #f68121;
}

.accordion-button:focus {
    box-shadow: none;
}

.imptred {
    color: #f00;
}

.dashbordpanel .toggle-btn {
    right: auto;
    left: 30px;
}

.dashmain .card {
    box-shadow: 2px 2px 10px var(--second-color);
    transition: 0.5s;
}

    .dashmain .card:hover {
        box-shadow: 2px 2px 10px var(--first-color);
        transition: 0.5s;
    }

.dashbordpanel div#offcanvasExample {
    background: linear-gradient(45deg, #ffd, #fdd);
}
a.dropdown-item {
    background: var(--second-color);
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 7px 15px;
}
a.dropdown-item:hover {
    background: var(--first-color);
}
ul.dropdown-menu.show {
    padding: 0px;
    border: 1px solid #fff;
}

.srrigpg {
    background-image: url(../images/bodybg2.png), url(../images/bodybg2.png);
    background-position: left, right;
    background-repeat: repeat-y, repeat-y;
    background-size: 60px, 60px;
    background-attachment: fixed;
}

.studespg {
    background-image: url(../images/bodybg2.png), url(../images/bodybg2.png), url(../images/banner/pattern.png);
    background-position: left, right, center;
    background-repeat: repeat-y, repeat-y, repeat;
    background-size: 60px, 60px, auto;
    background-attachment: fixed;
}

/*.srrigpg .container-fluid, .studespg .container-fluid {
    width: 85%;
}*/











/* responsive css nilesh */

@media (max-width:991px) {
    .navbar a.nav-link {
        padding: 8px 10px;
    }

    .toggle-btn {
        top: 77px;
        right: 5px;
    }

    .scrolled a.toggle-btn {
        top: -10px;
    }

    .dashbordpanel .toggle-btn {
        left: 10px;
        top: 50px;
    }
}

@media (max-width:767px) {
    .counterbox {
        margin: 10px 0px;
        padding: 15px 10px;
    }

    .count {
        font-size: 25px;
    }

    .count-icon {
        font-size: 25px;
        width: 50px;
        height: 50px;
    }  
    
}

@media (min-width: 576px) {
    .ps-sm-8 {
        padding-left: 8rem !important;
    }
}

/* Disable scrollbar on Chrome and Safari browsers! */
/* html::-webkit-scrollbar { width: 0 !important; height: 0 !important; } */
