/*
* ----------[NOTIFICATION BAR]--------*
*/
#polybar {
  width: 100%;
  background: var(--yellow);
  color: var(--white);
  font-size: var(--copyFontSmall);
  text-align: center;
  z-index: 99999;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--museo);
}
#polybar .message-text {
  flex: 1 1 auto;
  font-size: var(--copyFontSmall);
  padding: 0 10px 0 50px;
}
#polybar .message-text a {
  color: var(--white);
  font-weight: 700;
}
#polybar .close-btn {
  margin-right: 20px;
  margin-left: 20px;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#polybar .close-btn:before {
  content: '';
  position: absolute;
  background-color: var(--white);
  height: 2px;
  top: 50%;
  left: 50%;
  width: 14px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}
#polybar .close-btn:after {
  content: '';
  position: absolute;
  background-color: var(--white);
  width: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 14px;
  transition: all 0.3s ease-in-out;
}
#header-row .et_pb_column {
  margin-bottom: 0;
}
.menu-header_nav-container ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: end;
}
/* .menu-header_nav-container ul li a {
  color: var(--black);
  font-size: clamp(var(--smallestFontMin), 2vw, var(--smallestFontMax));
  transition: 0.4s ease;
  border-bottom: 1px solid;
} */
.menu-header_nav-container ul li a,
#faq-accordion a,
footer a {
  position: relative;
  color: var(--black);
  font-size: clamp(var(--smallestFontMin), 2vw, var(--smallestFontMax));
  text-decoration: none;
  transition: color 0.4s ease;
}

.menu-header_nav-container ul li a::after,
#faq-accordion a::after,
footer .et_pb_module:not(.no-effect) a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* .menu-header_nav-container ul li a:hover {
  color: #4a4a32;
} */

.menu-header_nav-container ul li a:hover::after,
#faq-accordion a:hover::after,
footer .et_pb_module:not(.no-effect) a:hover::after {
  transform: scaleX(1);
}

/*
* ----------[SOCIAL NETWORKS]--------*
*/
.social-networks-shortcode ul {
  list-style: none;
  padding: 0;
  display: flex;
}
.social-networks-shortcode ul li:not(:last-child) {
  margin-right: 35px;
}
.et-social-icon.fa-icon a.icon:before {
  content: '';
}
.social-networks-shortcode ul li a.icon i,
.social-networks-shortcode ul li a.icon svg {
  font-size: 16px;
  color: var(--default-color); /* Default color */
  fill: var(--default-color); /* Default color for SVG */
  transition: color 0.4s ease, fill 0.4s ease;
}
.social-networks-shortcode ul li a.icon:hover i,
.social-networks-shortcode ul li a.icon:hover svg {
  color: var(--primary-color); /* Hover color */
  fill: var(--primary-color); /* Hover color for SVG */
}

/*
* ----------[NAV BAR]----------
*/
#header-nav {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

#header-nav > div {
  display: flex;
  align-items: center;
  padding: 0;
}

#header-nav-menu > div > div {
  justify-content: right;
}
@media (max-width: 768px) {
  #header-nav {
    height: 80px;
  }
}
