/* ============================= */
/*          NAVBAR               */
/* ============================= */

	.main-containernavbar{
		padding:0!important;
		display:contents;
	}
	
    .aa-navbar {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .aa-topbar {
        display: flex;
        justify-content: start;
        gap: 60px;
        padding:25px 0;
        width: 100%;
        max-width: 1640px;
        margin: 0 auto;
        border-bottom:1px solid #e9e9e9;
    }
    
    .aa-topbar-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #0A0A0A;
    }
    
    .aa-topbar-item__inner{
    	display:flex;
    	flex-wrap:wrap;
    	gap:.25rem;
    }
    
	.aa-topbar-icon {
    	display: inline-flex;
    	align-items: center;
    	justify-content: center;
    	/*flex: 0 0 44px;*/
	}

	.aa-topbar-icon svg {
    	width: 24px;
    	height: 24px;
    	display: block;
	}
	

	.aa-topbar-link {
    	display: inline-flex;
    	align-items: center;
    	color: inherit;
    	text-decoration: none;
    	transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
	}

	.aa-topbar-link:hover,
	.aa-topbar-link:focus-visible {
    	transform: translateY(-1px);
    	color: #1E1E1C;
	}
	
    .aa-mainnav {
        width: 100%;
        max-width: 1640px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 0;
    }

    .aa-logo {
        width: 180px;
        height: auto;
    }

    .aa-navlinks {
        display: flex;
        gap: 80px;
    }

    .aa-navlinks a {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: -0.4px;
        text-decoration: none;
        transition: opacity .2s ease;
    }

    .aa-navlinks a.inactive {
        color: #1e1e1c;
    }

    .aa-navlinks a.active {
        color: #000;
        font-weight:800;
    }

    .aa-navlinks a:hover {
        opacity: 0.5;
    }

    .aa-mobile-toggle {
        display: none;
    }

    @media (max-width: 1199px) {
        .aa-mobile-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }

        .aa-burger {
            display: block;
            width: 26px;
            height: 3px;
            background: #1E1E1C;
            position: relative;
            transition: .3s ease;
        }

        .aa-burger::before,
        .aa-burger::after {
            content: "";
            position: absolute;
            width: 26px;
            height: 3px;
            background: #1E1E1C;
            transition: .3s ease;
            left: 0;
        }

        .aa-burger::before {
            top: -8px;
        }

        .aa-burger::after {
            top: 8px;
        }

        /* Hide desktop nav */
        .aa-navlinks {
            display: none !important;
        }
    }

    .aa-offcanvas {
        width: 300px;
        border-left: 1px solid #eee;
    }

    .aa-offcanvas .offcanvas-header {
        border-bottom: 1px solid #eee;
    }

    .aa-offcanvas .offcanvas-title {
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
    }

    .aa-mobile-navlinks {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        padding-top: 1rem;
    }

    .aa-mobile-navlinks a {
        text-decoration: none;
        font-size: 1rem;
        color: #1E1E1C;
        font-weight: 600;
    }

    @media (max-width: 1199px) {

        .aa-topbar {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            border-top:1px solid #e9e9e9;
            margin-top:2rem;
        }
        
        .aa-topbar-item{
        	font-size:1rem;
        }

        .aa-mainnav {
            padding: 15px 20px;
        }

        .aa-logo {
            width: 150px;
        }
    }
    
    @media (max-width: 767.98px) {
    .aa-mobile-topbar .aa-topbar-item:last-child {
        display: grid;
        grid-template-columns: 20px 1fr;
        column-gap: 0.75rem;
        row-gap: 0.35rem;
        align-items: start;
    }

    .aa-mobile-topbar .aa-topbar-item:last-child .aa-topbar-icon {
        grid-column: 1;
        grid-row: 1 / span 3;
        align-self: start;
        margin-top: 0.15rem;
    }

    .aa-mobile-topbar .aa-topbar-item:last-child .aa-topbar-item__inner {
        grid-column: 2;
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
        min-width: 0;
    }
}
