* {
  margin: 0;
  padding: 0;
  font-family:'Sofia-Pro-Regular-Az'
}

@font-face {
  font-family: 'Sofia-Pro-Regular-Az';
  src:url('../../logincss/font/Sofia-Pro-Regular-Az.woff') format('woff'),
        url('../../logincss/font/Sofia-Pro-Regular-Az.woff2') format('woff2'),
        url('../../logincss/font/Sofia-Pro-Regular-Az.eot'),
        url('../../logincssfont/Sofia-Pro-Regular-Az.eot?#iefix') format('embedded-opentype'),
        url('../../logincssfont/Sofia-Pro-Regular-Az.otf') format('truetype');

  font-weight: normal;
  font-style: normal;
  font-display: swap;
}






.pdleft0 {
    padding-left: 0px;
}


/* .heightfull{height:100vh; position: relative;} */

.pd40 {
    padding-bottom: 0px;
    padding-left: 35px;
    padding-right: 35px;
}

.ncb {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.logo {
    width: 150px;
}

nav ul {
    flex: 1;
    text-align: right;
}

    nav ul li {
        display: inline-block;
        list-style: none;
        margin: 0 15px;
    }

a {
    text-decoration: none;
    color: #111;
}

    a:hover {
        color: #606060;
        text-decoration: none;
    }

nav .btn:hover {
    background: #fff;
    color: #4d19db;
    font-weight: 500;
    transition: 0.1s;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-1 {
    flex-basis: 40%;
    min-width: 350px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.col-2 {
    flex-basis: 55%;
    min-width: 300px;
    margin-bottom: 30px;
}

.col-1 img {
    width: 100%;
}

.col-2 h1 {
    font-size: 62px;
    font-weight: 600;
}

span {
    color: #2a9ec1;
}

.col-2 p {
    margin: 10px 0 50px;
    max-width: 580px;
}

.col-2 .btn {
    margin-left: 0;
    margin-right: 30px;
    background: #fff;
    color: #4d19db;
    font-weight: 500;
}

    .col-2 .btn:hover {
        background: rgb(230, 234, 236);
        transition: 0.2s;
    }

.elements {
    position: absolute;
    left: 0;
    top: 0;
    animation: move 2.5s linear infinite;
}

.d-flex.w-100.order-0.centertext {
    align-items: center;
    justify-content: center;
}

section.aboutus h2 {
    width: 100%;
}

section.aboutus p {
    margin-top: 0;
    margin-bottom: 4px;
}


@keyframes move {
    0% {
        transform: translate(-15px, 0px);
    }

    50% {
        transform: translate(0px, -15px);
    }

    100% {
        transform: translate(-15px, 0px);
    }
}

.triangle1 {
    position: absolute;
    left: 50%;
    top: -180px;
    transform: translate(-50%);
    width: 400px;
    z-index: -1;
    opacity: 0.7;
}

.triangle2 {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    z-index: -1;
    opacity: 0.7;
}

.circle {
    position: absolute;
    right: -180px;
    bottom: -300px;
    width: 500px;
    z-index: -1;
    opacity: 0.5;
}

nav.navbar.sticky-top.navbar-expand-lg.navbar-light.bg-light {
    padding-left: 35px;
    padding-right: 35px;
    box-shadow: 0px 0px 3px #dad5d5;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.7rem;
    line-height: inherit;
    white-space: nowrap;
}
/*Card Design*/

.card {
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    padding: 1em 0;
    background: #FFF;
    box-shadow: 0 0 6px 0 rgb(32 32 36 / 12%);
    /* transition: all 0.35s ease; */
    min-height: 100px;
    text-align: center;
    margin-top: 35px;
}

.row.customtext p {
    text-align: center;
    width: 100%;
}

.row.customtext {
    width: 100%;
    text-align: center;
}
/* .card::before, .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #3767e3;
    height: 2px;
}
.card::before {
  width: 0;
  opacity: 0;
  transition: opacity 0 ease, width 0 ease;
  transition-delay: 0.5s;
}
.card::after {
  width: 100%;
  background: white;
  transition: width 0.5s ease;
} */
.card:hover {
    background: #0642B6;
    color: #fff;
    font-weight: bold;
    transition: all 1s ease;
}

.card .logo {
    margin: 0 0 0em;
    width: 14.625em;
    transition: all 0.35s ease;
}

.card h6 {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.card .hover_content {
    overflow: hidden;
    max-height: 0;
    transform: translateY(1em);
    transition: all 0.55s ease;
}

    .card .hover_content p {
        color: #6E6E70;
        line-height: 1.4em;
    }

.card:hover {
    box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}

    .card:hover::before {
        width: 100%;
        opacity: 1;
        transition: opacity 0.5s ease, width 0.5s ease;
        transition-delay: 0;
    }

    .card:hover::after {
        width: 0;
        opacity: 0;
        transition: width 0 ease;
    }

.aboutus {
    background-color: #fff;
    padding: 70px 30px;
}

footer img {
    padding: 0px !important;
}

select.browser-default.custom-select {
    min-height: 60px;
    max-width: 70%;
    box-shadow: 0px 0px 3px #0003;
}

.customselect {
    display: flex;
    align-items: center;
    justify-content: center;
}

.animate-charcter {
    background-image: linear-gradient( -225deg, #f9961e 0%, #f9961e 29%, #008e3c 67%, #008e3c 100% );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 35px;
    font-weight: bold;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.mainformlogin {
    width: 100%;
}


.dropbtn {
    background-color: #fff;
    color: #111;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 6px 3px #0000002b;
    border-radius: 15px;
}

    .dropbtn:hover, .dropbtn:focus {
        background-color: #fff;
    }

#myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

    #myInput:focus {
        outline: 3px solid #ddd;
    }

.dropdown {
    /* position: relative; */
    /* display: inline-block; */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 100%;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    max-height: 245px;
    top: 61px;
    border-radius: 15px;
    overflow: hidden;
}

    .dropdown-content:hover {
        overflow-y: auto;
    }


        .dropdown-content:hover::-webkit-scrollbar {
            width: 0.2em;
            border-radius: 15px;
        }

        .dropdown-content:hover::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 2px rgba(107, 107, 107, 0.3);
            border-radius: 15px;
        }

        .dropdown-content:hover::-webkit-scrollbar-thumb {
            background-color: darkgrey;
            outline: 0px solid rgb(175, 175, 175);
            border-radius: 15px;
        }



    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

.backgroundbanner {
    background: url(../image/background.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0px 0px;
}



.container1 {
    width: 400px;
    background-color: #ffffff7d;
    margin: 25px auto;
    border-radius: 11px;
    padding: 40px 50px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}
/* top-header */
.top-header h3 {
    text-align: center;
    color: #000;
}

.top-header p {
    color: #000;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.user {
    margin-bottom: 11px;
}
    /* top-header */
    /* form */
    .user input,
    .pass input,
    .user select {
        width: 100%;
        height: 35px;
        border: none;
        border: 1px solid #e6e6e6;
        border-radius: 6px;
        outline: none;
        padding: 0 15px;
    }

::placeholder {
    color: #9ca5b4;
    font-size: 12px;
}

.user i,
.pass i {
    position: relative;
    top: 31px;
    right: -10px;
    color: #3981ed;
}
/* form */
/* button */
.btn {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
    padding: 0px;
}

    .btn button {
        width: 100%;
        border: none;
        height: 35px;
        background-color: #277ffd;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
    }
/* button */
p.last {
    text-align: center;
    position: relative;
    bottom: -10px;
    font-size: 12px;
}

span.getotptext {
    font-size: 0.8rem;
    margin: 15px 15px;
    cursor: pointer;
}

.buttongroup button {
    border: none;
    height: 35px;
    background-color: #277ffd;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    width: 48%;
}

button.backbtn {
    background: transparent;
    color: #111;
    border: 2px solid #277ffd;
}

.catchasec {
    width: 100%;
    float: left;
    display: flex;
    margin: 15px 0px;
    align-items: center;
    justify-content: space-between;
}

label {
    display: block;
    position: relative;
    /* top: 1.2rem; */
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: top .3s ease, color .3s ease;
}

#verifyNum {
    background-image: url(../image/captcha.png);
    padding: 5px 10px;
    color: #fff;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 115px;
    border-radius: 6px;
}

label.captchatext {
    padding-top: 6px;
    padding-left: 15px;
}

span.refreshicon {
    padding-top: 3px;
    cursor: pointer;
}

span#capt {
    color: #fff;
}


#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media screen and (max-width: 600px) {
    .animate-charcter {
        font-size: 28px;
        display: block;
        text-align: center;
    }

    .container1 {
        width: 100%;
        background-color: #ffffff7d;
        margin: 25px auto;
        border-radius: 11px;
        padding: 40px 50px;
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    }

    .aboutus {
        background-color: #fff;
        padding: 70px 15px;
        text-align: justify;
    }

    footer img {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
}

/*Loder*/
.se-pre-con {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

    .se-pre-con h3 {
        position: fixed;
        color: #0b1c2a;
        font-size: 24px;
    }

.loader {
    width: 8em;
    height: 8em;
    font-size: 22px;
    box-sizing: border-box;
    border-top: 0.3em solid #008900;
    border-radius: 50%;
    position: relative;
    animation: rotating 2s ease-in-out infinite;
    --direction: 1;
}

    .loader span {
        position: absolute;
        color: #FF5E31;
        width: inherit;
        height: inherit;
        text-align: center;
        line-height: 10em;
        font-family: sans-serif;
        animation: rotating 2s linear infinite;
    }

    .loader::before,
    .loader::after {
        content: '';
        position: absolute;
        width: inherit;
        height: inherit;
        border-radius: 50%;
        box-sizing: border-box;
        top: -0.2em;
    }

    .loader:::before {
        border-top: 0.3em solid dodgerblue;
        transform: rotate(120deg);
    }

    .loader::after {
        border-top: 0.3em solid #ff5e31;
        transform: rotate(240deg);
    }

@keyframes rotating {
    50% {
        transform: rotate(calc(180deg));
    }

    100% {
        transform: rotate(calc(360deg));
    }
}
/*Loder*/
@media screen and (max-width: 600px) {
  .animate-charcter {
    font-size: 28px;
    display: block;
    text-align: center;
}

  .container1 {
    width: 100%;
    background-color: #ffffff7d;
    margin: 25px auto;
    border-radius: 11px;
    padding: 40px 50px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}
.aboutus {
  background-color: #fff;
  padding: 70px 15px;
  text-align: justify;
}
footer img {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
}

.forgotbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px 0px;
}

    .forgotbtn button {
        border: none;
        height: 35px;
        background-color: #277ffd;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
        width: 40%;
    }
    .forgotbtn .backbtn {
        border: none;
        height: 35px;
        border: 2px solid #277ffd;
        color: #111;
        border-radius: 6px;
        cursor: pointer;
        width: 40%;
        text-align: center;
        line-height: 31px;
    }