li {
  list-style-type: none;
}

p {
  margin: 0 !important;
}

img {
  width: 100%;
  height: auto;
  display: block;
}
/* button next and pre */
.uk-icon {
  background-color :#3f3f3fbd !important;
}
/* card */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #1b2028;
  border-radius: 10px;
  position: relative; 
  background-image: linear-gradient(
    135deg,
    rgba(117, 46, 124, 0.95),
    rgba(115, 74, 88, 0.1) 15%,
    #1b2028 20%,
    #1b2028
  );
  transition: all 0.3s;
}
.profile:hover {
  outline: 2px solid var(--accent-color);
}
.profile-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* button */
.btn-info {
  color: #fff !important;
}
.nav-tabs .nav-link {
  color: #000 !important;
}
/* banner */
#hero {
    background-image: url('/frontend/img/bg/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* nav menu */
.navmenu ul.nav .nav-item.active .nav-link {
    color: #007bff;
    font-weight: bold;
}