:root
{
    --accent-color:#182b69;
    --accent-secondary:#ffce58;
    --bs-dropdown-link-active-bg:#182b69 !important;
}

.navbar
{
    --bs-navbar-padding-y:0px;
    height: 90px;
}

.navbar > .container
{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100%;
}


.navbar-nav
{
    height: 100%;
    gap: 20px;
    align-items: center;
}

.nav-link
{
    height: auto;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    font-weight: 400;
    color: #7C7C8D;
    font-size: 15px;
}

.nav-link.active
{
    border-bottom: 3px solid var(--accent-color, #619F47);
    font-weight: 600;
    color: #111;
    position: relative;
    z-index: 9999;
}

.navbar-brand
{
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: auto;
}

.dropdown-menu
{
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-name: slideIn;
}


.accordion-item
{
    overflow: hidden;
    border: none;
    background: transparent;
    border-bottom: 1px solid #dadada !important;
}

.accordion-button
{
    color: #111;
    background: transparent;
    box-shadow: none !important;
    font-weight: 400;
    font-size: 15px;
}

.accordion-button::after
{
    width: 40px;
    height: 40px;
    background-color: var(--accent-secondary);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
}

.accordion-button:not(.collapsed)::after
{
    background-color: #D9D9D9;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minus"><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
    background-position: center center;
    background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)
{
    background-color: transparent;
    color: #656a72;
}

.accordion-body
{
    color: #111;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
}

.accordion-item:last-of-type
{
    border-radius: 0px !important;
}

.paragraph-block,.paragraph-content
{
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
}

.paragraph-title
{
    color: #2F3543;
}

.description-title
{
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 2.7rem !important;
}

.description-caption
{
    font-size: 1.1rem !important;
}

/* Animations */

@keyframes slideIn 
{
    0%
    {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% 
    {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% 
    {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@media screen and (max-width:992px)
{
    .navbar
    {
        height: auto;
        --bs-navbar-padding-y:0.5rem;
    }

    .nav-link
    {
        padding: 15px 20px;
        border: none;
        font-weight: 500;
        height: 100%;
    }

    .nav-link.active
    {
        background-color: var(--accent-color, #619F47);
        border: none;
        border-radius: 10px;
        color: #fff !important;
    }

    .navbar-nav
    {
        gap: 5px;
        align-items: stretch;
    }

    
    .navbar-collapse
    {
        grid-column: auto / span 2;;
        column-span: all;
        grid-row: 2 / span 2;
    }
}

@media screen and (max-width:567px)
{
    .navbar-brand img
    {
        width: 100%;
        height: auto;
    }
}