* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
}

.mobileNavigation {
    width: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: white;
}

.moblileNavigation__container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding-bottom: 5px;
    padding-top: 10px;
}

.mobileNavigation__list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.mobileNavigation__link img {
    width: 25px;
    height: 25px;
}

.mobileNavigation__link svg {
    width: 25px;
    height: 25px;
}

.mobileNavigation__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "RobotoFlex", sans-serif;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.6);
}

.mobileNavigation__link.active {
    color: royalblue;
}

.mobileNavigation__item {
    display: flex;
}

@font-face {
    font-family: "BalsamqSans";
    src: url("/fonts/BalsamiqSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/RobotoFlex.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@media(min-width:576px) and (max-width:767px) {

    .navigation {
        display: none;
    }

    .mobileNavigation {
        display: block;
    }

}

@media (max-width: 575px) {

    .navigation {
        display: none;
    }

    .mobileNavigation {
        display: block;
    }

    .mobileNavigation__link img {
        width: 25px;
        height: 25px;
    }

    .mobileNavigation__link p {
        font-size: 12px;
    }
}

@media(min-width:0px) and (max-width:320px) {

    .mobileNavigation__link img {
        width: 23px;
        height: 23px;
    }

    .moblileNavigation__container {
        max-width: 100%;
        width: calc(100% - 18px);
    }

}