/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-icon {
    font-size: 50px;
}

.nav-link:hover {
    background-color: white;
    color: #000;
    border-radius: 10px;
    padding: 0.5em;
}

.nav-link.active:hover {
    color: black;
}

.dropdown-item.active {
    background-color: white;
    color: #000;
    border-radius: 10px;
    padding: 0.5em;
}

.kontak-link {
    text-decoration: none;
    color: white;
}

.kontak-link:hover {
    background-color: white;
    color: #000;
    border-radius: 10px;
    padding: 4px;
}

.kontak-link:hover .fa-instagram {
    color: black;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}