
		gmpx-store-locator {
		  width: 100%;
		  height: 35em;
		}

	/* Dropdown menu styling */

        
        .zoom-img {
    position: relative; /* Set relative position for the container */
    text-align: center;
    transition: transform 0.3s ease-in-out;
    background-color: transparent;
    border-color: aliceblue;
    border-radius: 8%;
    padding: 10px; /* Optional: Add some padding */
}

.zoom-img::before {
    content: "";
    position: absolute; /* Position the background */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff00;
    border-radius: 8%; /* Match the border-radius */
    z-index: 0; /* Place it behind the content */
}

.zoom-img img,
.zoom-img .card-body {
    position: relative; /* Keep content above the background */
    z-index: 1; /* Ensure content appears on top */
    color: #ffffff; /* Ensure the text is legible on a dark blue background */
}

.zoom-img .card-title {
    font-weight: bold; /* Enhance readability and modern look */
    margin-top: 10px; /* Add spacing above the title */
}

.zoom-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add a subtle hover shadow for depth */
}

.dropdown-menu {
    background-color: #19232b;
    border-radius: 5px;
    margin-top: -1px; /* Adjust this value to eliminate the gap */
    margin-left: 0; /* Ensure it aligns correctly with the dropdown */
    transition: none; /* Avoid animations if they cause a delay */
}

.navbar-nav .dropdown-menu > li {
    padding: 0; /* Make sure options are clickable without gaps */
}

/* Default text color */
.dropdown-item {
    color: #ffffff;
	font-size: 14px;
}

/* Hover styling */
.dropdown-item:hover {
    background-color: #19232b; /* Keeps the background consistent */
    color: #00abbb8a; /* Changes text color on hover */
}


.scroll-down-arrow {
    position: absolute;
    bottom: 20px; /* Adjust to position the arrow higher or lower */
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px; /* Adjust size as needed */
    color: #ffffff; /* Arrow color */
    cursor: pointer;
    animation: bounce 1.5s infinite;
	z-index: 100; /* Ensures arrow stays on top of other content */

}


.scroll-down-arrow2 {
    position: relative;
    bottom: 1px; /* Adjust to position the arrow higher or lower */
    left: 50%;
    padding-top: 40px;
    transform: translateX(-50%);
    font-size: 14px; /* Adjust size as needed */
    color: #ffffff; /* Arrow color */
    cursor: pointer;
    animation: bounce 1.5s infinite;
	z-index: 100; /* Ensures arrow stays on top of other content */

}


/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* By default (tablets and up), keep it large */
.full-width-mobile {
    font-size: 180px;      /* or your preferred “desktop” size */
    line-height: 1;
    white-space: nowrap;   /* optional if you want to ensure one line */
  }
  
  /* For mobile (max-width 575.98px or 767.98px, depending on your breakpoint) */
  @media (max-width: 575.98px) {
    .full-width-mobile {
      font-size: 22vw;     /* Adjust until it nicely fits the screen width */
      white-space: nowrap; /* ensures “BAÑO” never wraps */
      overflow: hidden;    /* prevents accidental horizontal scroll if it's slightly too large */
    }
  }

  @media (min-width: 768px) {
    /* Desktop & tablets (>=768px) */
    .footer-padding {
      padding-left: 10px !important;
    }
  }
  
  @media (max-width: 767.98px) {
    /* Mobile (<768px) */
    .footer-padding {
      padding: 20px !important;
    }
  }
  
  
  
  
  


