        /* Menu */
        
        @media screen and (orientation: portrait){
            
            .dropbtn {
            height: 105px;
            text-size-adjust: 200%;
            }
            
        }

        @media screen and (orientation: landscape){
            
            .dropbtn {
            height: 95px;
            font-size: 1.2vw;
            }
            
        }

        /* Style The Dropdown Button */
        .dropbtn {
            color: #112211;
            padding: 20px 20px;
            border: none;
            cursor: pointer;
            outline: none;
            font-family: 'Montserrat', sans-serif;
            background: transparent;
        }

        /* The container <div> - needed to position the dropdown content */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            color: #112211;
            background: rgba(235, 235, 235, 0.98);
            min-width: 160px;
            z-index: 1;
            font-size: 1.1vw;
            font-family: 'Montserrat', sans-serif;
            transition: 2s;
        }

        /* Links inside the dropdown */
        .dropdown-content a {
            color: #112211;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background: #018788;
            color: white;
        }

        /* Show the dropdown menu on hover */
        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Change the background color of the dropdown button when the dropdown content is shown */
        .dropdown:hover .dropbtn {
            color: white;
            background: #018788;
            text-decoration: none;
        }