*{
    margin:0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


/* :root{
    --maincolor:
} */

/* Top row section start */
.top_row {
    background-color: #00203FFF;
    min-height: 45px;
    /* border: 5px solid #00203FFF; */
}

.cut_row {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    background-color: white;
}

.vertical-center {
    transform: translateY(6px);

}

.alink {
    text-decoration: none;
    color: white;
}

.alink:hover {
    text-decoration: underline;
    color: #00a4cc;
}

/* Top row section end */


/* Main row section start */

.tcolor {
    color: #00203FFF;
}

#erplogin:hover {
    color: #00a4cc;
    text-decoration: underline;
    background-color: #00203FFF;
    text-shadow: 1px 1px 2px black;
}



/* Main row section end */


/* Nav section start */
.bcolor {
    color: white;
    background-color: #00203FFF;
}

.tshadow {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.345);
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}



/* hover dropdown navbar */
@media all and (min-width: 10rem) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        animation-duration: 0.5s;
        animation-fill-mode: both;
        animation-name: slideIn;

    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
        font-size: large;
        min-height: 1rem;
        width: 17rem;
        color: white !important;
        background-color: transparent;
        background-color: rgba(0, 31, 63, 0.8);
        border-radius: 0px;

    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

.dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    color: #00a4cc ;
    text-shadow: 1px 1px 2px black;
    background-color: rgba(0, 31, 63, 0.8);
}

.nav-link:hover {
    color: #00a4cc;
    text-shadow: 1px 1px 2px black;
    /* background-color: rgb(73, 76, 247) !important; */
}

@keyframes slideIn {
    from {
        top: 100px;
    }

    to {
        top: 50px;
    }
}



/* Nav section end */