.nav-bottommenu .navbar-nav {
	gap: 10px;
	margin: 0;
}
.nav-bottommenu .navbar-nav .nav-item a {
	text-decoration: none;
	font-size: 14px;
	color: #999 !important;
	padding: 0;
}
.nav-bottommenu .navbar-nav .nav-item a.first-item {
	font-size: 16px;
	color: #ffffff !important;
	font-weight: 600;
	padding-bottom: 20px;
}
.nav-bottommenu .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 18px;
	position: relative;
	width: 100%;
}

.nav-bottommenu .menu-toggle::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    background: none;
	transition: transform 0.3s ease;
}
.nav-bottommenu .menu-toggle.active::before {
    transform: translateY(-50%) rotate(-135deg);
}
@media (max-width: 992px) {
    .nav-bottommenu .menu-toggle {
        display: inline-block;
    }
    .nav-bottommenu .navbar-nav .nav-item {
        display: none;
    }
    .nav-bottommenu .navbar-nav .nav-item:first-child {
        display: flex;
    	flex-direction: row-reverse;
    	justify-content: space-between;
    }
	.nav-bottommenu .navbar-nav .nav-item a.first-item {
		text-decoration: none;
		padding: 0;
		font-size: 20px;
		color: #ffffff !important;
		font-weight: 600;
	}
	.nav-bottommenu .navbar-nav {
    	gap: 10px;
    	margin: 0;
	}
	.nav-bottommenu .navbar-nav .nav-item a {
		font-size: 16px;
	}
	.nav-bottommenu {
		padding-bottom: 15px;
	}
}
@media (min-width: 768px) {
    .navbar-nav {
        float: none!important;
        margin: 0;
    }
}