header {
    position: sticky;
    width: 100%;
    top: 0px;
    left: 0;
    background: #fff;
    z-index: 9999;
    padding: 29px 0px;
}

.mani_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mani_header .logo {
    width: 24%;
}

.mani_header .head_nav {
    width: 76%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}
.mani_header .head_nav a {
    padding: 8px 32px 8px 32px;
    border: 1px solid #000;
    color: #000;
    border-radius: 50px;
    font-size: 20px;
    line-height: 30px;
    display: flex;
    width: max-content;
    font-weight: 500;
}

.main_toogg a {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding-left: 65px !important;
    background: #FFFFFF80;
    border: none !important;
    transition: background 0.5s ease, border 0.5s ease;
}

/* Toggle Button */
.toggle_btn {
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: 46px;
    width: 48px;
    align-items: center;
    justify-content: center;
    background: #5F5F5F;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    z-index: 1001;
    transition: 0.4s ease;
    position: relative;
}

.toggle_btn span {
    display: block;
    position: relative;
    width: 0;
    height: 0;
}

/* Lines via pseudo-elements */
.toggle_btn span:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 2px;
    background: #fff;
    top: 0;
    left: -11px;
    transition: 0.4s ease;
}

/* Top, Middle, Bottom lines */
.toggle_btn span:nth-child(1):before {
    top: -8px;
}
.toggle_btn span:nth-child(2):before {
    top: 0;
}
.toggle_btn span:nth-child(3):before {
    top: 8px;
}

/* Active state - cross (X) animation */
.toggle_btn.active span:nth-child(1):before {
    transform: rotate(45deg);
    top: 0;
}
.toggle_btn.active span:nth-child(2):before {
    opacity: 0;
}
.toggle_btn.active span:nth-child(3):before {
    transform: rotate(-45deg);
    top: 0;
}

/* On hover */
/*.main_toogg a:hover {*/
/*    background: #fff;*/
/*}*/

/*.main_toogg a:hover .toggle_btn {*/
    /*transform: translateX(98px); */
/*    background: #E2E2DC;*/
/*}*/

/*.main_toogg a:hover span:before {*/
/*    background: #000;*/
/*}*/
header .logo img {
    filter: brightness(0);
}

/* Fullscreen menu */
.fullscreen_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--grey);
    transition: right 0.5s ease;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px;
}

.fullscreen_menu.active {
    right: 0;
}

/* Inner text animation */
.menu_inner {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
}
.fullscreen_menu.active .menu_inner {
    opacity: 1;
    transform: translateX(0);
}
.fullscreen_menu a {
    color: #000;
    font-size: 70px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease;
    line-height: 80px;
    font-family:
    'Carentro DEMO' !important;
}
.fullscreen_menu a:hover {
    transform: scale(1.05);
}