/* Scrollbar CSS */
::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border: 1px solid #cccccc;
}

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: #cccccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #b4b4b4;
}

/* LOGIN CSS START */
#LOGIN .login_content .inner-box {
    height: 100vh;
}

#LOGIN .login_content .image_block img {
    max-width: 90%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#LOGIN .login_content .image_block {
    height: 100%;
    background: linear-gradient(163deg, #020024 0%, #122d4f 23%, #204470 65%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.login-box {
    max-width: 95%;
    padding: 20px 40px;
    margin: 20px auto;
    background: linear-gradient(163deg, #020024 0%, #122d4f 23%, #204470 65%);
    box-sizing: border-box;
    box-shadow: 0 15px 25px #00000099;
    border-radius: 10px;
}

@media screen and (max-width: 767.5px) {
    .login-box {
        margin-bottom: 70px;
    }
}

.login-box p:first-child {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.login-box .user-box select {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.login-box .user-box select option{
    background: #00000088;
    color: #fff;
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label {
    top: -20px;
    left: 0;
    color: #fff;
    font-size: 12px;
}

.login-box .user-box select:focus~label,
.login-box .user-box select:valid~label {
    top: -20px;
    left: 0;
    color: #fff;
    font-size: 12px;
}

.login-box form .login_btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 20px;
    letter-spacing: 3px;
    background: transparent;
    border: none;
}

.login-box .login_btn:hover {
    background: #fff;
    color: #272727;
    border-radius: 5px;
}

.login-box .login_btn span {
    position: absolute;
    display: block;
}

.login-box .login_btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: btn-anim1 1.5s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.login-box .login_btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: btn-anim2 1.5s linear infinite;
    animation-delay: .375s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.login-box .login_btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: btn-anim3 1.5s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.login-box .login_btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: btn-anim4 1.5s linear infinite;
    animation-delay: 1.125s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.login-box p:last-child {
    color: #aaa;
    font-size: 14px;
}

.login-box a.a2 {
    color: #fff;
    text-decoration: none;
}

.login-box a.a2:hover {
    background: transparent;
    color: #aaa;
    border-radius: 5px;
}

@media screen and (max-width: 767.5px) {
    .image_block{
        display: none;
    }
}
/* LOGIN CSS END */


/* NAVBAR CSS START*/
#main_navbar {
    /* position: sticky;
    top: 0; */
    z-index: 10;
    transition: all 0.5s;
    padding: 0;
}

.navbar-scrolled{
    background: white;
}

.navbar .navbar-brand img{
    max-width: 70px;
}

.navbar .nav-item .nav-link {
    position: relative;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 500;
    color: black;
    transition: all 0.5s;
}

.navbar-scrolled .nav-item .nav-link {
    color: black;
}

.nav-item .nav-link:before,
.nav-item .nav-link:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background-color: #0097f9;
    transition: 0.5s;
}

.nav-item .nav-link:after {
    left: 0;
    bottom: 5px;
}

.nav-item .nav-link:before {
    right: 0;
    top: 5px;
}

.nav-item .nav-link:hover {
    color: #0097f9;
}

.nav-item .nav-link:hover:after,
.nav-item .nav-link:hover:before {
    width: 100%;
}

.navbar .nav-item .active {
    color: #0097f9 !important;
}

/* login btn start */
.button {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #122d4f;
    transition: all 0.2s ease;
}

.button:active {
    transform: scale(0.96);
}

.button:before,
.button:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}

.button:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #122d4f 20%, transparent 30%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #122d4f 15%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.button:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #122d4f 15%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%),
        radial-gradient(circle, #122d4f 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/* login btn end */

@media screen and (max-width: 990px) {
    .nav-item .nav-link {
        text-align: center;
        font-size: larger;
    }
    .button{
        display: block;
        margin: auto;
    }
}
/* NAVBAR CSS END*/

/* MOBILE NAVIGATION CSS START */

.navigation {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
}

.navigation ul {
    display: flex;
    width: 100vw;
}

.navigation ul li {
    list-style-type: none;
    position: relative;
    width: calc(100%/5);
    height: 60px;
    z-index: 2;
}

.navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 65px;
    font-size: 1.5rem;
    transition: 0.5s;
    color: #222327;
}

.navigation ul li.active a .icon {
    transform: translateY(-12px);
    color: #122d4f;
}

.navigation ul li a .text {
    position: absolute;
    background: #122d4f;
    color: white;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(15px);
}

.navigation ul li.active a .text {
    opacity: 1;
}

@media screen and (max-width: 767.5px) {
    .navigation {
        display: flex;
    }
    #main_navbar{
        display: none;
    }
    .footer{
        margin-bottom: 50px;
    }
}

/* MOBILE NAVIGATION CSS END */