@media (max-width: 700px) {
    .mobile-footer {
        display: block;
        position: fixed;
        z-index: 1;
        width: 100%;
        bottom: 0;
    }
    .tab-nav-container {
        background-color: #e8ebe0;
        display: flex;
        justify-content: space-between;
        padding: 30px;
        width: 100%;
    }
    .tab {
        background-color: #e8ebe0;
        border-radius: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        margin: 0 10px;
        transition: background 0.4s linear;
    }
    .tab i {
        font-size: 1.2em;
    }
    .tab p {
        font-weight: bold;
        overflow: hidden;
        max-width: 0;
    }
    .tab.active p {
        margin-left: 10px;
        max-width: 200px;
        transition: max-width 0.4s linear;
        margin-bottom: 0;
    }
    .tab.active.purple {
        background-color: rgba(91, 55, 183, 0.2);
        color: rgba(91, 55, 183, 1);
    }
    .tab.active.pink {
        background-color: rgba(201, 55, 157, 0.2);
        color: rgba(201, 55, 157, 1);
    }
    .tab.active.yellow {
        background-color: rgba(230, 169, 25, 0.2);
        color: rgba(230, 169, 25, 1);
    }
    .tab.active.teal {
        background-color: rgba(28, 150, 162, 0.2);
        color: rgba(28, 150, 162, 1);
    }
    .fas img {
        width: 20px;
    }
    .dropbtn {
        border: none;
    }
    .dropup {
        position: relative;
        /*  display: inline-block;*/
    }
    .dropup-content {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 100%;
        bottom: 50px;
        z-index: 1;
    }
    .dropup-content a {
        color: black;
        padding: 10px 10px;
        text-decoration: none;
        display: block;
        font-size: 12px;
        border-bottom: solid #f1eaea 1px;
    }
    .dropup-content a:hover {
        background-color: #eb203f;
        color: #fff;
    }
    .dropup:hover .dropup-content {
        display: block;
    }
    .dropup:hover .dropbtn {}
}

@media (max-width: 450px) {
    .tab-nav-container {
        padding: 10px 20px;
        width: 100%;
    }
    .tab {
        padding: 0 10px;
        margin: 0;
    }
    .tab i {
        font-size: 1em;
    }
}