
body{
    font-family: 'Livvic', sans-serif;
}
.menu-heading {
    border-bottom: #F0F1F5;
    padding: 10px 20px;
    text-align: center;
    font-size: 40px;
    color: #F0F1F5;

}
.menu-container{
display: flex;
justify-content: center;
flex-direction: column;

}
.hr-line{
  width: 100%;
  margin: auto;
}
/* Style the buttons that are used to open and close the menu-page body */
.menu-page {
    /* background-color: #eee; */
    font-size: 16px;
    font-weight: 600;
    color: #002B49;
    cursor: pointer;
    padding: 20px;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
    text-align: left;
    line-height: 140%;
    background-color: #F0F1F5;
    border-radius: 6px;
    margin: 0px 0px 16px 0px;

}
.menu-body{
   margin: 0px 4px 16px 4px;
   text-align: left;
   color: #002B49;
   font-size: 16px;
   line-height: 140%;
   
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.actives,
.menu-page:hover {
    background-color: #F0F1F5;
}

/* Style the menu-page panel. Note: hidden by default */
.menu-body {
    padding: 0 4px;
    display: none;
    overflow: hidden;
}

.menu-page:after {
    content: '\002B';
    /* Unicode character for "plus" sign (+) */
    font-size: 16px;
    color: #002B49;
    float: right;
    margin-left: 5px;
}

.actives:after {
    content: "\2212";
    /* Unicode character for "minus" sign (-) */
}
