@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
     font-family: 'Poppins', sans-serif;
    display: table;
    height: 100vh;
    margin: 0 auto;
}



/* login form */
.input-container {
    position: relative;
    width: 100%;
}

.styled_input_bar {
    width: 100%;
    padding: 0.9em 1.6em;
    padding-left: 3.1em;
    font-size: 14px;
    border: 0.1em solid #d1cbcb;
    border-radius: 2em;
    background-color: transparent;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
    .styled_input_bar::placeholder {
        color: #d1cbcb;
        transition: all 0.3s ease;
    }

    .styled_input_bar:focus {
        border-color: white;
    }

        .styled_input_bar:focus::placeholder {
            color: transparent;
        }

.input-label {
    position: absolute;
    left: 3.1em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #f7f7f7;
    pointer-events: none;
    transition: all 0.3s ease;
}

.styled_input_bar:focus + .input-label,
.styled_input_bar:not(:placeholder-shown) + .input-label {
    top: 0.1em;
    left: 2em;
    font-size: 0.7em;
    color: white;
    background-color: rgb(173 97 39); /* IMPORTANT: Make sure you change this background color to the exact background color of your webpage or the background color of the container in which this input bar is contained. */
    padding: 0 0.5em;
    border-radius:100px;
}

.styled_input_bar:not(:focus):not(:placeholder-shown) + .input-label {
    color: #fff;
}
 
/* login button*/

.animated-button {
    position: relative;
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 5px 35px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    color: #66392b;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .animated-button svg {
        position: absolute;
        width: 18px;
        fill: #66392b;
        z-index: 9;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .arr-1 {
        right: 37%;
    }
    .animated-button .arr-2 {
        left: -25%;
    }

    .animated-button .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: rgb(173 97 39 / 13%);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button:hover { 
        color: #212121;
    }

        .animated-button:hover .arr-1 {
            right: -25%;
        }

        .animated-button:hover .arr-2 {
            left: 33%;
        }

        .animated-button:hover .text {
            transform: translateX(0px);
        }
        .animated-button:hover svg {
            fill: #66392b;
        }

    .animated-button:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px greenyellow;
    }

    .animated-button:hover .circle {
        width: 100%;
        height: 220px;
        opacity: 1;
        border-radius: 100px;
    }
.text-validation {
    position: absolute;
    right: 0px;
    color: #ffa6a6;
    margin-top: 50px;
    height: 18px;
    font-size: 13px;
    padding: 0px 10px;
    line-height: normal;
    border-radius: 8px;
}

.alert-login {
    position: absolute;
    right: 0px;
    top: -106px;
    text-align: left;
    left: 0px;
    color: #f90000;
    font-size: 14px;
    padding: 6px 10px;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #f8d7da;
}
.alert-login-success {
    position: absolute;
    right: 0px;
    top: -106px;
    text-align: left;
    left: 0px;
    color: #f90000;
    font-size: 14px;
    padding: 6px 10px;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #f8d7da;
}
.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 12px;
    font-size: 10px;
}

.hideshow {
    position: absolute;
    right: 10px;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    top: 0px;
    bottom: 0px;
}
.hideshow { 
    color: #fff; 
}


/* login css */
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #ee751c;
}


.signin-form {
    padding: 4rem 3rem;
    background-color: rgb(173 97 39);
    border-radius: 20px;
}

.login-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px;
    padding-left: 8px;
}

.copyright-login {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    margin-top: 20px;
    color: #fff;
    position: relative;
    text-shadow: 0px 0px 14px #000;
}

.copyright-login a {
    color: #ffffff;
    text-decoration: none;
}

.login-wrap {
    padding-top: 0vh;
    margin: 0 auto;
    width: 90%;
}

.login-icon-img {
    height: 130px;
    padding: 0px;
}

.login-logo>a {
    display: flex;
    margin-bottom: 1rem;
    justify-content: start;
    text-align: left;
    height: 70px;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.login-logo>a span {
    color: #000;
    margin-left: 5px;
}
.login-logo>a span b {
    color: #000;
    font-weight: 500;
    display: block;
        font-size: 16px;
}
.login-logo>a img {
    height: 80px;
}

.login-logo p {
    color: #121212;
    font-size: 13px;
    padding: 0rem 0rem;
    font-weight: 400;
    line-height: 22px;
}

.login-inner-con {
    padding-right: 1rem;
}

.login-inner-con small {
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    color: #ffffff;
    font-weight: 300;
    line-height: 20px;
}

.login-content {
    background: #FFF8F4 url(../images/login-bg-inner.png);
    background-repeat: repeat-x;
    background-position: bottom left;
    padding: 50px 50px 50px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}



.login-data {
    text-align: center;
    display: block;
    margin: auto;
    width: 690px;
}

.login-data img {
    width: 100%;
}

.login-data p {
    color: #fff;
    font-size: 15px;
    padding: 0rem 4rem;
    text-align: left;
    line-height: normal;
    margin-top: -1rem;
}

.pos-bot {
    position: relative;
    top: 0;
    right: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.input-group-text {
    background-color: #ad6127;
    border: 0;
    position: absolute;
    color: #ffffff;
    top: 13px;
    left: 10px;
    width: 24px;
    height: 24px;
    padding: 0px;
    border-radius: 100px;
    text-align: center;
    justify-content: center;
}
ul.list-unstyled li {
    width: 32%;
    background-color: #3D3936;
    float: left;
    border-radius: 5px;
    padding: 12px;
}

ul.list-unstyled li a {
    display: flex;
    text-align: left;
    color: #000000;
    padding: 0px 5px;
    line-height: normal;
    text-decoration: none;
    align-items: center;
}
ul.list-unstyled li a span {
    display: block;
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 5px;
}
.login-fancy h3 {
    font-size: 25px;
    font-weight: 700;
}

ul.list-unstyled li a aside {
    border-radius: 100px;
    display: flex;
    transition: linear 0.2s;
    align-items: center;
    justify-content: start;
}
 

ul.list-unstyled li a aside img {
    height: 30px;
    width: auto;
}

 

ul.list-unstyled li a:hover aside {
    transform: scale(1.11);
}



.resend {
    position: absolute;
    right: 0;
}

.sign-up-btn {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin: 0px;
    padding: 20px 0px;
    color: #fff;
}

.sign-up-btn a {
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 13px;
}
.list-inline-item:not(:last-child){
    margin: 0;
}
.login-sec {
    background: url(../images/login-bg.jpg) no-repeat center center;
    background-size: cover;
    height: 102%;
    width: 101%;
    position: fixed;
    left: 0px;
    animation: animateBackground infinite ease-in-out 55s;
    -webkit-animation: animateBackground infinite ease-in-out 55s;
}
@-keyframes animateBackground {
    0% {
        background-size: 100% auto;
    }

    50% {
        background-size: 150% auto;
    }

    100% {
        background-size: 100% auto;
    }
}

@-webkit-keyframes animateBackground {
    0% {
        background-size: 100% auto;
    }

    50% {
        background-size: 150% auto;
    }

    100% {
        background-size: 100% auto;
    }
}


.wind {
    position: absolute;
    left: -100%;
    display: block;
    width: 3000px;
    height: 800px;
    background-image: url('https://femmebot.github.io/google-type/assets/images/wind.png');
    animation-name: moveleft;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 100;
}

@keyframes moveleft {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


.login-sec2 {
    display: table-cell;
    vertical-align: middle;
}

form#login_form {
    margin-bottom: 45px;
}

.loginrounded-btn {
    width: 100%;
    border-radius: 5px;
    margin-top: 0px;
    padding: 12px;
    background-color: #2C2C2C;
    border-color: #2C2C2C;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.loginrounded-btn:hover {
    background-color: #000;
    border-color: #000;
}



.popup-content {
    padding: 0px 0px;
    line-height: 1.5;
    height: 100vh
}

.cnt223 a {
    text-decoration: none;
}

.popup-onload {
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.cnt223 {
    min-width: 100%;
    width: 100%;
    min-height: 100vh;
    margin: 0px auto;
    position: relative;
    z-index: 999999999;
    padding: 15px 35px;
    border-radius: 0px;
    box-shadow: 0 2px 5px #000;
}

.cnt223 p {
    clear: both;
    color: #555555;
    /* text-align: justify; */
    font-size: 20px;
    font-family: sans-serif;
}

.cnt223 p a {
    color: #d91900;
    font-weight: bold;
}

.cnt223 .x {
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
}

.cnt223 .x:hover {
    cursor: pointer;
}

.cloud {
    animation: drift 25s linear infinite;
}

@keyframes drift {
    from {
        transform: translateX(-555px);
    }

    to {
        transform: translatex(1900px);
    }
}

.popup-onload .hero .carousel {
    min-height: 100vh;
    background: rgb(255, 225, 199);
    background: linear-gradient(340deg, rgba(255, 225, 199, 1) 0%, rgba(255, 251, 248, 1) 100%);
}

.popup-onload .carousel-caption-text h4 {
    width: max-content;
    font-size: 35px;
    margin-bottom: 2rem;
    color: #f68723;
    background-color: #fff;
    padding: 12px 35px;
    border-radius: 20px 20px 20px 0px;
}

.popup-onload .carousel-caption-text h1 {
    font-size: 5.7rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 100px;
}

.popup-onload .carousel-caption-text p {
    font-size: 5.2rem;
    line-height: 100px;
    font-weight: 700;
    -webkit-text-stroke: 2px #fff;
    color: transparent !important;
    display: block;
    white-space: nowrap;
}

.skipIntro {
    position: absolute;
    font-size: 22px;
    border: 1px solid #24b720;
    background: #24b720;
    color: #fff;
    padding: 10px 20px;
    right: 2vw;
    bottom: 2vw;
    z-index: 9999;
    font-weight: 700;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.3s;
}

.skipIntro:hover {
    background: #fc6a06;
    border: 1px solid #fc6a06;
}

.skipIntro img {
    width: 25px;
}

#hero-carousel1 .carousel-item {
    transition-duration: 2s;
}

.carousel-caption {
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding-top: 8vw;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 100%;
    top: 0px;
}

.left-img {
    position: absolute;
    bottom: 0px;
    height: 77vh;
    left: 0px;
}

.right-img {
    position: absolute;
    bottom: 0vw;
    height: 63vh;
    right: 0px;
}

.logo-grid {
    padding: 0% 5%;
}

.logo-left {
    margin-bottom: 2.5vw;
}

.logo-left>img {
    height: auto;
    width: 40vw;
}



.logo-right>img {
    height: 6rem;
}

.main-data {
    width: 42vw;
    margin: auto;
    text-align: center;
}

.main-data h1 {
    font-family: "Poppins", sans-serif;
    font-size: 3.2vw;
    font-weight: 800;
    color: transparent;
    /* text-shadow: 2px 1px 0px #bd3e2b; */
    margin-bottom: 0vw;
    /* text-shadow: 0 1px 0 #bd3e2b, 0 2px 0 #bd3e2b, 0 3px 0 #bd3e2b, 0 4px 0 #4a0a00, 0 5px 0 rgb(50 41 40 / 0%), 0 6px 1px rgb(0 0 0 / 0%), 0 1px 3px rgb(108 0 0 / 0%), 0 3px 5px rgb(110 19 19 / 0%), 0 5px 10px rgb(108 0 0 / 0%), 0 10px 10px rgb(137 0 0 / 0%), 0 20px 20px rgb(0 0 0 / 0%); */
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url(assets/images/india-flag.jpg);
    animation: gradientAnimation 10s linear infinite;
    animation-direction: alternate;
    background-size: 70%;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0;
    }

    to {
        background-position: 100%;
    }
}

.track-img {
    position: absolute;
    left: 0px;
    right: -20vw;
    margin: auto;
    height: 10vw;
    bottom: 1vw;
}

.pin-img {
    position: absolute;
    left: 0px;
    right: -20vw;
    margin: auto;
    bottom: 11vw;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.pin-img img {
    height: 4vw;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.main-data>img {
    height: 4vw;
    position: relative;
    top: -10px;
    left: -40px;
}

.main-data h2 {
    font-family: "Poppins", sans-serif;
    font-size: 0.9vw;
    font-weight: 600;
    color: #000000;
    padding: 2vw 0.5vw;
    padding-top: 1vw;
    line-height: 1.6vw;
}

ol.gradient-list {
    counter-reset: gradient-counter;
    list-style: none;
    margin: 1.75rem 0;
    padding-left: 0px;
    width: 70%;
    display: block;
    margin: auto;
    padding-top: 10%;
    text-align: left;
}

ol.gradient-list>li {
    counter-increment: gradient-counter;
    margin: 0px;
    padding: 0px 10px;
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding-left: 3.5rem;
    border-bottom: 2px solid #ffc49b;
    margin-bottom: 1rem;
    padding-bottom: 5px;
    align-items: center;
    color: #000;
    display: flex;
    justify-content: left;
    height: 70px;
    line-height: normal;
}

ol.gradient-list>li::before,
ol.gradient-list>li::after {
    background: linear-gradient(135deg, #ffa669 0%, #fc6a06 100%);
    border-radius: 100px 100px 0px 0px;
    content: "";
    height: 68px;
    left: -3rem;
    overflow: hidden;
    position: absolute;
    width: 80px;
    bottom: -2px;
}

ol.gradient-list>li::before {
    align-items: center;
    content: counter(gradient-counter);
    color: #000;
    display: flex;
    justify-content: center;
    padding: 0.125em 0.25em;
    z-index: 1;
    font-weight: 700;
    font-size: 28px;
}

.screen-3bg {
    background-image: url('../img/screen-3-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 560px;
    background-position: center;
    position: absolute;
    top: 20%;
    width: 100%;
}





.map-locations-fx {
    position: absolute;
    margin: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 25vh;
}

.map-locations-fx span {
    position: absolute;
    width: 4px;
    height: 4px;
    padding: 4px;
    display: block;
    background-color: #dd2423;
    border-radius: 50%;
    opacity: 0.2;
}

.map-locations-fx span:after,
.map-locations-fx span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #f00;
    border-radius: 50%;
    animation-name: circleLocation;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.map-locations-fx span:before {
    animation-delay: 1s;
}

.map-locations-fx span:nth-child(even):before {
    animation-delay: 0.5s;
}

@keyframes circleLocation {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(4);
        opacity: 0;
    }
}

.bgscreen {
    height: 100%;
    width: 100%;
}
.login-form {
    position: relative;
}


@media screen and (max-width: 1024px) {


    .popup-content {}

    .bgscreen {
        height: 100vh;
    }

    .map-locations-fx {
        display: none;
    }

    .left-img {
        height: 180px;
        left: -10px;
    }

    .right-img {
        height: 130px;
        right: 0px;
    }

    .bgscreen {
        object-fit: cover;
    }

    .track-img {
        height: 90px;
        bottom: 0vw;
        right: -50px;
    }

    .popup-onload {
        height: 100vh;
    }

    .logo-left>img {
        width: 300px;
    }

    .main-data {
        width: 80%;
        margin-top: 1.5rem;
    }

    .main-data h1 {
        font-size: 40px;
        margin-top: 3rem;
    }

    .main-data h2 {
        font-size: 13px;
        padding: 0px;
        padding-top: 1rem;
        line-height: 24px;
    }

    .pin-img img {
        height: 40px;
    }

    .pin-img {
        left: 40px;
        right: 0px;
        margin: auto;
        bottom: 90px;
    }

    .skipIntro {
        padding: 3px 10px;
        right: 10px;
        bottom: 8px;
        font-weight: 600;
        border-radius: 3px;
        font-size: 10px;
    }

    .login-sec {
        background-size: cover !important;
    }

    .login-logo>a {
        width: 100%;
    }

    .login-wrap {
        width: 100%;
    }

    .login-content {
        padding: 20px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-size: cover;
        background-position: top right;
    }

    .pos-bot {
        display: none;
    }

    .login-logo p {
        display: none;
    }

    .signin-form {
        padding: 15px;
        min-height: auto;
        border-radius: 10px;
    }

    .login-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 0px;
        text-align: center;
    }
  
    .login-form .form-control,
    .input-group-text {
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 5px;
        height: 35px;
    }

    .sign-up-btn {
        font-size: 12px;
        padding: 10px 0px;
    }

    .loginrounded-btn {
        padding: 8px;
        font-size: 12px;
    }

    .login-logo>a img {
        width: 200px;
    }

    .copyright-login {
        font-size: 10px;
        padding: 0px 20px;
        margin-top: 16px;
    }
}