.footer-menu .elementor-icon-list-text {
    text-decoration: underline !important;

    text-underline-offset: 5px !important;
text-decoration-color: rgba(255,255,255,0.5) !important; 
}


/* 
@media (max-width: 1024px) { .hfe-menu-item 
	{ display: block !important;
		background-color: #b30000 !important; 
		color: #ffffff !important; 
		padding: 12px 22px !important; 
		border-radius: 999px !important; 
		text-transform: uppercase !important; 
		font-size: 14px !important; 
		letter-spacing: 2px !important; 
		text-decoration: none !important; 

		margin: 6px 0 !important; 
		transition: all 0.3s ease !important; 
	text-align: left !important;
float: left !important; } }

 */


    /* REMOVE FROM DOCUMENT FLOW COMPLETELY */
.custom-scroll-dots {
  position: fixed;
  right: 30px;
  top: 20%;
  transform: translateY(-50%);
  z-index: 9999;

  width: 0;
  height: 0;
  pointer-events: none;

  /* AUTO BLACK / WHITE */
  mix-blend-mode: difference;
}

/* DOT */
.custom-scroll-dots a {
  font-family: raleway;
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 14px 0;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;

  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* INNER ACTIVE DOT */
.custom-scroll-dots a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-scroll-dots a.active::after {
  opacity: 1;
}

/* HOVER SCALE */
.custom-scroll-dots a:hover {
  transform: scale(1.2);
}

/* TOOLTIP — NO SPACE */
.custom-scroll-dots a::before {
  content: attr(data-label);
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;

  padding: 6px 10px;
  font-size: 12px;
  background: #000;
  color: #fff;
  border-radius: 4px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* TOOLTIP ARROW */
.custom-scroll-dots a span {
  display: none;
}

/* SHOW TOOLTIP ONLY ON HOVER */
.custom-scroll-dots a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}



