﻿.navSideImg img {
    margin: 0px 5px;
    object-fit: contain;
}

body {
    background: #E9E9E9;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgb(30 30 30);
    padding: 10px 10px !important;
    position: relative;
    &::before

{
    content: "";
    position: absolute;
    width: 90%;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #019DD7;
    border-radius: 10px;
    transform: scaleX(0);
    transition: 0.5s;
}

&:hover {
    color: #019DD7;
    &::before

{
    transform: scale(1);
}

}
}

.navbar-nav .nav-link.active {
    color: #019DD7;
    position: relative;
    &::before

{
    content: "";
    position: absolute;
    width: 90%;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #019DD7;
    border-radius: 10px;
    transform: scaleX(1);
    transition: 0.5s;
}

}

.main {
    display: flex;
}

.sidebar {
    background: #019DD7;
    padding: 25px;
    width: 320px;
    height: calc(100% - 158px);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    margin-top: 105px;
    overflow: auto;
    transition: 0.5s;
    z-index: 2;
}

    .sidebar.shrink {
        left: -320px;
        opacity: 0;
        transition: 0.5s;
    }

.sidebar-footer {
    background: #d3f0ff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin: -25px;
    position: fixed;
    bottom: 25px;
    width: 320px;
}

.side-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #fff;
}

.side-nav {
    color: #fff;
    padding-top: 10px;
    margin-bottom: 20px;
    border-top: 1px solid #fff;
}

    .side-nav ul li a {
        padding: 9px 10px;
        text-decoration: none;
        color: #fff;
        border-radius: 5px;
        display: block;
        margin: 5px 0px;
    }

        .side-nav ul li a:hover {
            background: #007DAC;
        }

        .side-nav ul li a i {
            width: 25px;
            display: inline-grid;
            place-content: center;
            margin-right: 5px;
        }

    .side-nav > h6 {
        opacity: 0.7;
        font-weight: 400;
    }

.main-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    width: calc(100% - 320px);
    color: #fff;
    background: #464646;
    position: fixed;
    bottom: 0px;
    right: 0px;
    margin-left: 320px;
    font-size: 14px;
}

    .main-footer.shrink {
        transition: 0.5s;
        margin-left: 0px;
        width: calc(100%);
    }

.admin-body {
    padding: 25px 35px;
    width: calc(100% - 320px);
    margin-left: 320px;
    height: calc(100% - 105px);
    overflow: auto;
    position: fixed;
    transition: 0.5s;
    z-index: 0;
}

    .admin-body.shrink {
        transition: 0.5s;
        margin-left: 0px;
        width: calc(100%);
    }

.admin-body-header {
    display: flex;
    justify-content: space-between;
    /*      text-align: center;*/
    margin-bottom: 25px;
}

.logout-dropdown .dropdown-toggle {
    padding: 9px 15px 9px 35px;
    border-radius: 0px;
}

.body-card-main {
    position: relative;
    background: #fff;
    padding: 20px 35px 35px 35px;
}

.body-card {
    padding: 25px 35px;
    overflow: hidden;
    height: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 82, 255, 0.09);
    text-decoration: none;
    color: rgba(0, 0, 0, 0.54);
    transition: 0.5s;
    &.two

{
    height: 240px;
    display: block;
    text-align: center;
}

}

.body-card:hover {
    background: rgba(15, 82, 255, 0.18);
    color: #000;
}

.body-card h6 {
    font-weight: 700;
    .two &

{
    margin-top: 70px;
}

}

.body-card-main h5 {
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}

    .body-card-main h5:before {
        content: "";
        position: absolute;
        width: 25px;
        height: 18px;
        left: -35px;
        top: 4px;
        background: #019DD7;
    }


.body-card span {
    font-size: 62px;
    color: white;
    position: relative;
    z-index: 2;
    transition: cubic-bezier(0.53, -0.4, 0.49, 1.4) 0.35s;
    .two &

{
    transform: translateY(20px);
}

}

.body-card span:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -20px;
    top: -20px;
    background: #FF7A00;
    border-radius: 50%;
    z-index: -1;
    transition: cubic-bezier(0.53, -0.4, 0.49, 1.4) 0.35s;
}

.col:nth-child(2) .body-card span:after {
    background: #7A35EB;
}

.col:nth-child(3) .body-card span:after {
    background: #4484F5;
}

.col:nth-child(1) .body-card.two span:after {
    background: #24A039;
}

.col:nth-child(2) .body-card.two span:after {
    background: #F855BC;
}

.col:nth-child(3) .body-card.two span:after {
    background: #FFA800;
}

.col:nth-child(4) .body-card.two span:after {
    background: #25B6E3;
}

.body-card:hover span:after {
    transform: scale(2.5);
}

.body-card.two:hover span:after {
    transform: scale(3.5) translateY(-30px);
}

.body-card:hover span {
    transform: translateX(-10px);
    .two &

{
    transform: translateX(0px);
}

}

#sidebar-menu-icon2 {
    padding: 5px;
    margin-top: 25px;
    background: #349fd4;
    display: block;
    width: 27px;
    position: absolute;
    border-radius: 0px 4px 4px 0;
    z-index: 1;
}


/*login css start*/
.about {
    padding: 5rem 0px;
}

.cpcb {
    background: rgb(1 157 215 / 18%);
    margin-top: -4px;
}

.NHWTS {
    background: #fff;
    p

{
    font-size: 22px;
}

}

.login-section {
    position: relative;
    >img

{
    height: 98vh;
    object-fit: cover;
    width:100% !important
}

.slider {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    .carousel-indicators

{
    right: 0;
    bottom: -54px;
    left: auto;
    margin-right: 25px;
    [data-bs-target]

{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 50px;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
}

.active {
    background: #00FF85;
    box-shadow: 0px 0px 0px 4px #006010;
}

}

.carousel-item:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    right: 0;
    background: rgb(1 157 215 / 72%);
    z-index: 0;
    position: absolute;
    mix-blend-mode: multiply;
}

.carousel-caption {
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    h5

{
    font-size: 40px;
    font-weight: 700;
}

}
}
}

.btn.btn-login {
    background: #FF7640;
    padding: 7px 45px;
    color: #fff;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0px 5px 5px #00000045;
    margin-top: 20px;
    transition: 0.25s;
    &:hover

{
    transform: scale(1.08);
}

}

.btn-close {
    position: absolute;
    right: -7px;
    top: -7px;
    background-color: #00fff0e3;
    border-radius: 30px;
    opacity: 1;
    filter: invert(1);
}

.login-form :is(input, select, button) {
    height: 45px;
    &:is(input, select)

{
    border-radius: 4px;
    background-color: #E3E3E3;
}

}

.login-form a {
    color: #00658A;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-inside-login {
    background: #039ED7;
    border-radius: 50px;
    border: 3px solid #006A92;
    color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 68, 94, 0.27);
}

#loginModal .nav-pills .nav-link.active,
#loginModal .nav-pills .show > .nav-link {
    background-color: #FF7640;
    border: 3px solid #962A00;
    border-radius: 100px;
    color: #fff;
}

#loginModal .nav-pills .nav-link {
    border-radius: 50px;
    border: 3px solid #8A8A8A;
    color: #8a8a8a;
}

.section-contact {
    padding: 5rem 0px;
    background-image: url('../img/login/contact-bg.png');
}

.ftr-btm {
    background: #34a0d4;
    padding: 10px;
    color: white;
}

.contact-icon {
    background: #24A039;
    min-width: 35px;
    height: 35px;
    border-radius: 100px;
    display: grid;
    place-content: center;
    color: #fff;
}
/*login css end*/


@media screen and (max-width: 768px) {
    .admin-body {
        margin-left: 0px;
        width: calc(100%);
    }
}
