@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

* {
    transition: .15s ease-in-out;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

ul {
    padding-left: 20px !important;
}

/* Custom Scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 3px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #888;
    /* Color of the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color when hovered */
}

.custom-container {
    margin: 0 5%;
}


.bg-white {
    background-color: #FFFFFF;
}

.bg-light {
    background-color: #F9ECF0;
}

/* button */
.cust-button-1 {
    color: rgba(255, 255, 255, 1);
    background: #154E7C;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    padding: 10px 50px;
    border: #154E7C 1px solid;
    display: block;
    margin: 0 auto;
}

.cust-button-1:hover {
    color: #154E7C;
    background: rgba(255, 255, 255, 1);
}

/* Navbar */

.navbar {
    background-color: #fff;
    color: #154E7C;
    padding: 10px 0;
    transition: padding 0.3s ease;
    border-bottom: 1px solid #154e7c;
}

.navbar-logo {
    height: 60px;
}

#nav-button {
    color: #000;
}

.nav-text {
    color: #000 !important;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    padding: 0;

    &:hover {
        color: #154E7C !important;
        scale: 1.1;
    }
}

.nav-text-active {
    color: #000 !important;
    font-weight: 700;
}

.nav-adjust {
    width: 100%;
    background-color: transparent;
    height: 80px;
}

/*  */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* buttons  */
.cust-btn-1 {
    color: #ffffff;
    background-color: #154E7C;
    font-weight: 600;
    font-size: 14px;

    border: 1px solid #154E7C;
    padding: 5px 15px;
    border-radius: 0px;

}

.cust-btn-2 {
    color: #154E7C;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 15px;
    border: #ffffff 1px solid;
    border-radius: 0px;
}

.page-content {
    padding: 30px 0px;
}

.blue-underline {
    margin: 6px 0 10px;
    background-color: #154E7C;
    border-radius: 20px;
    width: 100px;
    height: 3px;
}

/* sidebar  */
.sidebar {
    background-color: #154E7C;
    border-radius: 25px;
}

.sidebar-item {
    padding: 0px 20px;
}

.sidebar-head {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 4px;
    padding: 0px 30px;
    text-align: left;
}

.sidebar-underline {
    background-color: #f3eaea;
    margin: 0px 25px 10px 25px;
    height: 1px;
}

.sidebar-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
    padding: 10px;
}

.sidebar-item-active .sidebar-text {
    box-shadow: #777777 0 0 4px;
    font-weight: 600;
    border-radius: 5px;
    color: rgb(0, 0, 0) !important;
    background-color: #d2d2d2;
}

.loader-body {
    height: 50vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section {
    border-top: #1f3b51 1px solid;
    background-color: #013155;
}

.footer-top-body {
    padding: 50px 0;
}

.footer-head {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-text {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
}

.footer-text a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-copyright {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-bottom-text {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
    padding: 10px 0;
    text-align: center;
}

.footer-bottom-text a {
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .sidebar-head {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 576px) {}