/*************** MENU ***************/
            .hamburger {
                position: absolute;
                width: 50px;
                height: 45px;
                top: 50px;
                right: 50px;
                z-index: 9999;
                cursor: default;
            }

            .hamburger div {
              position: relative;
              width: 50px;
              height: 5px;
              background-color: #37230e;
              margin-top: 7px;
              transition: all 0.3s ease-in-out;
            }

            #toggle {
              display: none;
                cursor: default;
            }

            #toggle:checked + .hamburger .top {
              transform: rotate(-45deg);
              margin-top: 22.5px;
            }
            #toggle:checked + .hamburger .mid {
              transform: rotate(45deg);
              margin-top: -5px;
            }
            #toggle:checked + .hamburger .bottom {
              transform: scale(0);
            }
            #toggle:checked + .hamburger + .nav {
              top: 0;
            }

            .nav {
              position: fixed;
              z-index: 4;
              width: 100%;
              height: auto;
              background-color: #ccc;
              top: -130%;
              transition: all 0.3s ease-in-out;
            }

            .nav .nav-wrapper {
              position: relative;
              overflow-y: auto;
              height: 100%;
            }

            nav {
              height: 100vh;
              width: 100%;
              text-align: center;
              padding-top: 25px;
            }

            nav a {
              margin-top: 500px;
              color: #37230e;
              opacity: 0;
              text-decoration: none;
              font-family: "Poltawski Nowy", serif;
              font-size: 150%;
              font-weight: 600;
              transition: all 0.1s ease;
              cursor: default;
              width: 100%;
              line-height: .6; 
            }

            nav a:first-child {
              margin-top: 0;
            }

            #toggle:checked + .hamburger + .nav .nav-wrapper nav a {
              opacity: 0.9;
              transform: scale(1);
            }
            #toggle:checked + .hamburger + .nav .nav-wrapper nav a:hover {
              opacity: 1;
              color: white;
              transform: scale(1.2);
            }

            li {
            list-style-type: none;

            }

            /******************* DROPDOWN ******************/
            .has_drop {
              position: relative
            }

            .drop_down {
              position: absolute;
              width: 100%;
              top: 100%;
              height: auto;
              padding:10px;
              left:0;
              display:none;
                background: #cccccc;
                font-size: 12px;
            }

            .drop_down li {
              width: 100%;
              display: block;
              padding: 20px 0px;
              margin:0;
            }
            /*.drop_down li:hover { background: #f3f3f3;}*/

            .has_drop:hover .drop_down {
              display:block;
             }

/******************** MOBILE ********************/
@media screen and (max-width: 768px) {
.hamburger {
    top: 40px;
    right: 40px;
}

nav a {
    font-size: 125%; 
}
}