.navbar {
    position: fixed;
    width: 100%;
    z-index: 1030;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.nav-bg-wrapper {
    background-color: #4477ce;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    margin-left: auto;
    padding: 0.5rem 0;
    width: 100%;
}

.nav-rounded {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .nav-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 16px;
    white-space: nowrap;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.navbar-brand {
    margin-left: 70px;
}


.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 65px;
}

.text {
    font-weight: bold;
    font-size: 42px;
    color: #000;
}

.logo-footer {
    padding-right: 84px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section img {
        margin-top: 30px;
    }
}

.bg-primary {
    background-color: #3f70cf !important;
}

.navbar .nav-link.active {
    background-color: white;
    color: #3f70cf !important;
    border-radius: 20px;
    padding: 6px 16px;
}

