 @import url('https://fonts.cdnfonts.com/css/mortend');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.navbar-nav {
    gap: 50px;
    padding-right: 50px;
    font-size: 25px;
    z-index: 5000;
}

.nav-img {
    width: 150px;
    padding-left: 20px;
    padding-top: 20px;
}

iframe {
    max-width: 100%;
    z-index: -1;
}

footer {
    font-family: 'Poppins', sans-serif; /* Added fallback for font */
    text-align: center;
    font-size: 20px;
}

footer a, footer p, footer li {
    font-family: 'Poppins', sans-serif; /* Ensure uniform font for footer elements */
    text-align: center;
    font-size: 20px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar {
    opacity: 0;
    width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff0066;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #4c00ff;
}

.move {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #ff0066;
    z-index: 10000;
    transform: scaleY(100%);
    transform-origin: bottom;
    top: 0;
}

.moveText {
    color: white;
    font-size: 50px;
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Fixed the translate property */
    display: flex;
    font-family: "Mortend";
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.spinner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #101114;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.nav-item a {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}

@media (max-width: 600px) {
    footer h6 {
        justify-content: center;
    }
}
