/* Burger Icon */
.custom-ast-toggle {
    background-color: none; 
    color: #000; 
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 0;
	padding: 0 !important;
    margin: 0 !important;
}

.custom-ast-toggle * {
    box-sizing: border-box;
}


.custom-menu-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0;
    line-height: 1;
	transition: all 0.3s ease;
}
.custom-menu-btn:hover {
	background: none;
}

/* Burger Icon */

/* Off-Canvas Menu */
.custom-off-canvas {
    max-width: 98%;
    position: fixed;
    top: 1%;
    left: -350px;
    width: 350px;
    background: #111;
    color: white;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
	height: 98%;
   border-radius: 15px;
}

.custom-off-canvas.active {
    left: 1%;
	top: 1%;
}

.custom-off-canvas-content {
    display: flex;
    flex-direction: column;
    height: 100%;
/*     padding: 20px; */
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
}


.custom-off-canvas nav ul {
    list-style: none;
    padding: 0;
}

.custom-off-canvas nav ul li {
    margin: 15px 0;
}

.custom-off-canvas nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0 5px;
    border-radius: 5px;
    width: fit-content;
    font-size: 18px;
}

.custom-off-canvas nav ul li a:hover {
     background-color: #444c52 !important;
  color: #ffffff !important;
}

.custom-off-canvas-content .langMenu {	
    margin-top: auto;
}

.custom-off-canvas-content .langMenu .lang-btn{
	margin: 20px 20px; 
}

/* Off-Canvas Menu */
