

#bubble {
  width: 120px;
  height: px;
  background: white;
  position: relative;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#bubble:before {
  content: "";
  position: absolute;
  right: 60%;
  top: 75px;
  width: 0;
  height: 0;
  border-top: 25px solid white;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}

.overlay-two {
  border-radius: 8px;
  height: 49px;
  overflow: hidden;
  margin-right: 3%;
}
.main-nav:hover ~ .indicator {
  transform: scaleX(1);
}
.main-nav {
  display: flex;
  list-style: none;
}
.nav-item {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  font-size: clamp(5px,4vw,20px) !important;

  
}

.indicator {
  position: absolute;
  height: 1px;
  background-color: #ffffff;
  top: calc(100% - 15px);
  transition: all 0.3s ease-in-out;
  transform: scaleX(0);
}

.container_logo{
  z-index: 1;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 8rem;
  height: 8rem;
  width: 7rem;
}

.logo_nav{
  transform: scale(1.5) translateY(15px);
  filter: brightness(0.05);
}