@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');



.navigation-mb {
    position: fixed;
    width: 100%;
    height: 60px;
    /*background: linear-gradient(45deg, #2196f3, #e91e63);*/
    background: linear-gradient(45deg, #8E0018, #C91B3A);
    display: none;
    justify-content: center;
    align-items: center;
    /*border-radius: 10px;*/
   /* border-top-left-radius: 10px;
    border-top-right-radius: 10px;*/
    z-index: 999;
    bottom: 0px;
}

.navigation-mb ul {
    display: flex;
    margin: 0px;
	padding:0px;
    width: 100%;
}

.navigation-mb ul li {
    position: relative;
    width: 25%;
    height: 60px;
    list-style: none;
    z-index: 1;
}

.navigation-mb ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.navigation-mb ul li a .icon {
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    color: #fff;
    transition: .5s;
}

.navigation-mb ul li.active a .icon {
    transform: translateY(-37px);
}

.navigation-mb ul li a .text {
    position: absolute;
    color: #fff;
    font-weight: 400;
    font-size: .85em;
    letter-spacing: .05em;
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}

.navigation-mb ul li.active a .text {
    opacity: 1;
    transform: translateY(10px);
}

.navigation-mb ul li a .circle {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    /*background: transparent;*/
	background: linear-gradient(45deg, #8E0018, #C91B3A);
    border-radius: 50%;
    border: 1.8px solid #fff;
    transform: translateY(-37px) scale(0);
	text-align: center;
	line-height: 50px;
}

.navigation-mb ul li.active a .circle {
    transition: .5s;
    transition-delay: .5s;
    transform: translateY(-37px) scale(1);
}

.navigation-mb ul li a .circle ion-icon {
   
    font-size: 1.5em;
    text-align: center;
    color: #fff;
   
}

.indicator {
    position: absolute;
    top: -50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2196f3, #e91e63);
   /* border: 6px solid #06021b;*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

/*.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 1px -10px 0 #06021b;
}*/

/*.indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: -1px -10px 0 #06021b;
}*/

.navigation-mb ul li:nth-child(1).active~.indicator {
    transform: translateX(calc(74.5px * 0));
}

.navigation-mb ul li:nth-child(2).active~.indicator {
    transform: translateX(calc(74.5px * 1));
}

.navigation-mb ul li:nth-child(3).active~.indicator {
    transform: translateX(calc(72.5px * 2));
}

.navigation-mb ul li:nth-child(4).active~.indicator {
    transform: translateX(calc(71.5px * 3));
}

.navigation-mb ul li:nth-child(5).active~.indicator {
    transform: translateX(calc(70.5px * 4));
}
@media only screen and (max-width: 767px) {
  .navigation-mb {
  	display: flex;
  }
}