body{font-family:'Tinos', serif}.container-fluid.menu{background:#a54a48}.navbar.navbar-expand-lg.navbar-light{padding:10px 0}h1{font-size:50px;letter-spacing:1px;font-weight:600;margin-bottom:0;color:#a54a48}h2{font-size:25px;font-weight:700;margin-bottom:10px}h1,h2{text-align:center}.navbar-nav.mr-auto{margin:0 auto}.odstep-4{height:40px}.nav-link{background-color:#a54a48;width:initial;display:flex;align-items:center;padding:20px;font-size:25px;color:#fff !important;line-height:25px}.nav-item{padding:0 30px}

.new-menu {
    width: 100%;
    border-bottom: 2px solid #013220;
    /* border-bottom: 2px solid #d4af37; */
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 10;
}

.new-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(1110px + 20px);
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}

.new-logo {
    width: 200px;
}


.hamburger-icon {
    width: 48px;
}

.new-menu-list {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    width: 70vw;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
    z-index: 10;
    margin-bottom: 0 !important;
}

.new-menu-link {
    text-decoration: none;
    color: #013220;
    font-weight: 700;
    padding: 5px;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.new-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #013220;
    transition: width 0.3s ease;
}

.new-menu-link:hover {
    color: #013220;
    text-decoration: none;
}

.new-menu-link:hover::after {
    width: 100%;
}

.new-menu-list {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    list-style: none;
    align-items: flex-start;
    gap: 20px;
}

.new-menu-list.active {
    left: 0;
}

.new-footer {
    padding: 15px;
    border-top: 1px solid #d4af37;
}

.new-logo-footer {
    width: 170px;
    margin-bottom: 5px;
}

.new-footer-text {
    font-size: 14px;
    padding-right: 15px;
}

@media(min-width: 992px) {
    .new-menu-list {
        position: relative;
        left: 0;
        height: auto;
        width: 100%;
        background-color: transparent;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        list-style: none;
        gap: 20px;
    }

    .new-menu-wrapper {
        padding: 20px;
    }

    .new-logo {
        width: 175px;
    }

    .hamburger-icon {
        display: none;
    }

    .new-menu-link {
        font-size: 16px;
        font-family: 'Open Sans', sans-serif;
    }

    .new-menu-list {
        box-shadow: none;
    }

    .new-logo-mobile {
        display: none;
    }
}


/* Inne */
a.przycisk {
    color: #d4af37 !important;
}

a.przycisk:hover {
    text-decoration: none;
    color: #fff !important;
    background-color: #d4af37;
    border-color: #d4af37 !important;
}