@import url('https://fonts.googleapis.com/css?family=Hind:400,600&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --dmt-D: #ee3a3c;
    --dmt-M: #f9aa29;
    --dmt-T: #4ab95e;
    --bg: #fff;
    --fg: #17181c;
    --color: #00b3a1;
}
/*--------------------------------------------------------------
# Dark Mode Theme
--------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #17181c;
        --fg: #e3e4e8;
    }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    overflow: hidden;
    background: var(--bg);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmt_D, .dmt_M, .dmt_T {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    transform-origin: 50% 100%;
    animation: dmtBounce 1s linear infinite;
    font-size: 24px;
    line-height: 0;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    margin: 0px 10px;
}

.dmt_D {
    background: var(--dmt-D);
}

.dmt_M {
    background: var(--dmt-M);
    animation-delay: 0.1s;
}

.dmt_T {
    background: var(--dmt-T);
    animation-delay: 0.2s;
}

/* Animations */
@keyframes dmtBounce {
    from, to {
        transform: translateY(0) scale(1, 1);
        animation-timing-function: ease-in;
    }

    45% {
        transform: translateY(5em) scale(1, 1);
        animation-timing-function: linear;
    }

    50% {
        transform: translateY(5em) scale(1.5, 0.5);
        animation-timing-function: linear;
    }

    55% {
        transform: translateY(5em) scale(1, 1);
        animation-timing-function: ease-out;
    }
}

body {
    position: relative;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0px;
    font-family: 'Hind', sans-serif;
}

    body::-webkit-scrollbar, body::-webkit-scrollbar-thumb, body::-webkit-scrollbar-track {
        display: none;
    }

::-moz-selection {
    background: var(--color);
    color: #fff
}

::-webkit-selection {
    background: var(--color);
    color: #fff
}

::-o-selection {
    background: var(--color);
    color: #fff
}

::-ms-selection {
    background: var(--color);
    color: #fff
}

::selection {
    background: var(--color);
    color: #fff
}

/* ############################################################################### */
/* ############################################################################### */

.shutter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /*border-radius: 15px;*/
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

    .shutter .flexing-1,
    .shutter .flexing-2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .shutter .flexing-1 {
        z-index: 1;
        background: #fff;
        padding: 60px 0px;
        border: 4px solid #f9aa29;
        border-left: 4px solid #ee3a3c;
        border-right: 4px solid #ee3a3c;
        border-radius: 15px;
    }

        .shutter .flexing-1::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            content: '';
            background-size: contain;
            opacity: 0.3;
            z-index: 0;
        }

        .shutter .flexing-1::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-image: url('../img/flag.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0.3;
            z-index: 0;
        }

    .shutter .flexing-2 {
        flex: 2;
    }

        .shutter .flexing-2::before {
            position: absolute;
            top: 0px;
            bottom: 0px;
            right: 0px;
            left: 0px;
            content: '';
            background: linear-gradient(to right, #e0477d, #1bc2ff);
            opacity: 0.9;
        }

.fullscreen-banner {
    position: relative;
    overflow: hidden;
    height: 88vh;
    background-position: center center;
    background-image: url(../img/bg.jpg);
    background-position: right;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

    .fullscreen-banner::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0.00;
        background: #000000;
        pointer-events: none;
    }

.animatedBackground {
    --animate-config: animatedBackground 40s linear infinite;
    background-repeat: repeat !important;
    background-size: auto !important;
    animation: var(--animate-config);
    -ms-animation: var(--animate-config);
    -moz-animation: var(--animate-config);
    -webkit-animation: var(--animate-config);
}

/*--------------------------------------------------------------
# USP Section
--------------------------------------------------------------*/
#usp {
    position: relative;
    background: #f3f7ff;
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.usp-wrp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none !important;
}

    .usp-wrp img {
        height: auto;
        max-width: 100%;
        width: 40%;
        padding: 0px 10px;
    }

    .usp-wrp span {
        font-weight: 600;
        color: #383838;
        line-height: 1.4;
    }
/* ====================================================== */

.login-Section {
    width: 70%;
    z-index: 1;
}

.wrap-input100 {
    position: relative;
    border-bottom: 2px solid #d6d6d6;
    width: 100%;
    margin: 32px 0px;
}

.input100 {
    display: flex;
    color: #555;
    line-height: normal;
    width: 100%;
    padding: 0px 8px;
    font-size: 20px;
    outline: 0;
    border: none;
    margin: 0;
    background: transparent;
    letter-spacing: 3px;
}

.input100 {
    background-color: #0000 !important;
}

    .input100:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    }

.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

    .focus-input100::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -moz-transition: all .4s;
        transition: all .4s;
        background: var(--color)
    }

    .focus-input100::after {
        font-size: 20px;
        color: #999;
        line-height: 1;
        content: attr(data-placeholder);
        display: flex;
        width: 100%;
        position: absolute;
        top: 6px;
        left: 0;
        padding-left: 5px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -moz-transition: all .4s;
        transition: all .4s;
    }

.input100:focus + .focus-input100::after {
    top: -10px;
    font-size: 14px;
    color: var(--color);
}

.input100:focus + .focus-input100::before {
    width: 100%
}

#msgdis {
    margin-bottom: 10px;
    font-size: 14px;
    color: red;
    display: block;
    position: absolute;
    left: 15px;
    right: 15px;
    margin: 0px 0px 0px;
}

.has-val.input100 + .focus-input100::after {
    top: -10px;
    font-size: 14px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%
}


#btnSubmit {
    position: absolute;
    visibility: hidden;
}
/*############################## CAPTCHA ##############################*/
.captchaSection {
    display: block;
    position: relative;
    text-align: center;
}

    .captchaSection .cptchaImg {
        background-color: transparent !important;
    }

    .captchaSection .refreshCaptcha {
        position: absolute;
        top: 6px;
        right: 15px;
        outline: none;
    }
/*############################## FORGET PASSWORD ##############################*/

.eyeIconShow {
    position: absolute;
    top: 4px;
    right: 20px;
}

.frgetPass {
    color: #969696;
    font-size: 12px;
    position: absolute;
    bottom: -26px;
    right: 0;
    cursor: pointer;
    text-transform: capitalize;
    border-bottom: 1px dashed #fff;
    line-height: 1;
    transition: 0s
}

    .frgetPass:active, .frgetPass:hover {
        color: #969696;
        border-bottom: 1px dashed #696969;
        text-decoration: none
    }
/*############################## MODALS ##############################*/
.modal-content {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

.modal-header .close {
    padding: 1rem 1rem;
    font-size: 36px;
    margin: -1rem -.5rem -1rem auto
}

    .modal-header .close:hover {
        color: red
    }

.modal-header {
    padding: .75rem 1rem
}

.mainBgBody {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-self: center;
    flex-direction: column;
    font-family: 'Hind', sans-serif;
    padding: 30px 10px;
}

.frgtHeading {
    padding: 12px 5px 8px;
    border-bottom: 1px solid grey;
    width: 100%;
    font-size: 20px;
    margin: 2px 15px;
    font-family: 'Hind', sans-serif;
    font-weight: 600;
}

.rmmbrPs {
    text-align: center;
    font-size: 15px;
    font-family: 'Hind', sans-serif;
}

    .rmmbrPs a {
        font-size: 16px;
        font-family: 'Hind', sans-serif;
        color: #0156ed;
        font-weight: 600;
    }

.wraping .text-muted {
    text-decoration: none;
}

.signFrm {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

    .signFrm label {
        margin-bottom: 0.1rem;
    }


.SUsubmitBtn {
    text-align: center;
}

.frgtHeading button {
    position: relative;
    top: 5px;
    outline: none;
}

    .frgtHeading button span {
        font-size: 30px;
        color: #5d5d5d;
    }
/*############################*/
.loginBTN {
    display: block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 0px 3px var(--color);
    border: 2px solid #fff;
    color: var(--color) !important;
    border-radius: 40px;
    font-size: 22px;
    width: 80%;
    margin: auto;
    font-weight: 600;
    padding: 8px 40px;
    overflow: hidden;
    outline: none;
    background: #f9d7a5;
}

    .loginBTN:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color);
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        border-radius: 60px;
    }

    .loginBTN:hover, .loginBTN:focus, .loginBTN:active {
        color: #ffffff !important;
        border: 2px solid #fff;
        border: 2px solid #fff;
        box-shadow: 0px 0px 0px 3px var(--color);
    }

        .loginBTN:hover:before, .loginBTN:focus:before, .loginBTN:active:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
        }

/*#################################*/
.SgnUpBTN {
    font-family: poppins;
    font-size: 13px;
    margin-bottom: 5px;
}

    .SgnUpBTN a {
        text-decoration: none !important;
        font-weight: 600;
        padding: 0px 5px;
    }

.carousel-indicators {
    right: 33%;
}

    .carousel-indicators li {
        height: 4px;
    }

.downloadApp {
    position: relative;
    display: inline-block;
}

    .downloadApp img {
        width: 65%;
    }


.carousel-control-next {
    right: -35px;
    top: -100px;
    z-index: 3;
}

.carousel-control-prev {
    left: -35px;
    top: -100px;
    z-index: 3;
}
/*##########################################################################################################################*/
/*####################################################### RESPONSIVE #######################################################*/
/*##########################################################################################################################*/
@media (max-width: 575px) {
    body {
        height: 100%;
        min-height: 100vh;
        width: 100vw;
        padding: 0px;
    }

    .shutter .flexing-1, .shutter .flexing-2 {
        padding: 40px 30px;
        width: 90%;
    }

    .slider-body {
        padding: 5px 15px;
        text-align: justify;
    }

    #adminrow2.login-Section {
        width: 70%;
    }

    .login-Section {
        width: 100%;
    }

    .shutter {
        flex-direction: column;
        background: #fff;
    }

    .SgnUpBTN {
        position: relative;
        left: auto;
        transform: translate(0);
        right: auto;
    }

    .carousel-indicators {
        display: none;
    }

    .SUsubmitBtn a {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .SUsubmitBtn label {
        display: none;
    }

    .downloadApp, .carousel-control-prev, .carousel-control-next {
        display: none;
    }

    #usp {
        display: none;
    }
}
