/* =====START mobile media responsive======= */
 
.mobileres {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 999999;
    display: none;
}

 

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
.navigation {
    position: relative;
    width: 100%;
    height: 64px;
    background: rgb(19,153,160);
    display: flex;
    justify-content: center; 
}
.navigation ul {
    display: flex; padding: 6px;
}
.navigation ul li {
    position: relative;
    list-style: none;
    width: 85px;
    padding: 5px;
}
.navigation ul li a { 
    justify-content: center;
    align-items: center; 
    text-align: center; 
}
.navigation ul li a .icon {
    display: block;
    line-height: 2px;
    font-size: 26px;
    text-align: center;
}

.navigation ul li a .text {
    font-size: 13px;
}
 
.navigation ul li:nth-child(1).active{
    color:#ffc04b;
}
.navigation ul li:nth-child(2).active{
    color:#ffc04b;
}
.navigation ul li:nth-child(3).active{
    color:#ffc04b;
}
.navigation ul li:nth-child(4).active{
    color:#ffc04b;
}
.navigation ul li:nth-child(5).active{
    color:#ffc04b;
}
 
@media screen and (max-width: 300px) {
    div.webres {
        display: none;
    }
    .navigation ul li {
        position: relative;
        list-style: none;
        width: 54px;
        padding: 4px;
    }
    
}
@media screen and (min-width:301px) and (max-width:400px) {
    div.webres {
        display: none;
    } 
    .navigation ul li {
        position: relative;
        list-style: none;
        width: 60px;
        padding: 4px;
    }
    div.mobileres {
        display: block;
    } 
}
@media screen and (min-width:401px) and (max-width:500px) {
    div.webres {
        display: none;
    } 
    .navigation ul li {
        position: relative;
        list-style: none;
        width: 80px;
        padding: 4px;
    }
    div.mobileres {
        display: block;
    } 
}
/* @media screen and (min-width:501px) and (max-width:600px) {
    div.mobileres {
        display: block;
    } 
} */
 