.topbar {
  padding: 30px;
  background: var(--bg-dark);
}

.topbar__social {
  display: flex;
  align-items: center;
}

.topbar__social strong {
  color: var(--color-on-primary);
  font-size: 12px;
  margin-left: 20px;
}

.topbar__social ul {
  display: flex;
  gap: 10px;
}

.topbar__social li {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  background: #fff;
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.topbar__social a {
  display: flex;
  text-decoration: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.topbar__social li:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.topbar__social i {
  color: #254333;
  font-size: 18px;
}

.topbar__layer ul {
  display: flex;
  gap: 40px;
}

.topbar__layer li {
  margin-left: 40px;
  color: var(--color-on-primary);
  font-size: 15px;
  width: auto;
}

.topbar__layer li b::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #f5b800;
}

.topbar__layer li span {
  display: block;
  color: var(--text-accent);
  font-size: 12px;
  margin-bottom: 4px;
}

.nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
}

.nav__list {
  display: flex;
  gap: 10px;
}

.nav__list li a {
  padding: 8px 9px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav__list .current-menu-item a {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.nav__list li a:hover {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav__toggle.active i::before {
  content: "\f00d";
}

@media (max-width: 1170px) {
  .nav__list li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .nav__list li a {
    font-size: 18px;
  }
}
