ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*** Things needed for JS open menu function ***/

.open_menu .menu_block {
    right: 0;
}
.open_menu .menu_item {
    transform: translateY(0%);
}
.open_menu .erra-burger-inner .top-bun {
    transform: translatex(3.5px) rotate(-135deg);
    background: black;
}
.open_menu .erra-burger-inner .bottom-bun {
    transform: translatex(3.5px) rotate(135deg);
    background: black;

}
.open_menu .erra_social_icons{
    transform: translateY(-100%);
}
.cm-overflow {
    overflow: hidden;
    touch-action: none;
}

/*** Burger animation ***/

.menu_toggle_btn {
    animation: 1.5s fade-inn;
    transition: 2s all;
}
@keyframes fade-inn{
    0%{
        opacity: 0;
    }
    25%{
        opacity: .2;
    }
    50%{
        opacity: .5;
    }
    75%{
        opacity: .75;
    }
    100%{
        opacity: 1;
    }
}

.desktop-menu-logo {
    position: absolute;
    top: 2vmin;
    width: 100%;
    text-align: center;

}
.erra-section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9ceb0;
    border:2px solid;
    margin: 25px;
}
.erra-active{
    border-bottom: 1px solid;
    width: fit-content;
}

/*** Other stuff ***/

.footer_wrapper{
    background: #e9ceb0;
    opacity: 0;
}
.footer_wrapper_fade{
    opacity: 1;
    animation: 1.5s fade-inn;
    transition: 2s all;
}
.footer_wrap{
    max-width: 1485px;
    margin: auto;
    padding: 0 15px;
}
.footer_block{
    padding: 55px 0 15px 0;
}
.footer_inner_block{
    display: flex;
    text-align: left;
    justify-content: space-between;
}
.footer_block_item ul h2{
    font-size: 16px;
}
.footer_block_item ul li{
    font-size: 16px;
}
.footer_block_item ul:last-child{
    margin-top: 25px;
}
.footer_healthier h2{
    text-align: center;
    font-size: 37px;
    margin-top: 55px;
    font-weight: bold;
    font-size: 25px;
    color: black;
    font-style: italic;

}
.footer_healthier h2 span{
    font-weight: 300;

}
.footer_h2{
    color: black;
    font-style: italic;
    font-weight: bold;
}
.footer_links{
    color: black;
    text-decoration: underline;
    margin: 1rem 0;
    display: block;

}
.footer_links:before{
    padding-right: 10px;
    content: "\2022";
    display: inline-block;
    margin-left: 0px;
    min-width: 40px;
    text-align: right;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {

    .footer_block_item ul h2{
        font-size: 14px;
    }
    .footer_block_item ul li{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {

    .footer_inner_block{
        flex-wrap: flex;
        flex-direction: column;
    }
    .footer_block_item{
        width: 100%;
    }
    .footer_block_item ul {
        margin-top: 20px;
    }
    .footer_healthier h2{
        font-size: 25px;
        font-style: italic;

    }
}
