/* Start custom CSS for html, class: .elementor-element-9a5b840 */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.header{
    background:#000;
    width:100%;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */

.logo img{
    height:70px;
    display:block;
}

/* Menu */

.navbar ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:40px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    position:relative;
}

.navbar ul li a.active{
    color:#ffd233;
}

.navbar ul li a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-18px;
    width:100%;
    height:4px;
    background:#ffd233;
}

/* Buttons */

.header-buttons{
    display:flex;
    gap:12px;
}

.login-btn,
.signup-btn{
    text-decoration:none;
    padding:10px 18px;
    border-radius:3px;
    font-weight:700;
    font-size:12px;
}

.login-btn{
    background:#ffd233;
    color:#000;
}

.signup-btn{
    background:#67c965;
    color:#000;
}

.mobile-buttons{
    display:none;
}

/* Mobile Toggle */

.menu-toggle{
    display:none;
    width:40px;
    height:44px;
    background:#1b327e;
    border:1px solid #f7d918;
    border-radius:4px;
    color:#ffd233;
    font-size:24px;
    font-weight:bold;
    cursor:pointer;
    text-align:center;
    line-height:46px;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    transition:0.3s;
}

.menu-toggle:hover{
    background:#ffd233;
    color:#000;
    transform:scale(1.05);
}

/* Mobile */

@media(max-width:991px){

    .container{
        height:75px;
    }

    .logo img{
        height:50px;
    }

    .menu-toggle{
        display:block;
    }

    .header-buttons{
        display:none;
    }

    .navbar{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#2343aa;
        display:none;
        padding:20px;
        border-top:1px solid rgba(255,255,255,.15);
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .navbar ul li{
        width:100%;
    }

    .navbar ul li a{
        display:block;
        font-size:16px;
        padding:10px 0;
    }

    .navbar ul li a.active::after{
        display:none;
    }

    .mobile-buttons{
        display:flex;
        gap:10px;
        margin-top:20px;
    }

    .mobile-buttons a{
        flex:1;
        text-align:center;
        padding:12px;
    }
}/* End custom CSS */