* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  height: 90px;
  background-image: url(../../assets/images/bg_navbar4.png);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.navbar a {
  color: #fff !important;
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar a:hover {
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 990px) {
  .navbar-collapse {
    background-image: url(../../assets/images/nav-phone2.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #f3e8ff;
    padding: 10px;
    border-radius: 0 0 15px 15px;
    text-align: center;
  }
}

.navbar-toggler {
  background-color: white !important;
}

.navbar .nav-link {
  position: relative;
  padding-bottom: 6px;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #e5e8ec;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar .nav-link:hover::after {
  width: 50%;
}

.navbar .nav-link.active::after {
  width: 50%;
}

.navbar .nav-link.active {
  color: #c8d0db;
  font-weight: 700 !important;
}

.navbar-brand {
  display: inline-block;
  transition: transform 0.2s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 990px) {
  .navbar a {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-comcom {
    display: none;
  }
}
