.section_tag {
  margin: 0 0 80px;
  padding-top: 80px;
}
.section_tag h6 {
  display: inline-block;
  background-color: #3C3A3B;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 36px;
}
.section_tag h6.text-dark {
  color: #3C3A3B;
}

.tag_nav {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  right: 30px;
  text-align: right;
  padding: 20px 0;
  padding-left: 20px;
  overflow-x: hidden;
}
.tag_nav a {
  display: block;
  position: relative;
  padding-right: 30px;
  margin-bottom: 10px;
  max-width: 0%;
  white-space: nowrap;
  margin-left: auto;
  transition: all 0.4s ease;
}
.tag_nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #555354;
  border-radius: 6px;
  transition: all 0.4s ease;
}
.tag_nav a span {
  position: relative;
  opacity: 0;
  transition: all 0.4s ease;
  color: #000;
}
.tag_nav a span::before {
  content: "";
  position: absolute;
  opacity: 0;
  width: 120%;
  height: 30px;
  left: -10%;
  top: -5px;
  padding: 0 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  z-index: -1;
  transition: all 0.4s ease;
}
.tag_nav a.active::after, .tag_nav a:hover::after {
  background-color: #555354;
}
.tag_nav a.show-text, .tag_nav a:hover {
  text-decoration: none;
  max-width: 100%;
}
.tag_nav a.show-text span, .tag_nav a:hover span {
  opacity: 1;
}
.tag_nav a.show-text span::before, .tag_nav a:hover span::before {
  opacity: 1;
}
.tag_nav.override a.active span {
  opacity: 0 !important;
}
.tag_nav.override a.active::after {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.tag_nav.override a.override-active::after {
  background-color: #555354 !important;
}
.tag_nav.override a.show-override-text {
  max-width: 100% !important;
}
.tag_nav.override a.show-override-text span {
  opacity: 1 !important;
}

@media only screen and (max-width: 1000px) {
  .tag_nav {
    display: none;
  }
}
