body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald' ;
    font-size:14px
}
@font-face {
    font-family: 'Oswald';
    src: url('../Fonts/Oswald-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../Fonts/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Exo-VariableFont_wght';
    src: url('../Fonts/Exo-VariableFont_wght.ttf') format('truetype');
}

    .top_header {
    height: 100px;
    background: #f2f2f2;
    border: 1px solid #f4f4f4;
    box-shadow: 0 0 15px rgba(0, 0, 0, .06);
    background-image: url('../../img/New_UI/crd_bg.jpg');
}

.logo_head {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Main_title {
    font-family: 'Oswald' !important;
    font-size: 25px;
    color: #2e961b;
    font-weight: 500;
    padding: 0 2% ;
}

    .Main_title span {
        display: block;
        font-size: 18px;
        margin-top: -7px;
        color: #555555;
    }

.logo_head img {
    width: 185px;
}
img.upneda_logo {
    width: 130px;
}

.card_section {
    position: relative;
    padding: 40px 0;
    background-repeat: no-repeat;
    background-image: url('../../img/New_UI/landing_img.jpg');
    background-size: 100%;
    height: 645px;
}

.card_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
    margin-top: 3%;
}

.deprt_crd {
    border-radius: 100%;
    position: relative;
    z-index: 9;
    transition: 0.3s;
}

    .deprt_crd::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        background-image: url('../../img/New_UI/shape.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        transition: 0.5s all;
        z-index: -1;
    }

    .deprt_crd:hover:after {
        transform: rotate(90deg);
    }

    .deprt_crd .crd_dtls {
        position: relative;
        padding: 20px;
        margin: 20px;
        background: #fff;
        height: 150px;
        width: 150px;
        border-radius: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        box-shadow: 0 0 15px rgba(0, 0, 0, .06);
        background-image: url(../../img/New_UI/crd_bg.jpg);
    }


.crd_dtls img {
    width: 55px;
    display: block;
    margin-bottom: 7px
}

.crd_dtls a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    color: #ff7d2d;
    flex-wrap: wrap;
    line-height: 19px;
}

.deprt_crd:hover a {
    color: #2e961b;
}

.main_btn {
    visibility: visible;
    opacity: 1;
    transform: none;
    overflow: hidden;
    perspective: 0dvh;
    transition: 0.4s ease-in-out;
    background-color: #551a8b;
    border: 1px solid #551a8b;
    color: #fff !important;
    position: relative;
    z-index: 0;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    line-height: 20px;
    padding: 5px 13px;
    border-radius: 5px;
    display: block;
    min-width: 100px;
}

   /* .main_btn:before,
    .main_btn:after {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #2e961b;
        z-index: -1;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
        border-radius: 99px;
        -webkit-transform: scaleY(1.1);
        -ms-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    .main_btn:before {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    .main_btn:after {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    .main_btn:hover::before,
    .main_btn:hover:after {
        border-radius: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }*/

    .main_btn:hover {
        background: #2e961b;
        border: 1px solid #2e961b;
    }

.back_btn {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.footer_sec {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 19px 40px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    font-family: Poppins;
    color: #000;
}
.overflow-hidden {
    overflow: hidden
}

.login_crd {
    position: relative;
    width: 340px;
    height: 320px;
    background: #fff;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    box-shadow: 8px 5px 20px 0px #00000057;
}

    .login_crd::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 340px;
        height: 320px;
        background: linear-gradient(0deg, transparent, #47af34, #47af34);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
    }

    .login_crd::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 340px;
        height: 320px;
        background: linear-gradient(0deg, transparent, #9b1fe8, #9b1fe8);
        transform-origin: bottom right;
        animation: animate 6s linear infinite;
        animation-delay: -3s;
    }

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login_crd_inr {
    position: absolute;
    inset: 3px;
    border-radius: 8px 0 0 8px;
    background: #ffffff;
    z-index: 10;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
}

    .login_crd_inr h2 {
        color: #9b1fe8;
        font-weight: 700;
        font-size: 18px;
        text-align: center;
        letter-spacing: 0.1em;
    }

    .login_crd_inr h3 {
        color: #47af34;
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        letter-spacing: 0.1em;
    }

.input_box {
    width: auto;
    height: auto;
    position: relative;
}

    .input_box label {
        font-size: 14px;
        color: #47af34;
        padding: 3px 8px;
        position: absolute;
        font-weight: 600;
        top: -14px;
        font-family: 'Oswald';
        left: 8px;
        background: #fff;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
        pointer-events: none;
    }

.drpdown {
    outline: none;
    border-radius: 3px;
    height: 36px;
    width: 100%;
    padding-left: 5px;
    padding-top: 3px;
    color: #000;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    background: #fff;
    border: 1px solid #47af34;
}

.District_img {
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    box-shadow: -8px 5px 20px 0px #00000057;
}

.login_crd_box, .District_img {
    overflow: hidden;
    margin-top: 25px;
}





.input_box {
    position: relative;
    margin: 10px 0;
}

    .input_box input {
        position: relative;
        width: 100%;
        padding: 10px;
        height: 35px;
        background: transparent;
        border: none;
        outline: none;
        color: #23242a;
        z-index: 9
    }

    .input_box span {
        position: absolute;
        left: 6px;
        top: 7px;
        font-size: 1em;
        color: #4e4c4c;
        pointer-events: none;
        letter-spacing: 0.05em;
        transition: 0.5s;
    }

    .input_box input:valid ~ span,
    .input_box input:focus ~ span {
        color: #ff7d2d;
        transform: translateX(0px) translateY(-34px);
        font-size: 15px;
        top: 21px;
        left: 5px;
        padding: 0 5px;
        z-index: 99;
        background: #fff;
    }

    .input_box i {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #ffffff;
        border: 1px solid #ff7d2d;
        border-radius: 3px;
        transition: 0.5s;
        pointer-events: none;
    }

    .input_box input:valid ~ i,
    .input_box input:focus ~ i {
        height: 35px;
    }

    .input_box .alert_span {
        position: absolute;
        font-size: 10px;
        color: red;
        right: 0;
        left: auto;
        top: auto;
        bottom: 3px;
    }

    .input_box input:valid ~ .alert_span,
    .input_box input:focus ~ .alert_span {
        position: absolute;
        font-size: 10px;
        color: red;
        right: 6px;
        left: auto;
        background: antiquewhite;
        top: 24px;
        height: 18px;
        bottom: 3px;
        border-radius: 8px;
        z-index: 999;
    }

.alert_msg {
    position: absolute;
    bottom: 109px;
    right: 30px;
}

    .alert_msg span {
        font-size: 12px;
        color: red;
    }

.login_checkbox {
    margin-top: 14px;
    font-size: 13px;
    display: flex;
    gap: 0 3px;
    align-items: center;
    margin-bottom: 20px;
    color: #9b1fe8;
}

.user_log {
    position: absolute;
    right: 15px;
}

    .user_log h1 {
        font-size: 15px;
        color: #9b1fe8;
    }
.Logot_btn input {
    background: #ff7d2d;
    color: #ffffff;
    font-size: 14px;
    border-radius: 5px;
    line-height: 12px;
    padding: 5px 10px;
    float: right;
    border: 1px solid #fc7928;
}
    .Logot_btn input:hover {
        border-color: #9b1fe8;
        background: #9b1fe8;
    }
nav.navbar.navbar-default {
    width: 100%;
    background: #6baf00;
    padding: 0 60px;
}
.page_heading {
    color: #ff7d2d;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-left: 25px;
    font-family: 'Exo';
    z-index: -1;
    margin-bottom: 15px;
    margin-top: 30px;
}

    .page_heading:before {
        content: "";
        background-image: url(../../img/New_UI/solarpanel.png);
        background-size: contain;
        display: inline-block;
        width: 30px;
        height: 30px;
        top: 6px;
        position: relative;
        margin-right: 1px;
        margin-left: -20px;
    }

.sub_heading {
    color: var(--themecolor1);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 21px;
    font-family: 'Exo';
    margin-bottom: 15px;
    margin-top: 15px;
}

    .sub_heading:before {
        content: "";
        background-image: url(../../MediaGallery/Icons/sub_head.png);
        background-size: contain;
        display: inline-block;
        width: 28px;
        height: 28px;
        position: relative;
        top: 4px;
        margin-right: 4px;
        margin-left: -30px;
    }

.page_li {
    list-style: none;
    padding-left: 5px;
}

    .page_li li {
        position: relative;
        padding-left: 10px;
    }

        .page_li li:last-child {
            border-bottom: none
        }

    .page_li li {
        font-size: 15px;
        padding: 7px 5px;
        padding-left: 27px;
        width: fit-content;
        text-align: justify;
        border-bottom: 1px dashed #dfdfdf;
        line-height: 24px;
    }

        .page_li li::before {
            content: "";
            background-image: url(../../MediaGallery/Icons/li_1.png);
            background-size: contain;
            display: inline-block;
            width: 23px;
            height: 23px;
            position: relative;
            top: 7px;
            margin-left: -26px;
            margin-right: 5px;
        }

        .page_li li .page_li li::before {
            background-image: url(../../MediaGallery/Icons/li_2.png);
            width: 22px;
            top: 6px;
            height: 22px;
        }

        .page_li li li .page_li li:before {
            background-image: url(../../MediaGallery/Icons/li_3.png);
            width: 20px;
            top: 5px;
            height: 20px;
        }


ol li {
    padding: 3px;
}
.footer_box .footer_sec {
    border-top: 1px solid #ffd7be;
    background: #ffe7d8;
    position: relative;
    margin-top: 60px;
}
.main_page {
    padding: 20px 60px;
    min-height: 550px;
    position:relative;
}
.main-inner {
    position: relative;
}
.dropdown_display3 {
    display: flex;
    align-items: center;
    justify-content: end;
    color: #000;
    margin-left: 10px;
    line-height: 28px;
    padding-right: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Oswald' !important;
}

    .dropdown_display3 span {
        font-weight: 400;
        font-size: 15px;
        margin-right: 6px;
        font-family: 'Oswald' !important;
    }

    .dropdown_display3 select, .dropdown_display3 INPUT {
        border: 1px solid #dee2e6;
        padding: 3px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 15px;
        height: 30px;
        font-family: 'Oswald' !important;
    }
span.success_alrt {
    color: green;
    position: absolute;
    right: 15px;
    top: 35px;
}

@media only screen and (max-width: 1501px) and (min-width: 510px) {
    .login_crd_box, .District_img, .login_crd {
        width: 300px;
        height: 280px;
    }

    .login_crd_inr {
        padding: 15px 30px;
    }

    .card_section {
        position: relative;
        padding: 1px 0;
    }

    .alert_msg {
        position: absolute;
        bottom: 102px;
        right: 30px;
    }

        .alert_msg span {
            font-size: 11px;
        }

    .back_btn {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .login_checkbox {
        margin-bottom: 10px;
    }
}



