header {
    padding: 16px 0px;
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(35, 35, 35, 0.10);
    z-index: 9;
}

.navbar {
    width: 100%;
    z-index: 99;
}

header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: #ffffff;
    z-index: 9999;
    padding: 12px 0px;
}


.custom_menu ul {
    display: flex;
    column-gap: 40px;
    align-items: center;
}

.custom_menu ul li a {
    color: #232323;
    text-align: center;
    font-family: var(--fontRobotoMD);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

li#menu-item-11 {
    padding: 12px 24px;
    background: #8A2E49;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    color: #FFF;
    font-family: var(--fontRoboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

li#menu-item-11 a {
    color: #fff;
}

li#menu-item-11:hover {
    background: #332F2C;
}
li#menu-item-11:hover a {
    color: #fff !important;
}
ul#menu-main-menu li:hover a {
    color: #8A2E49;
}


@media only screen and (max-width:767px) {
    .custom_menu ul {
        display: flex;
        column-gap: 40px;
        align-items: flex-start;
        row-gap: 9px;
        flex-direction: column;
    }

    .header_logo {
        width: 190px;
    }

    button.navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}