
		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: 10; /* 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);
    }
}




