.bottom-sticky-nav {
  display: none;
} 
@media (max-width: 720px) {
  .practice a{
    position: relative;
  }
  .circle-wrapper {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 13px;
    text-align: center;
    right: 20px;
    top: 0px;
    position: absolute;
    display: block;
    align-items: center;
    z-index: 10000;
    background: #FF3A2E;
  }
  .circle{
    color: #FFF;
  }
  
  .bottom-sticky-nav {
    height: 60px;
    position: fixed;
    display: block;
    background: #f5f5f5;
    background-color: #f5f5f5 !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .bottom-sticky-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
  }
  .bottom-sticky-nav ul li {
    flex: 1;
  }
  .bottom-sticky-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 60px;
    color: #555;
  }
  .bottom-sticky-nav ul li a svg{
    padding-bottom: 5px;
  }
  .bottom-sticky-nav ul li a:hover,
  .bottom-sticky-nav ul li a:focus {
    text-decoration: none;
  }
  .bottom-sticky-nav ul li a i {
    font-size: 18px;
  }
  .bottom-sticky-nav ul li a span {
    font-size: 12px;
    line-height: 1.2;
  }
  footer {
  margin-bottom: 50px;
  }
}