.menu_bar{
    position: relative;
    padding: 0;
    width: 100%;
    height: 150px;
}
.menu_bar_container{
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1100px;
    height: 150px;
    align-items: center;
    justify-content: space-around;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.menubar_logo{
    width: 10%;
    height: 120px;
    display: flex;
    justify-content: center;
}
.menubar_logo img{
    width: 100%;
    height: 100%;
}
/* ############################################# */
/* ############################################# */
.menubar_page{
    width: 78%;
    height: 150px;
    position: relative;
    justify-content: center;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
    align-items: center;
    column-gap: 15px;
}
.menubar_page a{
    text-decoration: none;
    color: #d39395;
    font-size: 1.7em;
    display: flex;
    width: 100%;
    font-weight: bold;
}
.menubar_page .active a{
    color: #8e4b50;
}
.pagelink{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.menubar_offer{
    position: relative;
    display: flex;
    top: 10px;
    width: 120px;
    height: 120px;
    padding-top: 20px;
    background-color: #d39395;
}

.menubar_offer::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 20px;
    z-index: 999;
    left: 0;
    top: 105px;
    background-color: #d39395;}

.menubar_offer a{
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    text-align: center;
}

.text_area span{
    width: 100px;
    height: 70px;
    z-index: 999;
    left: 0;
    top: 125px;
    position: absolute;
    background-color: transparent;
    border-top: 40px solid #d39395;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
}

.menubar-toggler {
    width: 60px;
    height: 50px;
    display: none;
    border-radius: 5px;
    border: 1px solid #8e4b50;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menubar-toggler-line {
    width: 38px;
    height: 4px;
    background-color: #d39395;
    margin: 3px auto;
}

.toggle_hide {
    display: flex;
}

@media screen and (max-width: 480px) {
    .menu_bar{
    height: 50px;
    /* padding: 0 20px; */
}

.menu_bar_container{
    height: 50px;
    justify-content: space-between;
    padding: 0 30px;
}

.menubar_logo{
    height: 50px;
}

.menubar_logo img{
    width: 50px;
}

/* ############################################# */
/* ############################################# */
.menubar_page{
    gap: 5px;
    z-index: 9;
    width: 100%;
    top: 50px;
    left: 0;
    position: absolute;
    height: 250px;
    padding: 0 20px;
    display: none;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    background-color: #d39395;
}

.menubar_page a{
    position: relative;
    font-size: 1.2em;
    color: white;
}

.pagelink{
    margin: 0 auto;
    display: flex;
    width: 100%;
    height: 3rem;
    border-radius: 10px;
    border: 1px solid #8e4b50;
}

.menubar_offer{
    top: 0px;
    width: 150px;
    height: 40px;
    left: 20px;
    padding: 5px 10px;
}

.menubar_offer::after{
    display: none;}

.menubar_offer a{
    font-size: 0.8rem;
    font-weight: 500;
}

.text_area span{
    display: none;
}

.menubar-toggler {
    width: 50px;
    height: 35px;
    display: flex;
    border-radius: 5px;
    border: 1px solid #8e4b50;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menubar-toggler-line {
    width: 70%;
    height: 20%;
    background-color: #d39395;
    margin: 3px auto;
}

.toggle_hide {
    display: flex;
    transition: 0.5s;
}


}