* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}




html, body {
    overflow-x: hidden;
  }






/* //LOGO */
.logo a {
    color: white;
    text-decoration: none;
}

.logo li {
    list-style: none;
}

.logo a:hover {
    color: rgb(0, 144, 155);
}
/* //LOGO END */

















/* //NAV */

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgb(0, 0, 0);
}

.logo {
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-weight: 14px;
}

.nav-links a:hover {
    color: rgb(0, 144, 155);
    cursor: pointer;
    list-style: inside;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width:1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width:768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgb(0, 0, 0);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* //NAV END */











/* //MAP */
svg{
    margin-top: 5rem;
    margin-left: 5%;
    margin-right: 5%;
}

.cls-1 {
    fill: #252525;
    stroke: #fff;
    stroke-width: 0.8px;
}

.buttons {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    border: 1rem;
}



.buttons button {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    border: none;
    cursor: pointer;
}

.buttons button:focus {
    outline: none;
}

.buttons svg {
    width: 100%;
    margin: 4rem;
}

.show>path {
    fill: rgb(0, 144, 155);
}

g:hover>path{
    fill: rgb(0, 144, 155);
}

.textmap {
    text-align: left;
    color: rgb(0, 0, 0);
    margin: 2rem;
}

/* //MAP END */



.main {
    text-align: left;
    color: rgb(0, 0, 0);
    margin-top: 8rem;
    margin-left: 20%;
    margin-right: 20%;
}


    
/* 
.cursor,
.follow {
    position: absolute;
    pointer-events: none;
    width: 0.4rem;
    height: 0.4rem;
    transform: translate(-50%, -50%);
}

.cursor {
    background-color: rgb(0, 144, 155);
    border-radius: 100%;
}

.follow {
    padding: 1rem;
    border: 0.1rem solid rgb(0, 144, 155);
    transition: all 0.2s ease-out;
    border-radius: 100%;
}

.follow.on-focus {
    transform: translate(-0.55rem, -0.55rem);
    border: 0.1rem solid rgb(0, 144, 155);
    border-radius: 5%;
    padding: 3rem;
} */